diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index af858fdcdc..ff3198174d 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,3 +1,4 @@ github: inventree ko_fi: inventree patreon: inventree +custom: [paypal.me/inventree] diff --git a/.github/actions/migration/action.yaml b/.github/actions/migration/action.yaml index be2baf28c4..ca90ef0cd2 100644 --- a/.github/actions/migration/action.yaml +++ b/.github/actions/migration/action.yaml @@ -1,5 +1,5 @@ name: 'Migration test' -description: 'Run migration test sequenze' +description: 'Run migration test sequence' author: 'InvenTree' runs: diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 40772ecbfc..34e319e048 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -29,9 +29,6 @@ jobs: # Build the docker image build: - concurrency: - group: ${{ github.workflow }}-${{ github.event_name }} - cancel-in-progress: true runs-on: ubuntu-latest permissions: contents: read @@ -81,6 +78,7 @@ jobs: run: | echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> docker.dev.env docker-compose run inventree-dev-server invoke test --disable-pty + docker-compose run inventree-dev-server invoke test --migrations --disable-pty docker-compose down - name: Set up QEMU if: github.event_name != 'pull_request' @@ -123,6 +121,8 @@ jobs: context: . platforms: linux/amd64,linux/arm64 push: true + sbom: true + provenance: false target: production tags: ${{ env.docker_tags }} build-args: | diff --git a/.github/workflows/qc_checks.yaml b/.github/workflows/qc_checks.yaml index f78f502fc9..4a2669dac4 100644 --- a/.github/workflows/qc_checks.yaml +++ b/.github/workflows/qc_checks.yaml @@ -28,6 +28,7 @@ jobs: outputs: server: ${{ steps.filter.outputs.server }} + migrations: ${{ steps.filter.outputs.migrations }} steps: - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0 @@ -39,6 +40,9 @@ jobs: - 'InvenTree/**' - 'requirements.txt' - 'requirements-dev.txt' + migrations: + - '**/migrations/**' + - '.github/workflows**' pep_style: name: Style [Python] @@ -99,7 +103,7 @@ jobs: python3 ci/version_check.py mkdocs: - name: Style [documentation] + name: Style [Documentation] runs-on: ubuntu-20.04 needs: paths-filter @@ -204,7 +208,7 @@ jobs: - name: Check Migration Files run: python3 ci/check_migration_files.py - name: Coverage Tests - run: invoke coverage + run: invoke test --coverage - name: Upload Coverage Report uses: coverallsapp/github-action@v2 with: @@ -297,3 +301,89 @@ jobs: run: invoke test - name: Data Export Test uses: ./.github/actions/migration + + migration-tests: + name: Run Migration Unit Tests + runs-on: ubuntu-latest + needs: paths-filter + if: github.ref == 'refs/heads/master' && needs.paths-filter.outputs.migrations == 'true' + + env: + INVENTREE_DB_ENGINE: django.db.backends.postgresql + INVENTREE_DB_NAME: inventree + INVENTREE_DB_USER: inventree + INVENTREE_DB_PASSWORD: password + INVENTREE_DB_HOST: '127.0.0.1' + INVENTREE_DB_PORT: 5432 + INVENTREE_DEBUG: info + INVENTREE_PLUGINS_ENABLED: false + + services: + postgres: + image: postgres:14 + env: + POSTGRES_USER: inventree + POSTGRES_PASSWORD: password + ports: + - 5432:5432 + + steps: + - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0 + - name: Environment Setup + uses: ./.github/actions/setup + with: + apt-dependency: gettext poppler-utils libpq-dev + pip-dependency: psycopg2 + dev-install: true + update: true + - name: Run Tests + run: invoke test --migrations --report + + migrations-checks: + name: Run Database Migrations + runs-on: ubuntu-latest + needs: paths-filter + if: github.ref == 'refs/heads/master' && needs.paths-filter.outputs.migrations == 'true' + + env: + INVENTREE_DB_ENGINE: sqlite3 + INVENTREE_DB_NAME: /home/runner/work/InvenTree/db.sqlite3 + INVENTREE_DEBUG: info + INVENTREE_PLUGINS_ENABLED: false + + steps: + - uses: actions/checkout@v3 + name: Checkout Code + - name: Environment Setup + uses: ./.github/actions/setup + with: + install: true + - name: Fetch Database + run: git clone --depth 1 https://github.com/inventree/test-db ./test-db + + - name: Latest Database + run: | + cp test-db/latest.sqlite3 /home/runner/work/InvenTree/db.sqlite3 + chmod +rw /home/runner/work/InvenTree/db.sqlite3 + invoke migrate + + - name: 0.10.0 Database + run: | + rm /home/runner/work/InvenTree/db.sqlite3 + cp test-db/stable_0.10.0.sqlite3 /home/runner/work/InvenTree/db.sqlite3 + chmod +rw /home/runner/work/InvenTree/db.sqlite3 + invoke migrate + + - name: 0.11.0 Database + run: | + rm /home/runner/work/InvenTree/db.sqlite3 + cp test-db/stable_0.11.0.sqlite3 /home/runner/work/InvenTree/db.sqlite3 + chmod +rw /home/runner/work/InvenTree/db.sqlite3 + invoke migrate + + - name: 0.12.0 Database + run: | + rm /home/runner/work/InvenTree/db.sqlite3 + cp test-db/stable_0.12.0.sqlite3 /home/runner/work/InvenTree/db.sqlite3 + chmod +rw /home/runner/work/InvenTree/db.sqlite3 + invoke migrate diff --git a/.pkgr.yml b/.pkgr.yml index 1a59baffe6..6ca6ae3a5e 100644 --- a/.pkgr.yml +++ b/.pkgr.yml @@ -15,6 +15,8 @@ env: - INVENTREE_PLUGIN_FILE=/opt/inventree/plugins.txt - INVENTREE_CONFIG_FILE=/opt/inventree/config.yaml after_install: contrib/packager.io/postinstall.sh +before: + - contrib/packager.io/before.sh dependencies: - curl - python3 @@ -33,3 +35,4 @@ dependencies: targets: ubuntu-20.04: true debian-11: true + debian-12: true diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 43fb414092..d52cdc69a2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -41,7 +41,7 @@ repos: args: [requirements.in, -o, requirements.txt] files: ^requirements\.(in|txt)$ - repo: https://github.com/Riverside-Healthcare/djLint - rev: v1.29.0 + rev: v1.30.2 hooks: - id: djlint-django - repo: https://github.com/codespell-project/codespell diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 994f2a4a98..7b39f05ef1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -19,7 +19,7 @@ pip install invoke && invoke setup-dev --tests ```bash git clone https://github.com/inventree/InvenTree.git && cd InvenTree docker compose run inventree-dev-server invoke install -docker compose run inventree-dev-server invoke setup-test +docker compose run inventree-dev-server invoke setup-test --dev docker compose up -d ``` @@ -33,7 +33,7 @@ Run the following command to set up all toolsets for development. invoke setup-dev ``` -*We recommend you run this command before starting to contribute. This will install and set up `pre-commit` to run some checks before each commit and help reduce the style errors.* +*We recommend you run this command before starting to contribute. This will install and set up `pre-commit` to run some checks before each commit and help reduce errors.* ## Branches and Versioning @@ -135,10 +135,27 @@ To run only partial tests, for example for a module use: invoke test --runtest order ``` +To see all the available options: + +``` +invoke test --help +``` + ## Code Style -Submitted Python code is automatically checked against PEP style guidelines. Locally you can run `invoke style` to ensure the style checks will pass, before submitting the PR. -Please write docstrings for each function and class - we follow the [google doc-style](https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings) for python. Docstrings for general javascript code is encouraged! Docstyles are checked by `invoke style`. +Code style is automatically checked as part of the project's CI pipeline on GitHub. This means that any pull requests which do not conform to the style guidelines will fail CI checks. + +### Backend Code + +Backend code (Python) is checked against the [PEP style guidelines](https://peps.python.org/pep-0008/). Please write docstrings for each function and class - we follow the [google doc-style](https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings) for python. + +### Frontend Code + +Frontend code (Javascript) is checked using [eslint](https://eslint.org/). While docstrings are not enforced for front-end code, good code documentation is encouraged! + +### Running Checks Locally + +If you have followed the setup devtools procedure, then code style checking is performend automatically whenever you commit changes to the code. ### Django templates @@ -146,7 +163,7 @@ Django are checked by [djlint](https://github.com/Riverside-Healthcare/djlint) t The following rules out of the [default set](https://djlint.com/docs/linter/) are not applied: ```bash -D018: (Django) Internal links should use the {% url ... %} pattern +D018: (Django) Internal links should use the { % url ... % } pattern H006: Img tag should have height and width attributes H008: Attributes should be double quoted H021: Inline styles should be avoided @@ -187,16 +204,16 @@ user_facing_string = _('This string will be exposed to the translation engine!') HTML and javascript files are passed through the django templating engine. Translatable strings are implemented as follows: ```html -{% load i18n %} +{ % load i18n % } -{% trans "This string will be translated" %} - this string will not! +{ % trans "This string will be translated" % } - this string will not! ``` ## Github use ### Tags The tags describe issues and PRs in multiple areas: | Area | Name | Description | -|---|---|---| +| --- | --- | --- | | Triage Labels | | | | | triage:not-checked | Item was not checked by the core team | | | triage:not-approved | Item is not green-light by maintainer | diff --git a/Dockerfile b/Dockerfile index b07a769b86..814951c6da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ # - Runs InvenTree web server under django development server # - Monitors source files for any changes, and live-reloads server -FROM python:3.9-slim as inventree_base +FROM python:3.10-alpine3.18 as inventree_base # Build arguments for this image ARG commit_hash="" @@ -17,6 +17,8 @@ ARG commit_date="" ARG commit_tag="" ENV PYTHONUNBUFFERED 1 +ENV PIP_DISABLE_PIP_VERSION_CHECK 1 +ENV INVOKE_RUN_SHELL="/bin/ash" ENV INVENTREE_LOG_LEVEL="WARNING" ENV INVENTREE_DOCKER="true" @@ -51,44 +53,54 @@ LABEL org.label-schema.schema-version="1.0" \ org.label-schema.vcs-url="https://github.com/inventree/InvenTree.git" \ org.label-schema.vcs-ref=${commit_tag} -# RUN apt-get upgrade && apt-get update -RUN apt-get update - -# Install required system packages -RUN apt-get install -y --no-install-recommends \ - git gcc g++ gettext gnupg libffi-dev libssl-dev \ - # Weasyprint requirements : https://doc.courtbouillon.org/weasyprint/stable/first_steps.html#debian-11 - poppler-utils libpango-1.0-0 libpangoft2-1.0-0 \ +RUN apk add --no-cache \ + git gettext py-cryptography \ # Image format support - libjpeg-dev webp libwebp-dev \ + libjpeg libwebp zlib \ + # Weasyprint requirements : https://doc.courtbouillon.org/weasyprint/stable/first_steps.html#alpine-3-12 + py3-pip py3-pillow py3-cffi py3-brotli pango poppler-utils \ # SQLite support - sqlite3 \ + sqlite \ # PostgreSQL support - libpq-dev postgresql-client \ + postgresql-libs postgresql-client \ # MySQL / MariaDB support - default-libmysqlclient-dev mariadb-client && \ - apt-get autoclean && apt-get autoremove + mariadb-connector-c-dev mariadb-client && \ + # fonts + apk --update --upgrade --no-cache add fontconfig ttf-freefont font-noto terminus-font && fc-cache -f -# Update pip -RUN pip install --upgrade pip +EXPOSE 8000 -# For ARMv7 architecture, add the pinwheels repo (for cryptography library) +RUN mkdir -p ${INVENTREE_HOME} +WORKDIR ${INVENTREE_HOME} + +COPY ./docker/requirements.txt base_requirements.txt +COPY ./requirements.txt ./ + +# For ARMv7 architecture, add the piwheels repo (for cryptography library) # Otherwise, we have to build from source, which is difficult # Ref: https://github.com/inventree/InvenTree/pull/4598 -RUN \ - if [ `dpkg --print-architecture` = "armhf" ]; then \ - printf "[global]\nextra-index-url=https://www.piwheels.org/simple\n" > /etc/pip.conf ; \ - fi +RUN if [ `apk --print-arch` = "armv7" ]; then \ + printf "[global]\nextra-index-url=https://www.piwheels.org/simple\n" > /etc/pip.conf ; \ + fi -# Install required base-level python packages -COPY ./docker/requirements.txt base_requirements.txt -RUN pip install --disable-pip-version-check -U -r base_requirements.txt +RUN apk add --no-cache --virtual .build-deps \ + gcc g++ musl-dev openssl-dev libffi-dev cargo python3-dev \ + # Image format dev libs + jpeg-dev openjpeg-dev libwebp-dev zlib-dev \ + # DB specific dev libs + postgresql-dev sqlite-dev mariadb-dev && \ + pip install -r base_requirements.txt -r requirements.txt --no-cache-dir && \ + apk --purge del .build-deps + +COPY tasks.py docker/gunicorn.conf.py docker/init.sh ./ + +RUN chmod +x init.sh + +ENTRYPOINT ["/bin/sh", "./init.sh"] # InvenTree production image: # - Copies required files from local directory -# - Installs required python packages from requirements.txt # - Starts a gunicorn webserver - FROM inventree_base as production ENV INVENTREE_DEBUG=False @@ -98,33 +110,14 @@ ENV INVENTREE_COMMIT_HASH="${commit_hash}" ENV INVENTREE_COMMIT_DATE="${commit_date}" # Copy source code -COPY InvenTree ${INVENTREE_HOME}/InvenTree - -# Copy other key files -COPY requirements.txt ${INVENTREE_HOME}/requirements.txt -COPY tasks.py ${INVENTREE_HOME}/tasks.py -COPY docker/gunicorn.conf.py ${INVENTREE_HOME}/gunicorn.conf.py -COPY docker/init.sh ${INVENTREE_MNG_DIR}/init.sh - -# Need to be running from within this directory -WORKDIR ${INVENTREE_MNG_DIR} - -# Drop to the inventree user for the production image -#RUN adduser inventree -#RUN chown -R inventree:inventree ${INVENTREE_HOME} -#USER inventree - -# Install InvenTree packages -RUN pip3 install --user --disable-pip-version-check -r ${INVENTREE_HOME}/requirements.txt - -# Server init entrypoint -ENTRYPOINT ["/bin/bash", "./init.sh"] +COPY InvenTree ./InvenTree # Launch the production server # TODO: Work out why environment variables cannot be interpolated in this command # TODO: e.g. -b ${INVENTREE_WEB_ADDR}:${INVENTREE_WEB_PORT} fails here CMD gunicorn -c ./gunicorn.conf.py InvenTree.wsgi -b 0.0.0.0:8000 --chdir ./InvenTree + FROM inventree_base as dev # The development image requires the source code to be mounted to /home/inventree/ @@ -139,7 +132,7 @@ ENV INVENTREE_PY_ENV="${INVENTREE_DATA_DIR}/env" WORKDIR ${INVENTREE_HOME} # Entrypoint ensures that we are running in the python virtual environment -ENTRYPOINT ["/bin/bash", "./docker/init.sh"] +ENTRYPOINT ["/bin/ash", "./docker/init.sh"] # Launch the development server CMD ["invoke", "server", "-a", "${INVENTREE_WEB_ADDR}:${INVENTREE_WEB_PORT}"] diff --git a/InvenTree/InvenTree/api.py b/InvenTree/InvenTree/api.py index 6f34847529..75c4e4b4f0 100644 --- a/InvenTree/InvenTree/api.py +++ b/InvenTree/InvenTree/api.py @@ -306,47 +306,6 @@ class APISearchView(APIView): return Response(results) -class StatusView(APIView): - """Generic API endpoint for discovering information on 'status codes' for a particular model. - - This class should be implemented as a subclass for each type of status. - For example, the API endpoint /stock/status/ will have information about - all available 'StockStatus' codes - """ - - permission_classes = [ - permissions.IsAuthenticated, - ] - - # Override status_class for implementing subclass - MODEL_REF = 'statusmodel' - - def get_status_model(self, *args, **kwargs): - """Return the StatusCode moedl based on extra parameters passed to the view""" - - status_model = self.kwargs.get(self.MODEL_REF, None) - - if status_model is None: - raise ValidationError(f"StatusView view called without '{self.MODEL_REF}' parameter") - - return status_model - - def get(self, request, *args, **kwargs): - """Perform a GET request to learn information about status codes""" - - status_class = self.get_status_model() - - if not status_class: - raise NotImplementedError("status_class not defined for this endpoint") - - data = { - 'class': status_class.__name__, - 'values': status_class.dict(), - } - - return Response(data) - - class MetadataView(RetrieveUpdateAPI): """Generic API endpoint for reading and editing metadata for a model""" diff --git a/InvenTree/InvenTree/api_version.py b/InvenTree/InvenTree/api_version.py index e98a0adca8..b3df418090 100644 --- a/InvenTree/InvenTree/api_version.py +++ b/InvenTree/InvenTree/api_version.py @@ -2,14 +2,44 @@ # InvenTree API version -INVENTREE_API_VERSION = 119 +INVENTREE_API_VERSION = 129 """ Increment this API version number whenever there is a significant change to the API that any clients need to know about +v129 -> 2023-07-06 : https://github.com/inventree/InvenTree/pull/5189 + - Changes 'serial_lte' and 'serial_gte' stock filters to point to 'serial_int' field + +v128 -> 2023-07-06 : https://github.com/inventree/InvenTree/pull/5186 + - Adds 'available' filter for BuildLine API endpoint + +v127 -> 2023-06-24 : https://github.com/inventree/InvenTree/pull/5094 + - Enhancements for the PartParameter API endpoints + +v126 -> 2023-06-19 : https://github.com/inventree/InvenTree/pull/5075 + - Adds API endpoint for setting the "category" for multiple parts simultaneously + +v125 -> 2023-06-17 : https://github.com/inventree/InvenTree/pull/5064 + - Adds API endpoint for setting the "status" field for multiple stock items simultaneously + +v124 -> 2023-06-17 : https://github.com/inventree/InvenTree/pull/5057 + - Add "created_before" and "created_after" filters to the Part API + +v123 -> 2023-06-15 : https://github.com/inventree/InvenTree/pull/5019 + - Add Metadata to: Plugin Config + +v122 -> 2023-06-14 : https://github.com/inventree/InvenTree/pull/5034 + - Adds new BuildLineLabel label type + +v121 -> 2023-06-14 : https://github.com/inventree/InvenTree/pull/4808 + - Adds "ProjectCode" link to Build model + +v120 -> 2023-06-07 : https://github.com/inventree/InvenTree/pull/4855 + - Major overhaul of the build order API + - Adds new BuildLine model v119 -> 2023-06-01 : https://github.com/inventree/InvenTree/pull/4898 - - Add Metadata to: Part test templates, Part parameters, Part category parameter templates, BOM item substitute, Part relateds, Stock item test result + - Add Metadata to: Part test templates, Part parameters, Part category parameter templates, BOM item substitute, Related Parts, Stock item test result v118 -> 2023-06-01 : https://github.com/inventree/InvenTree/pull/4935 - Adds extra fields for the PartParameterTemplate model @@ -27,6 +57,7 @@ v115 - > 2023-05-18 : https://github.com/inventree/InvenTree/pull/4846 v114 -> 2023-05-16 : https://github.com/inventree/InvenTree/pull/4825 - Adds "delivery_date" to shipments +>>>>>>> inventree/master v113 -> 2023-05-13 : https://github.com/inventree/InvenTree/pull/4800 - Adds API endpoints for scrapping a build output diff --git a/InvenTree/InvenTree/apps.py b/InvenTree/InvenTree/apps.py index 066214ebc3..9b5e4db13c 100644 --- a/InvenTree/InvenTree/apps.py +++ b/InvenTree/InvenTree/apps.py @@ -53,7 +53,7 @@ class InvenTreeConfig(AppConfig): self.collect_notification_methods() # Ensure the unit registry is loaded - InvenTree.conversion.reload_unit_registry() + InvenTree.conversion.get_unit_registry() if canAppAccessDatabase() or settings.TESTING_ENV: self.add_user_on_startup() @@ -131,19 +131,22 @@ class InvenTreeConfig(AppConfig): update = False try: - backend = ExchangeBackend.objects.get(name='InvenTreeExchange') + backend = ExchangeBackend.objects.filter(name='InvenTreeExchange') - last_update = backend.last_update + if backend.exists(): + backend = backend.first() - if last_update is None: - # Never been updated - logger.info("Exchange backend has never been updated") - update = True + last_update = backend.last_update - # Backend currency has changed? - if base_currency != backend.base_currency: - logger.info(f"Base currency changed from {backend.base_currency} to {base_currency}") - update = True + if last_update is None: + # Never been updated + logger.info("Exchange backend has never been updated") + update = True + + # Backend currency has changed? + if base_currency != backend.base_currency: + logger.info(f"Base currency changed from {backend.base_currency} to {base_currency}") + update = True except (ExchangeBackend.DoesNotExist): logger.info("Exchange backend not found - updating") @@ -197,8 +200,8 @@ class InvenTreeConfig(AppConfig): else: new_user = user.objects.create_superuser(add_user, add_email, add_password) logger.info(f'User {str(new_user)} was created!') - except IntegrityError as _e: - logger.warning(f'The user "{add_user}" could not be created due to the following error:\n{str(_e)}') + except IntegrityError: + logger.warning(f'The user "{add_user}" could not be created') # do not try again settings.USER_ADDED = True diff --git a/InvenTree/InvenTree/context.py b/InvenTree/InvenTree/context.py index 3803895010..4518d2b951 100644 --- a/InvenTree/InvenTree/context.py +++ b/InvenTree/InvenTree/context.py @@ -4,10 +4,8 @@ import InvenTree.email import InvenTree.status -from InvenTree.status_codes import (BuildStatus, PurchaseOrderStatus, - ReturnOrderLineStatus, ReturnOrderStatus, - SalesOrderStatus, StockHistoryCode, - StockStatus) +from generic.states import StatusCode +from InvenTree.helpers import inheritors from users.models import RuleSet, check_user_role @@ -57,17 +55,7 @@ def status_codes(request): return {} request._inventree_status_codes = True - - return { - # Expose the StatusCode classes to the templates - 'ReturnOrderStatus': ReturnOrderStatus, - 'ReturnOrderLineStatus': ReturnOrderLineStatus, - 'SalesOrderStatus': SalesOrderStatus, - 'PurchaseOrderStatus': PurchaseOrderStatus, - 'BuildStatus': BuildStatus, - 'StockStatus': StockStatus, - 'StockHistoryCode': StockHistoryCode, - } + return {cls.__name__: cls.template_context() for cls in inheritors(StatusCode)} def user_roles(request): diff --git a/InvenTree/InvenTree/conversion.py b/InvenTree/InvenTree/conversion.py index e2d114c728..67e18dc0e7 100644 --- a/InvenTree/InvenTree/conversion.py +++ b/InvenTree/InvenTree/conversion.py @@ -1,5 +1,7 @@ """Helper functions for converting between units.""" +import logging + from django.core.exceptions import ValidationError from django.utils.translation import gettext_lazy as _ @@ -8,6 +10,9 @@ import pint _unit_registry = None +logger = logging.getLogger('inventree') + + def get_unit_registry(): """Return a custom instance of the Pint UnitRegistry.""" @@ -26,6 +31,9 @@ def reload_unit_registry(): This function is called at startup, and whenever the database is updated. """ + import time + t_start = time.time() + global _unit_registry _unit_registry = pint.UnitRegistry() @@ -39,6 +47,9 @@ def reload_unit_registry(): # TODO: Allow for custom units to be defined in the database + dt = time.time() - t_start + logger.debug(f'Loaded unit registry in {dt:.3f}s') + def convert_physical_value(value: str, unit: str = None): """Validate that the provided value is a valid physical quantity. @@ -80,7 +91,7 @@ def convert_physical_value(value: str, unit: str = None): # At this point we *should* have a valid pint value # To double check, look at the maginitude float(val.magnitude) - except (TypeError, ValueError): + except (TypeError, ValueError, AttributeError): error = _('Provided value is not a valid number') except (pint.errors.UndefinedUnitError, pint.errors.DefinitionSyntaxError): error = _('Provided value has an invalid unit') diff --git a/InvenTree/InvenTree/forms.py b/InvenTree/InvenTree/forms.py index 9efa535c93..fb5c37ebdc 100644 --- a/InvenTree/InvenTree/forms.py +++ b/InvenTree/InvenTree/forms.py @@ -21,6 +21,8 @@ from crispy_forms.bootstrap import (AppendedText, PrependedAppendedText, PrependedText) from crispy_forms.helper import FormHelper from crispy_forms.layout import Field, Layout +from dj_rest_auth.registration.serializers import RegisterSerializer +from rest_framework import serializers from common.models import InvenTreeSetting from InvenTree.exceptions import log_error @@ -206,6 +208,11 @@ class CustomSignupForm(SignupForm): return cleaned_data +def registration_enabled(): + """Determine whether user registration is enabled.""" + return settings.EMAIL_HOST and (InvenTreeSetting.get_setting('LOGIN_ENABLE_REG') or InvenTreeSetting.get_setting('LOGIN_ENABLE_SSO_REG')) + + class RegistratonMixin: """Mixin to check if registration should be enabled.""" @@ -214,7 +221,7 @@ class RegistratonMixin: Configure the class variable `REGISTRATION_SETTING` to set which setting should be used, default: `LOGIN_ENABLE_REG`. """ - if settings.EMAIL_HOST and (InvenTreeSetting.get_setting('LOGIN_ENABLE_REG') or InvenTreeSetting.get_setting('LOGIN_ENABLE_SSO_REG')): + if registration_enabled(): return super().is_open_for_signup(request, *args, **kwargs) return False @@ -319,3 +326,20 @@ class CustomSocialAccountAdapter(CustomUrlMixin, RegistratonMixin, DefaultSocial # Otherwise defer to the original allauth adapter. return super().login(request, user) + + +# override dj-rest-auth +class CustomRegisterSerializer(RegisterSerializer): + """Override of serializer to use dynamic settings.""" + email = serializers.EmailField() + + def __init__(self, instance=None, data=..., **kwargs): + """Check settings to influence which fields are needed.""" + kwargs['email_required'] = InvenTreeSetting.get_setting('LOGIN_MAIL_REQUIRED') + super().__init__(instance, data, **kwargs) + + def save(self, request): + """Override to check if registration is open.""" + if registration_enabled(): + return super().save(request) + raise forms.ValidationError(_('Registration is disabled.')) diff --git a/InvenTree/InvenTree/helpers_model.py b/InvenTree/InvenTree/helpers_model.py index 278b8d7557..5fa514e682 100644 --- a/InvenTree/InvenTree/helpers_model.py +++ b/InvenTree/InvenTree/helpers_model.py @@ -262,32 +262,49 @@ def notify_responsible(instance, sender, content: NotificationBody = InvenTreeNo content (NotificationBody, optional): _description_. Defaults to InvenTreeNotificationBodies.NewOrder. exclude (User, optional): User instance that should be excluded. Defaults to None. """ - if instance.responsible is not None: - # Setup context for notification parsing - content_context = { - 'instance': str(instance), - 'verbose_name': sender._meta.verbose_name, - 'app_label': sender._meta.app_label, - 'model_name': sender._meta.model_name, - } + notify_users([instance.responsible], instance, sender, content=content, exclude=exclude) - # Setup notification context - context = { - 'instance': instance, - 'name': content.name.format(**content_context), - 'message': content.message.format(**content_context), - 'link': InvenTree.helpers_model.construct_absolute_url(instance.get_absolute_url()), - 'template': { - 'html': content.template.format(**content_context), - 'subject': content.name.format(**content_context), - } - } - # Create notification - trigger_notification( - instance, - content.slug.format(**content_context), - targets=[instance.responsible], - target_exclude=[exclude], - context=context, - ) +def notify_users(users, instance, sender, content: NotificationBody = InvenTreeNotificationBodies.NewOrder, exclude=None): + """Notify all passed users or groups. + + Parses the supplied content with the provided instance and sender and sends a notification to all users, + excluding the optional excluded list. + + Args: + users: List of users or groups to notify + instance: The newly created instance + sender: Sender model reference + content (NotificationBody, optional): _description_. Defaults to InvenTreeNotificationBodies.NewOrder. + exclude (User, optional): User instance that should be excluded. Defaults to None. + """ + # Setup context for notification parsing + content_context = { + 'instance': str(instance), + 'verbose_name': sender._meta.verbose_name, + 'app_label': sender._meta.app_label, + 'model_name': sender._meta.model_name, + } + + # Setup notification context + context = { + 'instance': instance, + 'name': content.name.format(**content_context), + 'message': content.message.format(**content_context), + 'link': InvenTree.helpers_model.construct_absolute_url(instance.get_absolute_url()), + 'template': { + 'subject': content.name.format(**content_context), + } + } + + if content.template: + context['template']['html'] = content.template.format(**content_context) + + # Create notification + trigger_notification( + instance, + content.slug.format(**content_context), + targets=users, + target_exclude=[exclude], + context=context, + ) diff --git a/InvenTree/InvenTree/magic_login.py b/InvenTree/InvenTree/magic_login.py new file mode 100644 index 0000000000..b48c3f3547 --- /dev/null +++ b/InvenTree/InvenTree/magic_login.py @@ -0,0 +1,75 @@ +"""Functions for magic login.""" +from django.conf import settings +from django.contrib.auth.models import User +from django.contrib.sites.models import Site +from django.core.mail import send_mail +from django.template.loader import render_to_string +from django.urls import reverse +from django.utils.translation import gettext_lazy as _ + +import sesame.utils +from rest_framework import serializers +from rest_framework.response import Response +from rest_framework.views import APIView + + +def send_simple_login_email(user, link): + """Send an email with the login link to this user.""" + site = Site.objects.get_current() + + context = { + "username": user.username, + "site_name": site.name, + "link": link, + } + email_plaintext_message = render_to_string("InvenTree/user_simple_login.txt", context) + + send_mail( + _(f"[{site.name}] Log in to the app"), + email_plaintext_message, + settings.DEFAULT_FROM_EMAIL, + [user.email], + ) + + +class GetSimpleLoginSerializer(serializers.Serializer): + """Serializer for the simple login view.""" + + email = serializers.CharField(label=_("Email")) + + +class GetSimpleLoginView(APIView): + """View to send a simple login link.""" + + permission_classes = () + serializer_class = GetSimpleLoginSerializer + + def post(self, request, *args, **kwargs): + """Get the token for the current user or fail.""" + serializer = self.serializer_class(data=request.data) + serializer.is_valid(raise_exception=True) + self.email_submitted(email=serializer.data["email"]) + return Response({"status": "ok"}) + + def email_submitted(self, email): + """Notify user about link.""" + user = self.get_user(email) + if user is None: + print("user not found:", email) + return + link = self.create_link(user) + send_simple_login_email(user, link) + + def get_user(self, email): + """Find the user with this email address.""" + try: + return User.objects.get(email=email) + except User.DoesNotExist: + return None + + def create_link(self, user): + """Create a login link for this user.""" + link = reverse("sesame-login") + link = self.request.build_absolute_uri(link) + link += sesame.utils.get_query_string(user) + return link diff --git a/InvenTree/InvenTree/management/commands/wait_for_db.py b/InvenTree/InvenTree/management/commands/wait_for_db.py index 00590ef602..3bcd2f5ffd 100644 --- a/InvenTree/InvenTree/management/commands/wait_for_db.py +++ b/InvenTree/InvenTree/management/commands/wait_for_db.py @@ -18,7 +18,7 @@ class Command(BaseCommand): while not connected: - time.sleep(5) + time.sleep(2) try: connection.ensure_connection() diff --git a/InvenTree/InvenTree/middleware.py b/InvenTree/InvenTree/middleware.py index 540748a4e8..8e28afc4e8 100644 --- a/InvenTree/InvenTree/middleware.py +++ b/InvenTree/InvenTree/middleware.py @@ -14,7 +14,6 @@ from allauth_2fa.middleware import (AllauthTwoFactorMiddleware, from error_report.middleware import ExceptionProcessor from rest_framework.authtoken.models import Token -from common.models import InvenTreeSetting from InvenTree.urls import frontendpatterns logger = logging.getLogger("inventree") @@ -65,6 +64,9 @@ class AuthRequiredMiddleware(object): elif request.path_info.startswith('/accounts/'): authorized = True + elif request.path_info.startswith('/platform/') or request.path_info == '/platform': + authorized = True + elif 'Authorization' in request.headers.keys() or 'authorization' in request.headers.keys(): auth = request.headers.get('Authorization', request.headers.get('authorization')).strip() @@ -123,6 +125,9 @@ class Check2FAMiddleware(BaseRequire2FAMiddleware): """Check if user is required to have MFA enabled.""" def require_2fa(self, request): """Use setting to check if MFA should be enforced for frontend page.""" + + from common.models import InvenTreeSetting + try: if url_matcher.resolve(request.path[1:]): return InvenTreeSetting.get_setting('LOGIN_ENFORCE_MFA') @@ -165,4 +170,31 @@ class InvenTreeExceptionProcessor(ExceptionProcessor): if kind in settings.IGNORED_ERRORS: return - return super().process_exception(request, exception) + import traceback + + from django.views.debug import ExceptionReporter + + from error_report.models import Error + from error_report.settings import ERROR_DETAIL_SETTINGS + + # Error reporting is disabled + if not ERROR_DETAIL_SETTINGS.get('ERROR_DETAIL_ENABLE', True): + return + + path = request.build_absolute_uri() + + # Truncate the path to a reasonable length + # Otherwise we get a database error, + # because the path field is limited to 200 characters + if len(path) > 200: + path = path[:195] + '...' + + error = Error.objects.create( + kind=kind.__name__, + html=ExceptionReporter(request, kind, info, data).get_traceback_html(), + path=path, + info=info, + data='\n'.join(traceback.format_exception(kind, info, data)), + ) + + error.save() diff --git a/InvenTree/InvenTree/ready.py b/InvenTree/InvenTree/ready.py index 2440d280f2..a9bacaf2ff 100644 --- a/InvenTree/InvenTree/ready.py +++ b/InvenTree/InvenTree/ready.py @@ -14,6 +14,11 @@ def isImportingData(): return 'loaddata' in sys.argv +def isRunningMigrations(): + """Return True if the database is currently running migrations.""" + return 'migrate' in sys.argv or 'makemigrations' in sys.argv + + def isInMainThread(): """Django starts two processes, one for the actual dev server and the other to reload the application. diff --git a/InvenTree/InvenTree/serializers.py b/InvenTree/InvenTree/serializers.py index b59b2ddf04..8260fb05ef 100644 --- a/InvenTree/InvenTree/serializers.py +++ b/InvenTree/InvenTree/serializers.py @@ -21,7 +21,7 @@ from rest_framework.serializers import DecimalField from rest_framework.utils import model_meta from taggit.serializers import TaggitSerializer -from common.models import InvenTreeSetting +import common.models as common_models from common.settings import currency_code_default, currency_code_mappings from InvenTree.fields import InvenTreeRestURLField, InvenTreeURLField from InvenTree.helpers_model import download_image_from_url @@ -724,7 +724,7 @@ class RemoteImageMixin(metaclass=serializers.SerializerMetaclass): if not url: return - if not InvenTreeSetting.get_setting('INVENTREE_DOWNLOAD_FROM_URL'): + if not common_models.InvenTreeSetting.get_setting('INVENTREE_DOWNLOAD_FROM_URL'): raise ValidationError(_("Downloading images from remote URL is not enabled")) try: diff --git a/InvenTree/InvenTree/settings.py b/InvenTree/InvenTree/settings.py index 32fb5b4689..33428d64f4 100644 --- a/InvenTree/InvenTree/settings.py +++ b/InvenTree/InvenTree/settings.py @@ -22,6 +22,7 @@ from django.http import Http404 from django.utils.translation import gettext_lazy as _ import moneyed +from dotenv import load_dotenv from InvenTree.config import get_boolean_setting, get_custom_file, get_setting from InvenTree.sentry import default_sentry_dsn, init_sentry @@ -65,6 +66,12 @@ BASE_DIR = config.get_base_dir() # Load configuration data CONFIG = config.load_config_data(set_cache=True) +# Load VERSION data if it exists +version_file = BASE_DIR.parent.joinpath('VERSION') +if version_file.exists(): + print('load version from file') + load_dotenv(version_file) + # Default action is to run the system in Debug mode # SECURITY WARNING: don't run with debug turned on in production! DEBUG = get_boolean_setting('INVENTREE_DEBUG', 'debug', True) @@ -196,6 +203,7 @@ INSTALLED_APPS = [ 'stock.apps.StockConfig', 'users.apps.UsersConfig', 'plugin.apps.PluginAppConfig', + 'generic', 'InvenTree.apps.InvenTreeConfig', # InvenTree app runs last # Core django modules @@ -226,6 +234,7 @@ INSTALLED_APPS = [ 'formtools', # Form wizard tools 'dbbackup', # Backups - django-dbbackup 'taggit', # Tagging + 'flags', # Flagging - django-flags 'allauth', # Base app for SSO 'allauth.account', # Extend user with accounts @@ -236,6 +245,8 @@ INSTALLED_APPS = [ 'django_otp.plugins.otp_static', # Backup codes 'allauth_2fa', # MFA flow for allauth + 'dj_rest_auth', # Authentication APIs - dj-rest-auth + 'dj_rest_auth.registration', # Registration APIs - dj-rest-auth' 'drf_spectacular', # API documentation 'django_ical', # For exporting calendars @@ -265,6 +276,7 @@ AUTHENTICATION_BACKENDS = CONFIG.get('authentication_backends', [ 'django.contrib.auth.backends.RemoteUserBackend', # proxy login 'django.contrib.auth.backends.ModelBackend', 'allauth.account.auth_backends.AuthenticationBackend', # SSO login via external providers + "sesame.backends.ModelBackend", # Magic link login django-sesame ]) DEBUG_TOOLBAR_ENABLED = DEBUG and get_setting('INVENTREE_DEBUG_TOOLBAR', 'debug_toolbar', False) @@ -371,6 +383,23 @@ if DEBUG: # Enable browsable API if in DEBUG mode REST_FRAMEWORK['DEFAULT_RENDERER_CLASSES'].append('rest_framework.renderers.BrowsableAPIRenderer') +# dj-rest-auth +# JWT switch +USE_JWT = get_boolean_setting('INVENTREE_USE_JWT', 'use_jwt', False) +REST_USE_JWT = USE_JWT +OLD_PASSWORD_FIELD_ENABLED = True +REST_AUTH_REGISTER_SERIALIZERS = {'REGISTER_SERIALIZER': 'InvenTree.forms.CustomRegisterSerializer'} + +# JWT settings - rest_framework_simplejwt +if USE_JWT: + JWT_AUTH_COOKIE = 'inventree-auth' + JWT_AUTH_REFRESH_COOKIE = 'inventree-token' + REST_FRAMEWORK['DEFAULT_AUTHENTICATION_CLASSES'] + ( + 'dj_rest_auth.jwt_auth.JWTCookieAuthentication', + ) + INSTALLED_APPS.append('rest_framework_simplejwt') + +# WSGI default setting SPECTACULAR_SETTINGS = { 'TITLE': 'InvenTree API', 'DESCRIPTION': 'API for InvenTree - the intuitive open source inventory management system', @@ -573,6 +602,10 @@ DATABASES = { REMOTE_LOGIN = get_boolean_setting('INVENTREE_REMOTE_LOGIN', 'remote_login_enabled', False) REMOTE_LOGIN_HEADER = get_setting('INVENTREE_REMOTE_LOGIN_HEADER', 'remote_login_header', 'REMOTE_USER') +# Magic login django-sesame +SESAME_MAX_AGE = 300 +LOGIN_REDIRECT_URL = "/platform/logged-in/" + # sentry.io integration for error reporting SENTRY_ENABLED = get_boolean_setting('INVENTREE_SENTRY_ENABLED', 'sentry_enabled', False) @@ -840,6 +873,8 @@ ACCOUNT_LOGIN_ATTEMPTS_LIMIT = get_setting('INVENTREE_LOGIN_ATTEMPTS', 'login_at ACCOUNT_DEFAULT_HTTP_PROTOCOL = get_setting('INVENTREE_LOGIN_DEFAULT_HTTP_PROTOCOL', 'login_default_protocol', 'http') ACCOUNT_LOGOUT_ON_PASSWORD_CHANGE = True ACCOUNT_PREVENT_ENUMERATION = True +# 2FA +REMOVE_SUCCESS_URL = 'settings' # override forms / adapters ACCOUNT_FORMS = { @@ -936,3 +971,23 @@ if DEBUG: logger.info(f"MEDIA_ROOT: '{MEDIA_ROOT}'") logger.info(f"STATIC_ROOT: '{STATIC_ROOT}'") + +# Flags +FLAGS = { + 'EXPERIMENTAL': [ + {'condition': 'boolean', 'value': DEBUG}, + {'condition': 'parameter', 'value': 'experimental='}, + ], # Should experimental features be turned on? + 'NEXT_GEN': [ + {'condition': 'parameter', 'value': 'ngen='}, + ], # Should next-gen features be turned on? +} + +# Get custom flags from environment/yaml +CUSTOM_FLAGS = get_setting('INVENTREE_FLAGS', 'flags', None, typecast=dict) +if CUSTOM_FLAGS: + if not isinstance(CUSTOM_FLAGS, dict): + logger.error(f"Invalid custom flags, must be valid dict: {CUSTOM_FLAGS}") + else: + logger.info(f"Custom flags: {CUSTOM_FLAGS}") + FLAGS.update(CUSTOM_FLAGS) diff --git a/InvenTree/InvenTree/social_auth_urls.py b/InvenTree/InvenTree/social_auth_urls.py new file mode 100644 index 0000000000..78fed2f7c1 --- /dev/null +++ b/InvenTree/InvenTree/social_auth_urls.py @@ -0,0 +1,127 @@ +"""API endpoints for social authentication with allauth.""" +import logging +from importlib import import_module + +from django.urls import include, path, reverse + +from allauth.socialaccount import providers +from allauth.socialaccount.models import SocialApp +from allauth.socialaccount.providers.keycloak.views import \ + KeycloakOAuth2Adapter +from allauth.socialaccount.providers.oauth2.views import (OAuth2Adapter, + OAuth2LoginView) +from rest_framework.generics import ListAPIView +from rest_framework.permissions import AllowAny +from rest_framework.response import Response + +from common.models import InvenTreeSetting + +logger = logging.getLogger('inventree') + + +class GenericOAuth2ApiLoginView(OAuth2LoginView): + """Api view to login a user with a social account""" + def dispatch(self, request, *args, **kwargs): + """Dispatch the regular login view directly.""" + return self.login(request, *args, **kwargs) + + +class GenericOAuth2ApiConnectView(GenericOAuth2ApiLoginView): + """Api view to connect a social account to the current user""" + + def dispatch(self, request, *args, **kwargs): + """Dispatch the connect request directly.""" + + # Override the request method be in connection mode + request.GET = request.GET.copy() + request.GET['process'] = 'connect' + + # Resume the dispatch + return super().dispatch(request, *args, **kwargs) + + +def handle_oauth2(adapter: OAuth2Adapter): + """Define urls for oauth2 endpoints.""" + return [ + path('login/', GenericOAuth2ApiLoginView.adapter_view(adapter), name=f'{provider.id}_api_login'), + path('connect/', GenericOAuth2ApiConnectView.adapter_view(adapter), name=f'{provider.id}_api_connect'), + ] + + +def handle_keycloak(): + """Define urls for keycloak.""" + return [ + path('login/', GenericOAuth2ApiLoginView.adapter_view(KeycloakOAuth2Adapter), name='keycloak_api_login'), + path('connect/', GenericOAuth2ApiConnectView.adapter_view(KeycloakOAuth2Adapter), name='keycloak_api_connet'), + ] + + +legacy = { + 'twitter': 'twitter_oauth2', + 'bitbucket': 'bitbucket_oauth2', + 'linkedin': 'linkedin_oauth2', + 'vimeo': 'vimeo_oauth2', + 'openid': 'openid_connect', +} # legacy connectors + + +# Collect urls for all loaded providers +social_auth_urlpatterns = [] + +provider_urlpatterns = [] +for provider in providers.registry.get_list(): + try: + prov_mod = import_module(provider.get_package() + ".views") + except ImportError: + continue + + # Try to extract the adapter class + adapters = [cls for cls in prov_mod.__dict__.values() if isinstance(cls, type) and not cls == OAuth2Adapter and issubclass(cls, OAuth2Adapter)] + + # Get urls + urls = [] + if len(adapters) == 1: + urls = handle_oauth2(adapter=adapters[0]) + else: + if provider.id in legacy: + logger.warning(f'`{provider.id}` is not supported on platform UI. Use `{legacy[provider.id]}` instead.') + continue + elif provider.id == 'keycloak': + urls = handle_keycloak() + else: + logger.error(f'Found handler that is not yet ready for platform UI: `{provider.id}`. Open an feature request on GitHub if you need it implemented.') + continue + provider_urlpatterns += [path(f'{provider.id}/', include(urls))] + + +social_auth_urlpatterns += provider_urlpatterns + + +class SocialProvierListView(ListAPIView): + """List of available social providers.""" + permission_classes = (AllowAny,) + + def get(self, request, *args, **kwargs): + """Get the list of providers.""" + provider_list = [] + for provider in providers.registry.get_list(): + provider_data = { + 'id': provider.id, + 'name': provider.name, + 'login': request.build_absolute_uri(reverse(f'{provider.id}_api_login')), + 'connect': request.build_absolute_uri(reverse(f'{provider.id}_api_connect')), + } + try: + provider_data['display_name'] = provider.get_app(request).name + except SocialApp.DoesNotExist: + provider_data['display_name'] = provider.name + + provider_list.append(provider_data) + + data = { + 'sso_enabled': InvenTreeSetting.get_setting('LOGIN_ENABLE_SSO'), + 'sso_registration': InvenTreeSetting.get_setting('LOGIN_ENABLE_SSO_REG'), + 'mfa_required': InvenTreeSetting.get_setting('LOGIN_ENFORCE_MFA'), + 'providers': provider_list + } + return Response(data) diff --git a/InvenTree/InvenTree/static/css/inventree.css b/InvenTree/InvenTree/static/css/inventree.css index 8bc36c3d70..6a080cba01 100644 --- a/InvenTree/InvenTree/static/css/inventree.css +++ b/InvenTree/InvenTree/static/css/inventree.css @@ -223,8 +223,7 @@ main { } .sub-table { - margin-left: 45px; - margin-right: 45px; + margin-left: 60px; } .detail-icon .glyphicon { @@ -270,10 +269,6 @@ main { } /* Styles for table buttons and filtering */ -.button-toolbar .btn { - margin-left: 1px; - margin-right: 1px; -} .filter-list { display: inline-block; diff --git a/InvenTree/InvenTree/status.py b/InvenTree/InvenTree/status.py index cb837a2439..a38da21b32 100644 --- a/InvenTree/InvenTree/status.py +++ b/InvenTree/InvenTree/status.py @@ -38,7 +38,14 @@ def is_worker_running(**kwargs): ) # If any results are returned, then the background worker is running! - return results.exists() + try: + result = results.exists() + except Exception: + # We may throw an exception if the database is not ready, + # or if the django_q table is not yet created (i.e. in CI testing) + result = False + + return result def check_system_health(**kwargs): diff --git a/InvenTree/InvenTree/status_codes.py b/InvenTree/InvenTree/status_codes.py index 124100a5dc..956773a9e6 100644 --- a/InvenTree/InvenTree/status_codes.py +++ b/InvenTree/InvenTree/status_codes.py @@ -2,377 +2,161 @@ from django.utils.translation import gettext_lazy as _ - -class StatusCode: - """Base class for representing a set of StatusCodes. - - This is used to map a set of integer values to text. - """ - - colors = {} - - @classmethod - def render(cls, key, large=False): - """Render the value as a HTML label.""" - # If the key cannot be found, pass it back - if key not in cls.options.keys(): - return key - - value = cls.options.get(key, key) - color = cls.colors.get(key, 'secondary') - - span_class = f'badge rounded-pill bg-{color}' - - return "{value}".format( - cl=span_class, - value=value - ) - - @classmethod - def list(cls): - """Return the StatusCode options as a list of mapped key / value items.""" - return list(cls.dict().values()) - - @classmethod - def text(cls, key): - """Text for supplied status code.""" - return cls.options.get(key, None) - - @classmethod - def items(cls): - """All status code items.""" - return cls.options.items() - - @classmethod - def keys(cls): - """All status code keys.""" - return cls.options.keys() - - @classmethod - def labels(cls): - """All status code labels.""" - return cls.options.values() - - @classmethod - def names(cls): - """Return a map of all 'names' of status codes in this class - - Will return a dict object, with the attribute name indexed to the integer value. - - e.g. - { - 'PENDING': 10, - 'IN_PROGRESS': 20, - } - """ - keys = cls.keys() - status_names = {} - - for d in dir(cls): - if d.startswith('_'): - continue - if d != d.upper(): - continue - - value = getattr(cls, d, None) - - if value is None: - continue - if callable(value): - continue - if type(value) != int: - continue - if value not in keys: - continue - - status_names[d] = value - - return status_names - - @classmethod - def dict(cls): - """Return a dict representation containing all required information""" - values = {} - - for name, value, in cls.names().items(): - entry = { - 'key': value, - 'name': name, - 'label': cls.label(value), - } - - if hasattr(cls, 'colors'): - if color := cls.colors.get(value, None): - entry['color'] = color - - values[name] = entry - - return values - - @classmethod - def label(cls, value): - """Return the status code label associated with the provided value.""" - return cls.options.get(value, value) - - @classmethod - def value(cls, label): - """Return the value associated with the provided label.""" - for k in cls.options.keys(): - if cls.options[k].lower() == label.lower(): - return k - - raise ValueError("Label not found") +from generic.states import StatusCode class PurchaseOrderStatus(StatusCode): """Defines a set of status codes for a PurchaseOrder.""" # Order status codes - PENDING = 10 # Order is pending (not yet placed) - PLACED = 20 # Order has been placed with supplier - COMPLETE = 30 # Order has been completed - CANCELLED = 40 # Order was cancelled - LOST = 50 # Order was lost - RETURNED = 60 # Order was returned + PENDING = 10, _("Pending"), 'secondary' # Order is pending (not yet placed) + PLACED = 20, _("Placed"), 'primary' # Order has been placed with supplier + COMPLETE = 30, _("Complete"), 'success' # Order has been completed + CANCELLED = 40, _("Cancelled"), 'danger' # Order was cancelled + LOST = 50, _("Lost"), 'warning' # Order was lost + RETURNED = 60, _("Returned"), 'warning' # Order was returned - options = { - PENDING: _("Pending"), - PLACED: _("Placed"), - COMPLETE: _("Complete"), - CANCELLED: _("Cancelled"), - LOST: _("Lost"), - RETURNED: _("Returned"), - } - colors = { - PENDING: 'secondary', - PLACED: 'primary', - COMPLETE: 'success', - CANCELLED: 'danger', - LOST: 'warning', - RETURNED: 'warning', - } +class PurchaseOrderStatusGroups: + """Groups for PurchaseOrderStatus codes.""" # Open orders OPEN = [ - PENDING, - PLACED, + PurchaseOrderStatus.PENDING.value, + PurchaseOrderStatus.PLACED.value, ] # Failed orders FAILED = [ - CANCELLED, - LOST, - RETURNED + PurchaseOrderStatus.CANCELLED.value, + PurchaseOrderStatus.LOST.value, + PurchaseOrderStatus.RETURNED.value ] class SalesOrderStatus(StatusCode): """Defines a set of status codes for a SalesOrder.""" - PENDING = 10 # Order is pending - IN_PROGRESS = 15 # Order has been issued, and is in progress - SHIPPED = 20 # Order has been shipped to customer - CANCELLED = 40 # Order has been cancelled - LOST = 50 # Order was lost - RETURNED = 60 # Order was returned + PENDING = 10, _("Pending"), 'secondary' # Order is pending + IN_PROGRESS = 15, _("In Progress"), 'primary' # Order has been issued, and is in progress + SHIPPED = 20, _("Shipped"), 'success' # Order has been shipped to customer + CANCELLED = 40, _("Cancelled"), 'danger' # Order has been cancelled + LOST = 50, _("Lost"), 'warning' # Order was lost + RETURNED = 60, _("Returned"), 'warning' # Order was returned - options = { - PENDING: _("Pending"), - IN_PROGRESS: _("In Progress"), - SHIPPED: _("Shipped"), - CANCELLED: _("Cancelled"), - LOST: _("Lost"), - RETURNED: _("Returned"), - } - colors = { - PENDING: 'secondary', - IN_PROGRESS: 'primary', - SHIPPED: 'success', - CANCELLED: 'danger', - LOST: 'warning', - RETURNED: 'warning', - } +class SalesOrderStatusGroups: + """Groups for SalesOrderStatus codes.""" # Open orders OPEN = [ - PENDING, - IN_PROGRESS, + SalesOrderStatus.PENDING.value, + SalesOrderStatus.IN_PROGRESS.value, ] # Completed orders COMPLETE = [ - SHIPPED, + SalesOrderStatus.SHIPPED.value, ] class StockStatus(StatusCode): """Status codes for Stock.""" - OK = 10 # Item is OK - ATTENTION = 50 # Item requires attention - DAMAGED = 55 # Item is damaged - DESTROYED = 60 # Item is destroyed - REJECTED = 65 # Item is rejected - LOST = 70 # Item has been lost - QUARANTINED = 75 # Item has been quarantined and is unavailable - RETURNED = 85 # Item has been returned from a customer + OK = 10, _("OK"), 'success' # Item is OK + ATTENTION = 50, _("Attention needed"), 'warning' # Item requires attention + DAMAGED = 55, _("Damaged"), 'warning' # Item is damaged + DESTROYED = 60, _("Destroyed"), 'danger' # Item is destroyed + REJECTED = 65, _("Rejected"), 'danger' # Item is rejected + LOST = 70, _("Lost"), 'dark' # Item has been lost + QUARANTINED = 75, _("Quarantined"), 'info' # Item has been quarantined and is unavailable + RETURNED = 85, _("Returned"), 'warning' # Item has been returned from a customer - options = { - OK: _("OK"), - ATTENTION: _("Attention needed"), - DAMAGED: _("Damaged"), - DESTROYED: _("Destroyed"), - LOST: _("Lost"), - REJECTED: _("Rejected"), - QUARANTINED: _("Quarantined"), - } - colors = { - OK: 'success', - ATTENTION: 'warning', - DAMAGED: 'warning', - DESTROYED: 'danger', - LOST: 'dark', - REJECTED: 'danger', - QUARANTINED: 'info' - } +class StockStatusGroups: + """Groups for StockStatus codes.""" # The following codes correspond to parts that are 'available' or 'in stock' AVAILABLE_CODES = [ - OK, - ATTENTION, - DAMAGED, - RETURNED, + StockStatus.OK.value, + StockStatus.ATTENTION.value, + StockStatus.DAMAGED.value, + StockStatus.RETURNED.value, ] class StockHistoryCode(StatusCode): """Status codes for StockHistory.""" - LEGACY = 0 + LEGACY = 0, _('Legacy stock tracking entry') - CREATED = 1 + CREATED = 1, _('Stock item created') # Manual editing operations - EDITED = 5 - ASSIGNED_SERIAL = 6 + EDITED = 5, _('Edited stock item') + ASSIGNED_SERIAL = 6, _('Assigned serial number') # Manual stock operations - STOCK_COUNT = 10 - STOCK_ADD = 11 - STOCK_REMOVE = 12 + STOCK_COUNT = 10, _('Stock counted') + STOCK_ADD = 11, _('Stock manually added') + STOCK_REMOVE = 12, _('Stock manually removed') # Location operations - STOCK_MOVE = 20 - STOCK_UPDATE = 25 + STOCK_MOVE = 20, _('Location changed') + STOCK_UPDATE = 25, _('Stock updated') # Installation operations - INSTALLED_INTO_ASSEMBLY = 30 - REMOVED_FROM_ASSEMBLY = 31 + INSTALLED_INTO_ASSEMBLY = 30, _('Installed into assembly') + REMOVED_FROM_ASSEMBLY = 31, _('Removed from assembly') - INSTALLED_CHILD_ITEM = 35 - REMOVED_CHILD_ITEM = 36 + INSTALLED_CHILD_ITEM = 35, _('Installed component item') + REMOVED_CHILD_ITEM = 36, _('Removed component item') # Stock splitting operations - SPLIT_FROM_PARENT = 40 - SPLIT_CHILD_ITEM = 42 + SPLIT_FROM_PARENT = 40, _('Split from parent item') + SPLIT_CHILD_ITEM = 42, _('Split child item') # Stock merging operations - MERGED_STOCK_ITEMS = 45 + MERGED_STOCK_ITEMS = 45, _('Merged stock items') # Convert stock item to variant - CONVERTED_TO_VARIANT = 48 + CONVERTED_TO_VARIANT = 48, _('Converted to variant') # Build order codes - BUILD_OUTPUT_CREATED = 50 - BUILD_OUTPUT_COMPLETED = 55 - BUILD_OUTPUT_REJECTED = 56 - BUILD_CONSUMED = 57 + BUILD_OUTPUT_CREATED = 50, _('Build order output created') + BUILD_OUTPUT_COMPLETED = 55, _('Build order output completed') + BUILD_OUTPUT_REJECTED = 56, _('Build order output rejected') + BUILD_CONSUMED = 57, _('Consumed by build order') # Sales order codes - SHIPPED_AGAINST_SALES_ORDER = 60 + SHIPPED_AGAINST_SALES_ORDER = 60, _("Shipped against Sales Order") # Purchase order codes - RECEIVED_AGAINST_PURCHASE_ORDER = 70 + RECEIVED_AGAINST_PURCHASE_ORDER = 70, _('Received against Purchase Order') # Return order codes - RETURNED_AGAINST_RETURN_ORDER = 80 + RETURNED_AGAINST_RETURN_ORDER = 80, _('Returned against Return Order') # Customer actions - SENT_TO_CUSTOMER = 100 - RETURNED_FROM_CUSTOMER = 105 - - options = { - LEGACY: _('Legacy stock tracking entry'), - - CREATED: _('Stock item created'), - - EDITED: _('Edited stock item'), - ASSIGNED_SERIAL: _('Assigned serial number'), - - STOCK_COUNT: _('Stock counted'), - STOCK_ADD: _('Stock manually added'), - STOCK_REMOVE: _('Stock manually removed'), - - STOCK_MOVE: _('Location changed'), - STOCK_UPDATE: _('Stock updated'), - - INSTALLED_INTO_ASSEMBLY: _('Installed into assembly'), - REMOVED_FROM_ASSEMBLY: _('Removed from assembly'), - - INSTALLED_CHILD_ITEM: _('Installed component item'), - REMOVED_CHILD_ITEM: _('Removed component item'), - - SPLIT_FROM_PARENT: _('Split from parent item'), - SPLIT_CHILD_ITEM: _('Split child item'), - - MERGED_STOCK_ITEMS: _('Merged stock items'), - - CONVERTED_TO_VARIANT: _('Converted to variant'), - - SENT_TO_CUSTOMER: _('Sent to customer'), - RETURNED_FROM_CUSTOMER: _('Returned from customer'), - - BUILD_OUTPUT_CREATED: _('Build order output created'), - BUILD_OUTPUT_COMPLETED: _('Build order output completed'), - BUILD_OUTPUT_REJECTED: _('Build order output rejected'), - BUILD_CONSUMED: _('Consumed by build order'), - - SHIPPED_AGAINST_SALES_ORDER: _("Shipped against Sales Order"), - - RECEIVED_AGAINST_PURCHASE_ORDER: _('Received against Purchase Order'), - - RETURNED_AGAINST_RETURN_ORDER: _('Returned against Return Order'), - } + SENT_TO_CUSTOMER = 100, _('Sent to customer') + RETURNED_FROM_CUSTOMER = 105, _('Returned from customer') class BuildStatus(StatusCode): """Build status codes.""" - PENDING = 10 # Build is pending / active - PRODUCTION = 20 # BuildOrder is in production - CANCELLED = 30 # Build was cancelled - COMPLETE = 40 # Build is complete + PENDING = 10, _("Pending"), 'secondary' # Build is pending / active + PRODUCTION = 20, _("Production"), 'primary' # BuildOrder is in production + CANCELLED = 30, _("Cancelled"), 'danger' # Build was cancelled + COMPLETE = 40, _("Complete"), 'success' # Build is complete - options = { - PENDING: _("Pending"), - PRODUCTION: _("Production"), - CANCELLED: _("Cancelled"), - COMPLETE: _("Complete"), - } - colors = { - PENDING: 'secondary', - PRODUCTION: 'primary', - COMPLETE: 'success', - CANCELLED: 'danger', - } +class BuildStatusGroups: + """Groups for BuildStatus codes.""" ACTIVE_CODES = [ - PENDING, - PRODUCTION, + BuildStatus.PENDING.value, + BuildStatus.PRODUCTION.value, ] @@ -380,68 +164,40 @@ class ReturnOrderStatus(StatusCode): """Defines a set of status codes for a ReturnOrder""" # Order is pending, waiting for receipt of items - PENDING = 10 + PENDING = 10, _("Pending"), 'secondary' # Items have been received, and are being inspected - IN_PROGRESS = 20 + IN_PROGRESS = 20, _("In Progress"), 'primary' - COMPLETE = 30 - CANCELLED = 40 + COMPLETE = 30, _("Complete"), 'success' + CANCELLED = 40, _("Cancelled"), 'danger' + + +class ReturnOrderStatusGroups: + """Groups for ReturnOrderStatus codes.""" OPEN = [ - PENDING, - IN_PROGRESS, + ReturnOrderStatus.PENDING.value, + ReturnOrderStatus.IN_PROGRESS.value, ] - options = { - PENDING: _("Pending"), - IN_PROGRESS: _("In Progress"), - COMPLETE: _("Complete"), - CANCELLED: _("Cancelled"), - } - - colors = { - PENDING: 'secondary', - IN_PROGRESS: 'primary', - COMPLETE: 'success', - CANCELLED: 'danger', - } - class ReturnOrderLineStatus(StatusCode): """Defines a set of status codes for a ReturnOrderLineItem""" - PENDING = 10 + PENDING = 10, _("Pending"), 'secondary' # Item is to be returned to customer, no other action - RETURN = 20 + RETURN = 20, _("Return"), 'success' # Item is to be repaired, and returned to customer - REPAIR = 30 + REPAIR = 30, _("Repair"), 'primary' # Item is to be replaced (new item shipped) - REPLACE = 40 + REPLACE = 40, _("Replace"), 'warning' # Item is to be refunded (cannot be repaired) - REFUND = 50 + REFUND = 50, _("Refund"), 'info' # Item is rejected - REJECT = 60 - - options = { - PENDING: _('Pending'), - RETURN: _('Return'), - REPAIR: _('Repair'), - REFUND: _('Refund'), - REPLACE: _('Replace'), - REJECT: _('Reject') - } - - colors = { - PENDING: 'secondary', - RETURN: 'success', - REPAIR: 'primary', - REFUND: 'info', - REPLACE: 'warning', - REJECT: 'danger', - } + REJECT = 60, _("Reject"), 'danger' diff --git a/InvenTree/InvenTree/tasks.py b/InvenTree/InvenTree/tasks.py index 9a242040e3..9c57a881c9 100644 --- a/InvenTree/InvenTree/tasks.py +++ b/InvenTree/InvenTree/tasks.py @@ -91,13 +91,15 @@ def check_daily_holdoff(task_name: str, n_days: int = 1) -> bool: """ from common.models import InvenTreeSetting + from InvenTree.ready import isInTestMode if n_days <= 0: logger.info(f"Specified interval for task '{task_name}' < 1 - task will not run") return False # Sleep a random number of seconds to prevent worker conflict - time.sleep(random.randint(1, 5)) + if not isInTestMode(): + time.sleep(random.randint(1, 5)) attempt_key = f'_{task_name}_ATTEMPT' success_key = f'_{task_name}_SUCCESS' @@ -186,6 +188,8 @@ def offload_task(taskname, *args, force_async=False, force_sync=False, **kwargs) task.run() except ImportError: raise_warning(f"WARNING: '{taskname}' not started - Function not found") + except Exception as exc: + raise_warning(f"WARNING: '{taskname}' not started due to {type(exc)}") else: if callable(taskname): @@ -495,7 +499,7 @@ def check_for_updates(): def update_exchange_rates(): """Update currency exchange rates.""" try: - from djmoney.contrib.exchange.models import ExchangeBackend, Rate + from djmoney.contrib.exchange.models import Rate from common.settings import currency_code_default, currency_codes from InvenTree.exchange import InvenTreeExchange @@ -507,22 +511,9 @@ def update_exchange_rates(): # Other error? return - # Test to see if the database is ready yet - try: - backend = ExchangeBackend.objects.get(name='InvenTreeExchange') - except ExchangeBackend.DoesNotExist: - pass - except Exception: # pragma: no cover - # Some other error - logger.warning("update_exchange_rates: Database not ready") - return - backend = InvenTreeExchange() - logger.info(f"Updating exchange rates from {backend.url}") - base = currency_code_default() - - logger.info(f"Using base currency '{base}'") + logger.info(f"Updating exchange rates using base currency '{base}'") try: backend.update_rates(base_currency=base) diff --git a/InvenTree/InvenTree/templates/InvenTree/user_simple_login.txt b/InvenTree/InvenTree/templates/InvenTree/user_simple_login.txt new file mode 100644 index 0000000000..e00a971a10 --- /dev/null +++ b/InvenTree/InvenTree/templates/InvenTree/user_simple_login.txt @@ -0,0 +1,8 @@ +Hello {{username}}, + +You requested that we send you a link to log in to our app: + + {{link}} + +Regards, +{{site_name}} diff --git a/InvenTree/InvenTree/test_urls.py b/InvenTree/InvenTree/test_urls.py index 8586de0e69..2f2db7e2a9 100644 --- a/InvenTree/InvenTree/test_urls.py +++ b/InvenTree/InvenTree/test_urls.py @@ -14,18 +14,18 @@ class URLTest(TestCase): # Need fixture data in the database fixtures = [ 'settings', - 'build', 'company', 'manufacturer_part', 'price_breaks', 'supplier_part', 'order', 'sales_order', - 'bom', 'category', 'params', 'part_pricebreaks', 'part', + 'bom', + 'build', 'test_templates', 'location', 'stock_tests', diff --git a/InvenTree/InvenTree/tests.py b/InvenTree/InvenTree/tests.py index 83c340e7e5..6b979fed51 100644 --- a/InvenTree/InvenTree/tests.py +++ b/InvenTree/InvenTree/tests.py @@ -11,12 +11,15 @@ import django.core.exceptions as django_exceptions from django.conf import settings from django.contrib.auth import get_user_model from django.contrib.sites.models import Site +from django.core import mail from django.core.exceptions import ValidationError from django.test import TestCase, override_settings +from django.urls import reverse from djmoney.contrib.exchange.exceptions import MissingRate from djmoney.contrib.exchange.models import Rate, convert_money from djmoney.money import Money +from sesame.utils import get_user import InvenTree.conversion import InvenTree.format @@ -56,6 +59,23 @@ class ConversionTest(TestCase): q = InvenTree.conversion.convert_physical_value(val).to_base_units() self.assertEqual(q.magnitude, expected) + def test_invalid_values(self): + """Test conversion of invalid inputs""" + + inputs = [ + '-', + ';;', + '-x', + '?', + '--', + '+', + '++', + ] + + for val in inputs: + with self.assertRaises(ValidationError): + InvenTree.conversion.convert_physical_value(val) + class ValidatorTest(TestCase): """Simple tests for custom field validators.""" @@ -1044,3 +1064,38 @@ class SanitizerTest(TestCase): # Test that invalid string is cleanded self.assertNotEqual(dangerous_string, sanitize_svg(dangerous_string)) + + +class MagicLoginTest(InvenTreeTestCase): + """Test magic login token generation.""" + + def test_generation(self): + """Test that magic login tokens are generated correctly""" + + # User does not exists + resp = self.client.post(reverse('sesame-generate'), {'email': 1}) + self.assertEqual(resp.status_code, 200) + self.assertEqual(resp.data, {'status': 'ok'}) + self.assertEqual(len(mail.outbox), 0) + + # User exists + resp = self.client.post(reverse('sesame-generate'), {'email': self.user.email}) + self.assertEqual(resp.status_code, 200) + self.assertEqual(resp.data, {'status': 'ok'}) + self.assertEqual(len(mail.outbox), 1) + self.assertEqual(mail.outbox[0].subject, '[example.com] Log in to the app') + + # Check that the token is in the email + self.assertTrue('http://testserver/api/email/login/' in mail.outbox[0].body) + token = mail.outbox[0].body.split('/')[-1].split('\n')[0][8:] + self.assertEqual(get_user(token), self.user) + + # Log user off + self.client.logout() + + # Check that the login works + resp = self.client.get(reverse('sesame-login') + '?sesame=' + token) + self.assertEqual(resp.status_code, 302) + self.assertEqual(resp.url, '/platform/logged-in/') + # And we should be logged in again + self.assertEqual(resp.wsgi_request.user, self.user) diff --git a/InvenTree/InvenTree/unit_test.py b/InvenTree/InvenTree/unit_test.py index 448ca90427..3590a6f56b 100644 --- a/InvenTree/InvenTree/unit_test.py +++ b/InvenTree/InvenTree/unit_test.py @@ -2,13 +2,17 @@ import csv import io +import json import re +from contextlib import contextmanager from pathlib import Path from django.contrib.auth import get_user_model from django.contrib.auth.models import Group, Permission +from django.db import connections from django.http.response import StreamingHttpResponse from django.test import TestCase +from django.test.utils import CaptureQueriesContext from djmoney.contrib.exchange.models import ExchangeBackend, Rate from rest_framework.test import APITestCase @@ -233,9 +237,38 @@ class ExchangeRateMixin: Rate.objects.bulk_create(items) +class InvenTreeTestCase(ExchangeRateMixin, UserMixin, TestCase): + """Testcase with user setup buildin.""" + pass + + class InvenTreeAPITestCase(ExchangeRateMixin, UserMixin, APITestCase): """Base class for running InvenTree API tests.""" + @contextmanager + def assertNumQueriesLessThan(self, value, using='default', verbose=False, debug=False): + """Context manager to check that the number of queries is less than a certain value. + + Example: + with self.assertNumQueriesLessThan(10): + # Do some stuff + Ref: https://stackoverflow.com/questions/1254170/django-is-there-a-way-to-count-sql-queries-from-an-unit-test/59089020#59089020 + """ + with CaptureQueriesContext(connections[using]) as context: + yield # your test will be run here + + if verbose: + msg = "\r\n%s" % json.dumps(context.captured_queries, indent=4) + else: + msg = None + + n = len(context.captured_queries) + + if debug: + print(f"Expected less than {value} queries, got {n} queries") + + self.assertLess(n, value, msg=msg) + def checkResponse(self, url, method, expected_code, response): """Debug output for an unexpected response""" @@ -408,8 +441,3 @@ class InvenTreeAPITestCase(ExchangeRateMixin, UserMixin, APITestCase): data.append(entry) return data - - -class InvenTreeTestCase(ExchangeRateMixin, UserMixin, TestCase): - """Testcase with user setup buildin.""" - pass diff --git a/InvenTree/InvenTree/urls.py b/InvenTree/InvenTree/urls.py index d1932527c0..7b3c0b25ac 100644 --- a/InvenTree/InvenTree/urls.py +++ b/InvenTree/InvenTree/urls.py @@ -7,9 +7,13 @@ from django.conf import settings from django.conf.urls.static import static from django.contrib import admin from django.urls import include, path, re_path +from django.views.decorators.csrf import csrf_exempt from django.views.generic.base import RedirectView +from dj_rest_auth.registration.views import (SocialAccountDisconnectView, + SocialAccountListView) from drf_spectacular.views import SpectacularAPIView, SpectacularRedocView +from sesame.views import LoginView from build.api import build_api_urls from build.urls import build_urls @@ -31,13 +35,15 @@ from stock.urls import stock_urls from users.api import user_urls from .api import APISearchView, InfoView, NotFoundView +from .magic_login import GetSimpleLoginView +from .social_auth_urls import SocialProvierListView, social_auth_urlpatterns from .views import (AboutView, AppearanceSelectView, CustomConnectionsView, CustomEmailView, CustomLoginView, CustomPasswordResetFromKeyView, CustomSessionDeleteOtherView, CustomSessionDeleteView, - CustomTwoFactorRemove, DatabaseStatsView, DynamicJsView, - EditUserView, IndexView, NotificationsView, SearchView, - SetPasswordView, SettingsView, auth_request) + DatabaseStatsView, DynamicJsView, EditUserView, IndexView, + NotificationsView, SearchView, SetPasswordView, + SettingsView, auth_request) admin.site.site_header = "InvenTree Admin" @@ -71,6 +77,18 @@ apipatterns = [ # InvenTree information endpoint path('', InfoView.as_view(), name='api-inventree-info'), + # Third party API endpoints + path('auth/', include('dj_rest_auth.urls')), + path('auth/registration/', include('dj_rest_auth.registration.urls')), + path('auth/providers/', SocialProvierListView.as_view(), name='social_providers'), + path('auth/social/', include(social_auth_urlpatterns)), + path('auth/social/', SocialAccountListView.as_view(), name='social_account_list'), + path('auth/social//disconnect/', SocialAccountDisconnectView.as_view(), name='social_account_disconnect'), + + # Magic login URLs + path("email/generate/", csrf_exempt(GetSimpleLoginView().as_view()), name="sesame-generate",), + path("email/login/", LoginView.as_view(), name="sesame-login"), + # Unknown endpoint re_path(r'^.*$', NotFoundView.as_view(), name='api-404'), ] @@ -95,6 +113,7 @@ notifications_urls = [ dynamic_javascript_urls = [ re_path(r'^calendar.js', DynamicJsView.as_view(template_name='js/dynamic/calendar.js'), name='calendar.js'), re_path(r'^nav.js', DynamicJsView.as_view(template_name='js/dynamic/nav.js'), name='nav.js'), + re_path(r'^permissions.js', DynamicJsView.as_view(template_name='js/dynamic/permissions.js'), name='permissions.js'), re_path(r'^settings.js', DynamicJsView.as_view(template_name='js/dynamic/settings.js'), name='settings.js'), ] @@ -110,6 +129,7 @@ translated_javascript_urls = [ re_path(r'^filters.js', DynamicJsView.as_view(template_name='js/translated/filters.js'), name='filters.js'), re_path(r'^forms.js', DynamicJsView.as_view(template_name='js/translated/forms.js'), name='forms.js'), re_path(r'^helpers.js', DynamicJsView.as_view(template_name='js/translated/helpers.js'), name='helpers.js'), + re_path(r'^index.js', DynamicJsView.as_view(template_name='js/translated/index.js'), name='index.js'), re_path(r'^label.js', DynamicJsView.as_view(template_name='js/translated/label.js'), name='label.js'), re_path(r'^model_renderers.js', DynamicJsView.as_view(template_name='js/translated/model_renderers.js'), name='model_renderers.js'), re_path(r'^modals.js', DynamicJsView.as_view(template_name='js/translated/modals.js'), name='modals.js'), @@ -178,10 +198,6 @@ frontendpatterns = [ re_path(r'^accounts/social/connections/', CustomConnectionsView.as_view(), name='socialaccount_connections'), re_path(r"^accounts/password/reset/key/(?P[0-9A-Za-z]+)-(?P.+)/$", CustomPasswordResetFromKeyView.as_view(), name="account_reset_password_from_key"), - # Temporary fix for django-allauth-2fa # TODO remove - # See https://github.com/inventree/InvenTree/security/advisories/GHSA-8j76-mm54-52xq - re_path(r'^accounts/two_factor/remove/?$', CustomTwoFactorRemove.as_view(), name='two-factor-remove'), - # Override login page re_path("accounts/login/", CustomLoginView.as_view(), name="account_login"), diff --git a/InvenTree/InvenTree/version.py b/InvenTree/InvenTree/version.py index 8289882be3..72e2551b66 100644 --- a/InvenTree/InvenTree/version.py +++ b/InvenTree/InvenTree/version.py @@ -5,24 +5,26 @@ Provides information on the current InvenTree version import os import pathlib +import platform import re from datetime import datetime as dt from datetime import timedelta as td import django +from django.conf import settings from dulwich.repo import NotGitRepository, Repo from .api_version import INVENTREE_API_VERSION # InvenTree software version -INVENTREE_SW_VERSION = "0.12.0 dev" +INVENTREE_SW_VERSION = "0.13.0 dev" # Discover git try: main_repo = Repo(pathlib.Path(__file__).parent.parent.parent) main_commit = main_repo[main_repo.head()] -except NotGitRepository: +except (NotGitRepository, FileNotFoundError): main_commit = None @@ -130,3 +132,51 @@ def inventreeCommitDate(): commit_dt = dt.fromtimestamp(main_commit.commit_time) + td(seconds=main_commit.commit_timezone) return str(commit_dt.date()) + + +def inventreeInstaller(): + """Returns the installer for the running codebase - if set.""" + # First look in the environment variables, e.g. if running in docker + + installer = os.environ.get('INVENTREE_PKG_INSTALLER', '') + + if installer: + return installer + elif settings.DOCKER: + return 'DOC' + elif main_commit is not None: + return 'GIT' + + return None + + +def inventreeBranch(): + """Returns the branch for the running codebase - if set.""" + # First look in the environment variables, e.g. if running in docker + + branch = os.environ.get('INVENTREE_PKG_BRANCH', '') + + if branch: + return branch + + if main_commit is None: + return None + + try: + branch = main_repo.refs.follow(b'HEAD')[0][1].decode() + return branch.removeprefix('refs/heads/') + except IndexError: + return None # pragma: no cover + + +def inventreeTarget(): + """Returns the target platform for the running codebase - if set.""" + # First look in the environment variables, e.g. if running in docker + + return os.environ.get('INVENTREE_PKG_TARGET', None) + + +def inventreePlatform(): + """Returns the platform for the instance.""" + + return platform.platform(aliased=True) diff --git a/InvenTree/InvenTree/views.py b/InvenTree/InvenTree/views.py index 014b384000..9819defcf6 100644 --- a/InvenTree/InvenTree/views.py +++ b/InvenTree/InvenTree/views.py @@ -27,12 +27,11 @@ from allauth.account.views import (EmailView, LoginView, PasswordResetFromKeyView) from allauth.socialaccount.forms import DisconnectForm from allauth.socialaccount.views import ConnectionsView -from allauth_2fa.views import TwoFactorRemove from djmoney.contrib.exchange.models import ExchangeBackend, Rate from user_sessions.views import SessionDeleteOtherView, SessionDeleteView -from common.models import ColorTheme, InvenTreeSetting -from common.settings import currency_code_default, currency_codes +import common.models as common_models +import common.settings as common_settings from part.models import PartCategory from users.models import RuleSet, check_user_role @@ -514,10 +513,10 @@ class SettingsView(TemplateView): """Add data for template.""" ctx = super().get_context_data(**kwargs).copy() - ctx['settings'] = InvenTreeSetting.objects.all().order_by('key') + ctx['settings'] = common_models.InvenTreeSetting.objects.all().order_by('key') - ctx["base_currency"] = currency_code_default() - ctx["currencies"] = currency_codes + ctx["base_currency"] = common_settings.currency_code_default() + ctx["currencies"] = common_settings.currency_codes ctx["rates"] = Rate.objects.filter(backend="InvenTreeExchange") @@ -525,8 +524,10 @@ class SettingsView(TemplateView): # When were the rates last updated? try: - backend = ExchangeBackend.objects.get(name='InvenTreeExchange') - ctx["rates_updated"] = backend.last_update + backend = ExchangeBackend.objects.filter(name='InvenTreeExchange') + if backend.exists(): + backend = backend.first() + ctx["rates_updated"] = backend.last_update except Exception: ctx["rates_updated"] = None @@ -620,8 +621,8 @@ class AppearanceSelectView(RedirectView): def get_user_theme(self): """Get current user color theme.""" try: - user_theme = ColorTheme.objects.filter(user=self.request.user).get() - except ColorTheme.DoesNotExist: + user_theme = common_models.ColorTheme.objects.filter(user=self.request.user).get() + except common_models.ColorTheme.DoesNotExist: user_theme = None return user_theme @@ -635,7 +636,7 @@ class AppearanceSelectView(RedirectView): # Create theme entry if user did not select one yet if not user_theme: - user_theme = ColorTheme() + user_theme = common_models.ColorTheme() user_theme.user = request.user user_theme.name = theme @@ -662,9 +663,3 @@ class NotificationsView(TemplateView): """View for showing notifications.""" template_name = "InvenTree/notifications/notifications.html" - - -# Custom 2FA removal form to allow custom redirect URL -class CustomTwoFactorRemove(TwoFactorRemove): - """Specify custom URL redirect.""" - success_url = reverse_lazy("settings") diff --git a/InvenTree/build/admin.py b/InvenTree/build/admin.py index 9bcfc78327..a9f8d538c3 100644 --- a/InvenTree/build/admin.py +++ b/InvenTree/build/admin.py @@ -6,7 +6,7 @@ from import_export.admin import ImportExportModelAdmin from import_export.fields import Field from import_export import widgets -from build.models import Build, BuildItem +from build.models import Build, BuildLine, BuildItem from InvenTree.admin import InvenTreeResource import part.models @@ -87,18 +87,33 @@ class BuildItemAdmin(admin.ModelAdmin): """Class for managing the BuildItem model via the admin interface""" list_display = ( - 'build', 'stock_item', 'quantity' ) autocomplete_fields = [ - 'build', - 'bom_item', + 'build_line', 'stock_item', 'install_into', ] +class BuildLineAdmin(admin.ModelAdmin): + """Class for managing the BuildLine model via the admin interface""" + + list_display = ( + 'build', + 'bom_item', + 'quantity', + ) + + search_fields = [ + 'build__title', + 'build__reference', + 'bom_item__sub_part__name', + ] + + admin.site.register(Build, BuildAdmin) admin.site.register(BuildItem, BuildItemAdmin) +admin.site.register(BuildLine, BuildLineAdmin) diff --git a/InvenTree/build/api.py b/InvenTree/build/api.py index b4d5853b41..8f00b12716 100644 --- a/InvenTree/build/api.py +++ b/InvenTree/build/api.py @@ -1,5 +1,6 @@ """JSON API for the Build app.""" +from django.db.models import F, Q from django.urls import include, path, re_path from django.utils.translation import gettext_lazy as _ from django.contrib.auth.models import User @@ -9,14 +10,16 @@ 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 AttachmentMixin, APIDownloadMixin, ListCreateDestroyAPIView, MetadataView, StatusView +from InvenTree.api import AttachmentMixin, APIDownloadMixin, ListCreateDestroyAPIView, MetadataView +from generic.states.api import StatusView from InvenTree.helpers import str2bool, isNull, DownloadFile -from InvenTree.status_codes import BuildStatus +from InvenTree.status_codes import BuildStatus, BuildStatusGroups from InvenTree.mixins import CreateAPI, RetrieveUpdateDestroyAPI, ListCreateAPI +import common.models import build.admin import build.serializers -from build.models import Build, BuildItem, BuildOrderAttachment +from build.models import Build, BuildLine, BuildItem, BuildOrderAttachment import part.models from users.models import Owner from InvenTree.filters import SEARCH_ORDER_FILTER_ALIAS @@ -41,9 +44,9 @@ class BuildFilter(rest_filters.FilterSet): def filter_active(self, queryset, name, value): """Filter the queryset to either include or exclude orders which are active.""" if str2bool(value): - return queryset.filter(status__in=BuildStatus.ACTIVE_CODES) + return queryset.filter(status__in=BuildStatusGroups.ACTIVE_CODES) else: - return queryset.exclude(status__in=BuildStatus.ACTIVE_CODES) + return queryset.exclude(status__in=BuildStatusGroups.ACTIVE_CODES) overdue = rest_filters.BooleanFilter(label='Build is overdue', method='filter_overdue') @@ -87,6 +90,21 @@ class BuildFilter(rest_filters.FilterSet): lookup_expr="iexact" ) + project_code = rest_filters.ModelChoiceFilter( + queryset=common.models.ProjectCode.objects.all(), + field_name='project_code' + ) + + has_project_code = rest_filters.BooleanFilter(label='has_project_code', method='filter_has_project_code') + + def filter_has_project_code(self, queryset, name, value): + """Filter by whether or not the order has a project code""" + + if str2bool(value): + return queryset.exclude(project_code=None) + else: + return queryset.filter(project_code=None) + class BuildList(APIDownloadMixin, ListCreateAPI): """API endpoint for accessing a list of Build objects. @@ -112,11 +130,13 @@ class BuildList(APIDownloadMixin, ListCreateAPI): 'completed', 'issued_by', 'responsible', + 'project_code', 'priority', ] ordering_field_aliases = { 'reference': ['reference_int', 'reference'], + 'project_code': ['project_code__code'], } ordering = '-reference' @@ -127,6 +147,7 @@ class BuildList(APIDownloadMixin, ListCreateAPI): 'part__name', 'part__IPN', 'part__description', + 'project_code__code', 'priority', ] @@ -250,6 +271,103 @@ class BuildUnallocate(CreateAPI): return ctx +class BuildLineFilter(rest_filters.FilterSet): + """Custom filterset for the BuildLine API endpoint.""" + + class Meta: + """Meta information for the BuildLineFilter class.""" + model = BuildLine + fields = [ + 'build', + 'bom_item', + ] + + # Fields on related models + consumable = rest_filters.BooleanFilter(label=_('Consumable'), field_name='bom_item__consumable') + optional = rest_filters.BooleanFilter(label=_('Optional'), field_name='bom_item__optional') + tracked = rest_filters.BooleanFilter(label=_('Tracked'), field_name='bom_item__sub_part__trackable') + + allocated = rest_filters.BooleanFilter(label=_('Allocated'), method='filter_allocated') + + def filter_allocated(self, queryset, name, value): + """Filter by whether each BuildLine is fully allocated""" + + if str2bool(value): + return queryset.filter(allocated__gte=F('quantity')) + else: + return queryset.filter(allocated__lt=F('quantity')) + + available = rest_filters.BooleanFilter(label=_('Available'), method='filter_available') + + def filter_available(self, queryset, name, value): + """Filter by whether there is sufficient stock available for each BuildLine: + + To determine this, we need to know: + + - The quantity required for each BuildLine + - The quantity available for each BuildLine + - The quantity allocated for each BuildLine + """ + + flt = Q(quantity__lte=F('total_available_stock') + F('allocated')) + + if str2bool(value): + return queryset.filter(flt) + else: + return queryset.exclude(flt) + + +class BuildLineEndpoint: + """Mixin class for BuildLine API endpoints.""" + + queryset = BuildLine.objects.all() + serializer_class = build.serializers.BuildLineSerializer + + def get_queryset(self): + """Override queryset to select-related and annotate""" + queryset = super().get_queryset() + + queryset = build.serializers.BuildLineSerializer.annotate_queryset(queryset) + + return queryset + + +class BuildLineList(BuildLineEndpoint, ListCreateAPI): + """API endpoint for accessing a list of BuildLine objects""" + + filterset_class = BuildLineFilter + filter_backends = SEARCH_ORDER_FILTER_ALIAS + + ordering_fields = [ + 'part', + 'allocated', + 'reference', + 'quantity', + 'consumable', + 'optional', + 'unit_quantity', + 'available_stock', + ] + + ordering_field_aliases = { + 'part': 'bom_item__sub_part__name', + 'reference': 'bom_item__reference', + 'unit_quantity': 'bom_item__quantity', + 'consumable': 'bom_item__consumable', + 'optional': 'bom_item__optional', + } + + search_fields = [ + 'bom_item__sub_part__name', + 'bom_item__reference', + ] + + +class BuildLineDetail(BuildLineEndpoint, RetrieveUpdateDestroyAPI): + """API endpoint for detail view of a BuildLine object.""" + pass + + class BuildOrderContextMixin: """Mixin class which adds build order as serializer context variable.""" @@ -372,9 +490,8 @@ class BuildItemFilter(rest_filters.FilterSet): """Metaclass option""" model = BuildItem fields = [ - 'build', + 'build_line', 'stock_item', - 'bom_item', 'install_into', ] @@ -383,6 +500,11 @@ class BuildItemFilter(rest_filters.FilterSet): field_name='stock_item__part', ) + build = rest_filters.ModelChoiceFilter( + queryset=build.models.Build.objects.all(), + field_name='build_line__build', + ) + tracked = rest_filters.BooleanFilter(label='Tracked', method='filter_tracked') def filter_tracked(self, queryset, name, value): @@ -408,10 +530,9 @@ class BuildItemList(ListCreateAPI): try: params = self.request.query_params - kwargs['part_detail'] = str2bool(params.get('part_detail', False)) - kwargs['build_detail'] = str2bool(params.get('build_detail', False)) - kwargs['location_detail'] = str2bool(params.get('location_detail', False)) - kwargs['stock_detail'] = str2bool(params.get('stock_detail', True)) + for key in ['part_detail', 'location_detail', 'stock_detail', 'build_detail']: + if key in params: + kwargs[key] = str2bool(params.get(key, False)) except AttributeError: pass @@ -422,9 +543,8 @@ class BuildItemList(ListCreateAPI): queryset = BuildItem.objects.all() queryset = queryset.select_related( - 'bom_item', - 'bom_item__sub_part', - 'build', + 'build_line', + 'build_line__build', 'install_into', 'stock_item', 'stock_item__location', @@ -434,7 +554,7 @@ class BuildItemList(ListCreateAPI): return queryset def filter_queryset(self, queryset): - """Customm query filtering for the BuildItem list.""" + """Custom query filtering for the BuildItem list.""" queryset = super().filter_queryset(queryset) params = self.request.query_params @@ -486,6 +606,12 @@ build_api_urls = [ re_path(r'^.*$', BuildAttachmentList.as_view(), name='api-build-attachment-list'), ])), + # Build lines + re_path(r'^line/', include([ + path(r'/', BuildLineDetail.as_view(), name='api-build-line-detail'), + re_path(r'^.*$', BuildLineList.as_view(), name='api-build-line-list'), + ])), + # Build Items re_path(r'^item/', include([ path(r'/', include([ diff --git a/InvenTree/build/migrations/0043_buildline.py b/InvenTree/build/migrations/0043_buildline.py new file mode 100644 index 0000000000..8da86bc015 --- /dev/null +++ b/InvenTree/build/migrations/0043_buildline.py @@ -0,0 +1,28 @@ +# Generated by Django 3.2.19 on 2023-05-19 06:04 + +import django.core.validators +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('part', '0109_auto_20230517_1048'), + ('build', '0042_alter_build_notes'), + ] + + operations = [ + migrations.CreateModel( + name='BuildLine', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('quantity', models.DecimalField(decimal_places=5, default=1, help_text='Required quantity for build order', max_digits=15, validators=[django.core.validators.MinValueValidator(0)], verbose_name='Quantity')), + ('bom_item', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='build_lines', to='part.bomitem')), + ('build', models.ForeignKey(help_text='Build object', on_delete=django.db.models.deletion.CASCADE, related_name='build_lines', to='build.build')), + ], + options={ + 'unique_together': {('build', 'bom_item')}, + }, + ), + ] diff --git a/InvenTree/build/migrations/0044_auto_20230528_1410.py b/InvenTree/build/migrations/0044_auto_20230528_1410.py new file mode 100644 index 0000000000..6b7da23155 --- /dev/null +++ b/InvenTree/build/migrations/0044_auto_20230528_1410.py @@ -0,0 +1,97 @@ +# Generated by Django 3.2.19 on 2023-05-28 14:10 + +from django.db import migrations + + +def get_bom_items_for_part(part, Part, BomItem): + """ Return a list of all BOM items for a given part. + + Note that we cannot use the ORM here (as we are inside a data migration), + so we *copy* the logic from the Part class. + + This is a snapshot of the Part.get_bom_items() method as of 2023-05-29 + """ + + bom_items = set() + + # Get all BOM items which directly reference the part + for bom_item in BomItem.objects.filter(part=part): + bom_items.add(bom_item) + + # Get all BOM items which are inherited by the part + parents = Part.objects.filter( + tree_id=part.tree_id, + level__lt=part.level, + lft__lt=part.lft, + rght__gt=part.rght + ) + + for bom_item in BomItem.objects.filter(part__in=parents, inherited=True): + bom_items.add(bom_item) + + return list(bom_items) + + +def add_lines_to_builds(apps, schema_editor): + """Create BuildOrderLine objects for existing build orders""" + + # Get database models + Build = apps.get_model("build", "Build") + BuildLine = apps.get_model("build", "BuildLine") + + Part = apps.get_model("part", "Part") + BomItem = apps.get_model("part", "BomItem") + + build_lines = [] + + builds = Build.objects.all() + + if builds.count() > 0: + print(f"Creating BuildOrderLine objects for {builds.count()} existing builds") + + for build in builds: + # Create a BuildOrderLine for each BuildItem + + bom_items = get_bom_items_for_part(build.part, Part, BomItem) + + for item in bom_items: + build_lines.append( + BuildLine( + build=build, + bom_item=item, + quantity=item.quantity * build.quantity, + ) + ) + + if len(build_lines) > 0: + # Construct the new BuildLine objects + BuildLine.objects.bulk_create(build_lines) + print(f"Created {len(build_lines)} BuildOrderLine objects for existing builds") + + +def remove_build_lines(apps, schema_editor): + """Remove BuildOrderLine objects from the database""" + + # Get database models + BuildLine = apps.get_model("build", "BuildLine") + + n = BuildLine.objects.all().count() + + BuildLine.objects.all().delete() + + if n > 0: + print(f"Removed {n} BuildOrderLine objects") + + +class Migration(migrations.Migration): + + dependencies = [ + ('build', '0043_buildline'), + ] + + operations = [ + migrations.RunPython( + add_lines_to_builds, + reverse_code=remove_build_lines, + ), + ] diff --git a/InvenTree/build/migrations/0045_builditem_build_line.py b/InvenTree/build/migrations/0045_builditem_build_line.py new file mode 100644 index 0000000000..690bb0352d --- /dev/null +++ b/InvenTree/build/migrations/0045_builditem_build_line.py @@ -0,0 +1,19 @@ +# Generated by Django 3.2.19 on 2023-06-06 10:30 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('build', '0044_auto_20230528_1410'), + ] + + operations = [ + migrations.AddField( + model_name='builditem', + name='build_line', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='allocations', to='build.buildline'), + ), + ] diff --git a/InvenTree/build/migrations/0046_auto_20230606_1033.py b/InvenTree/build/migrations/0046_auto_20230606_1033.py new file mode 100644 index 0000000000..60d290a70f --- /dev/null +++ b/InvenTree/build/migrations/0046_auto_20230606_1033.py @@ -0,0 +1,95 @@ +# Generated by Django 3.2.19 on 2023-06-06 10:33 + +import logging + +from django.db import migrations + + +logger = logging.getLogger('inventree') + + +def add_build_line_links(apps, schema_editor): + """Data migration to add links between BuildLine and BuildItem objects. + + Associated model types: + Build: A "Build Order" + BomItem: An individual line in the BOM for Build.part + BuildItem: An individual stock allocation against the Build Order + BuildLine: (new model) an individual line in the Build Order + + Goals: + - Find all BuildItem objects which are associated with a Build + - Link them against the relevant BuildLine object + - The BuildLine objects should have been created in 0044_auto_20230528_1410.py + """ + + BuildItem = apps.get_model("build", "BuildItem") + BuildLine = apps.get_model("build", "BuildLine") + + # Find any existing BuildItem objects + build_items = BuildItem.objects.all() + + n_missing = 0 + + for item in build_items: + + # Find the relevant BuildLine object + line = BuildLine.objects.filter( + build=item.build, + bom_item=item.bom_item + ).first() + + if line is None: + logger.warning(f"BuildLine does not exist for BuildItem {item.pk}") + n_missing += 1 + + if item.build is None or item.bom_item is None: + continue + + # Create one! + line = BuildLine.objects.create( + build=item.build, + bom_item=item.bom_item, + quantity=item.bom_item.quantity * item.build.quantity + ) + + # Link the BuildItem to the BuildLine + # In the next data migration, we remove the 'build' and 'bom_item' fields from BuildItem + item.build_line = line + item.save() + + if build_items.count() > 0: + logger.info(f"add_build_line_links: Updated {build_items.count()} BuildItem objects (added {n_missing})") + + +def reverse_build_links(apps, schema_editor): + """Reverse data migration from add_build_line_links + + Basically, iterate through each BuildItem and update the links based on the BuildLine + """ + + BuildItem = apps.get_model("build", "BuildItem") + + items = BuildItem.objects.all() + + for item in items: + item.build = item.build_line.build + item.bom_item = item.build_line.bom_item + item.save() + + if items.count() > 0: + logger.info(f"reverse_build_links: Updated {items.count()} BuildItem objects") + + +class Migration(migrations.Migration): + + dependencies = [ + ('build', '0045_builditem_build_line'), + ] + + operations = [ + migrations.RunPython( + add_build_line_links, + reverse_code=reverse_build_links, + ) + ] diff --git a/InvenTree/build/migrations/0047_auto_20230606_1058.py b/InvenTree/build/migrations/0047_auto_20230606_1058.py new file mode 100644 index 0000000000..88535c7347 --- /dev/null +++ b/InvenTree/build/migrations/0047_auto_20230606_1058.py @@ -0,0 +1,26 @@ +# Generated by Django 3.2.19 on 2023-06-06 10:58 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('stock', '0101_stockitemtestresult_metadata'), + ('build', '0046_auto_20230606_1033'), + ] + + operations = [ + migrations.AlterUniqueTogether( + name='builditem', + unique_together={('build_line', 'stock_item', 'install_into')}, + ), + migrations.RemoveField( + model_name='builditem', + name='bom_item', + ), + migrations.RemoveField( + model_name='builditem', + name='build', + ), + ] diff --git a/InvenTree/build/migrations/0048_build_project_code.py b/InvenTree/build/migrations/0048_build_project_code.py new file mode 100644 index 0000000000..fcc7153bc7 --- /dev/null +++ b/InvenTree/build/migrations/0048_build_project_code.py @@ -0,0 +1,20 @@ +# Generated by Django 3.2.19 on 2023-05-14 09:22 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('common', '0019_projectcode_metadata'), + ('build', '0047_auto_20230606_1058'), + ] + + operations = [ + migrations.AddField( + model_name='build', + name='project_code', + field=models.ForeignKey(blank=True, help_text='Project code for this build order', null=True, on_delete=django.db.models.deletion.SET_NULL, to='common.projectcode', verbose_name='Project Code'), + ), + ] diff --git a/InvenTree/build/models.py b/InvenTree/build/models.py index af2e3cf630..8488d32993 100644 --- a/InvenTree/build/models.py +++ b/InvenTree/build/models.py @@ -1,7 +1,7 @@ """Build database model definitions.""" import decimal - +import logging import os from datetime import datetime @@ -21,7 +21,7 @@ from mptt.exceptions import InvalidMove from rest_framework import serializers -from InvenTree.status_codes import BuildStatus, StockStatus, StockHistoryCode +from InvenTree.status_codes import BuildStatus, StockStatus, StockHistoryCode, BuildStatusGroups from build.validators import generate_next_build_reference, validate_build_order_reference @@ -32,14 +32,18 @@ import InvenTree.models import InvenTree.ready import InvenTree.tasks +import common.models +from common.notifications import trigger_notification from plugin.events import trigger_event -import common.notifications import part.models import stock.models import users.models +logger = logging.getLogger('inventree') + + class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models.InvenTreeNotesMixin, InvenTree.models.MetadataMixin, InvenTree.models.ReferenceIndexingMixin): """A Build object organises the creation of new StockItem objects from other existing StockItem objects. @@ -69,7 +73,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. verbose_name = _("Build Order") verbose_name_plural = _("Build Orders") - OVERDUE_FILTER = Q(status__in=BuildStatus.ACTIVE_CODES) & ~Q(target_date=None) & Q(target_date__lte=datetime.now().date()) + OVERDUE_FILTER = Q(status__in=BuildStatusGroups.ACTIVE_CODES) & ~Q(target_date=None) & Q(target_date__lte=datetime.now().date()) # Global setting for specifying reference pattern REFERENCE_PATTERN_SETTING = 'BUILDORDER_REFERENCE_PATTERN' @@ -129,10 +133,10 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. return queryset # Order was completed within the specified range - completed = Q(status=BuildStatus.COMPLETE) & Q(completion_date__gte=min_date) & Q(completion_date__lte=max_date) + completed = Q(status=BuildStatus.COMPLETE.value) & Q(completion_date__gte=min_date) & Q(completion_date__lte=max_date) # Order target date falls within specified range - pending = Q(status__in=BuildStatus.ACTIVE_CODES) & ~Q(target_date=None) & Q(target_date__gte=min_date) & Q(target_date__lte=max_date) + pending = Q(status__in=BuildStatusGroups.ACTIVE_CODES) & ~Q(target_date=None) & Q(target_date__gte=min_date) & Q(target_date__lte=max_date) # TODO - Construct a queryset for "overdue" orders @@ -231,7 +235,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. status = models.PositiveIntegerField( verbose_name=_('Build Status'), - default=BuildStatus.PENDING, + default=BuildStatus.PENDING.value, choices=BuildStatus.items(), validators=[MinValueValidator(0)], help_text=_('Build status code') @@ -298,6 +302,14 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. help_text=_('Priority of this build order') ) + project_code = models.ForeignKey( + common.models.ProjectCode, + on_delete=models.SET_NULL, + blank=True, null=True, + verbose_name=_('Project Code'), + help_text=_('Project code for this build order'), + ) + def sub_builds(self, cascade=True): """Return all Build Order objects under this one.""" if cascade: @@ -331,36 +343,32 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. @property def active(self): """Return True if this build is active.""" - return self.status in BuildStatus.ACTIVE_CODES + return self.status in BuildStatusGroups.ACTIVE_CODES @property - def bom_items(self): - """Returns the BOM items for the part referenced by this BuildOrder.""" - return self.part.get_bom_items() + def tracked_line_items(self): + """Returns the "trackable" BOM lines for this BuildOrder.""" - @property - def tracked_bom_items(self): - """Returns the "trackable" BOM items for this BuildOrder.""" - items = self.bom_items - items = items.filter(sub_part__trackable=True) + return self.build_lines.filter(bom_item__sub_part__trackable=True) - return items - - def has_tracked_bom_items(self): + def has_tracked_line_items(self): """Returns True if this BuildOrder has trackable BomItems.""" - return self.tracked_bom_items.count() > 0 + return self.tracked_line_items.count() > 0 @property - def untracked_bom_items(self): + def untracked_line_items(self): """Returns the "non trackable" BOM items for this BuildOrder.""" - items = self.bom_items - items = items.filter(sub_part__trackable=False) - return items + return self.build_lines.filter(bom_item__sub_part__trackable=False) - def has_untracked_bom_items(self): + @property + def are_untracked_parts_allocated(self): + """Returns True if all untracked parts are allocated for this BuildOrder.""" + return self.is_fully_allocated(tracked=False) + + def has_untracked_line_items(self): """Returns True if this BuildOrder has non trackable BomItems.""" - return self.untracked_bom_items.count() > 0 + return self.has_untracked_line_items.count() > 0 @property def remaining(self): @@ -422,6 +430,11 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. return quantity + def is_partially_allocated(self): + """Test is this build order has any stock allocated against it""" + + return self.allocated_stock.count() > 0 + @property def incomplete_outputs(self): """Return all the "incomplete" build outputs.""" @@ -478,21 +491,22 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. @property def can_complete(self): - """Returns True if this build can be "completed". + """Returns True if this BuildOrder is ready to be completed - Must not have any outstanding build outputs - - 'completed' value must meet (or exceed) the 'quantity' value + - Completed count must meet the required quantity + - Untracked parts must be allocated """ + if self.incomplete_count > 0: return False if self.remaining > 0: return False - if not self.are_untracked_parts_allocated(): + if not self.is_fully_allocated(tracked=False): return False - # No issues! return True @transaction.atomic @@ -503,7 +517,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. self.completion_date = datetime.now().date() self.completed_by = user - self.status = BuildStatus.COMPLETE + self.status = BuildStatus.COMPLETE.value self.save() # Remove untracked allocated stock @@ -511,7 +525,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. # Ensure that there are no longer any BuildItem objects # which point to this Build Order - self.allocated_stock.all().delete() + self.allocated_stock.delete() # Register an event trigger_event('build.completed', id=self.pk) @@ -547,7 +561,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. } } - common.notifications.trigger_notification( + trigger_notification( build, 'build.completed', targets=targets, @@ -566,13 +580,14 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. remove_allocated_stock = kwargs.get('remove_allocated_stock', False) remove_incomplete_outputs = kwargs.get('remove_incomplete_outputs', False) - # Handle stock allocations - for build_item in self.allocated_stock.all(): + # Find all BuildItem objects associated with this Build + items = self.allocated_stock - if remove_allocated_stock: - build_item.complete_allocation(user) + if remove_allocated_stock: + for item in items: + item.complete_allocation(user) - build_item.delete() + items.delete() # Remove incomplete outputs (if required) if remove_incomplete_outputs: @@ -585,26 +600,25 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. self.completion_date = datetime.now().date() self.completed_by = user - self.status = BuildStatus.CANCELLED + self.status = BuildStatus.CANCELLED.value self.save() trigger_event('build.cancelled', id=self.pk) @transaction.atomic - def unallocateStock(self, bom_item=None, output=None): - """Unallocate stock from this Build. + def deallocate_stock(self, build_line=None, output=None): + """Deallocate stock from this Build. Args: - bom_item: Specify a particular BomItem to unallocate stock against - output: Specify a particular StockItem (output) to unallocate stock against + build_line: Specify a particular BuildLine instance to un-allocate stock against + output: Specify a particular StockItem (output) to un-allocate stock against """ - allocations = BuildItem.objects.filter( - build=self, + allocations = self.allocated_stock.filter( install_into=output ) - if bom_item: - allocations = allocations.filter(bom_item=bom_item) + if build_line: + allocations = allocations.filter(build_line=build_line) allocations.delete() @@ -729,7 +743,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. _add_tracking_entry(output, user) if self.status == BuildStatus.PENDING: - self.status = BuildStatus.PRODUCTION + self.status = BuildStatus.PRODUCTION.value self.save() @transaction.atomic @@ -737,7 +751,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. """Remove a build output from the database. Executes: - - Unallocate any build items against the output + - Deallocate any build items against the output - Delete the output StockItem """ if not output: @@ -749,8 +763,8 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. if output.build != self: raise ValidationError(_("Build output does not match Build Order")) - # Unallocate all build items against the output - self.unallocateStock(output=output) + # Deallocate all build items against the output + self.deallocate_stock(output=output) # Remove the build output from the database output.delete() @@ -758,36 +772,47 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. @transaction.atomic def trim_allocated_stock(self): """Called after save to reduce allocated stock if the build order is now overallocated.""" - allocations = BuildItem.objects.filter(build=self) # Only need to worry about untracked stock here - for bom_item in self.untracked_bom_items: - reduce_by = self.allocated_quantity(bom_item) - self.required_quantity(bom_item) - if reduce_by <= 0: - continue # all OK + for build_line in self.untracked_line_items: + + reduce_by = build_line.allocated_quantity() - build_line.quantity + + if reduce_by <= 0: + continue + + # Find BuildItem objects to trim + for item in BuildItem.objects.filter(build_line=build_line): - # find builditem(s) to trim - for a in allocations.filter(bom_item=bom_item): # Previous item completed the job - if reduce_by == 0: + if reduce_by <= 0: break # Easy case - this item can just be reduced. - if a.quantity > reduce_by: - a.quantity -= reduce_by - a.save() + if item.quantity > reduce_by: + item.quantity -= reduce_by + item.save() break # Harder case, this item needs to be deleted, and any remainder # taken from the next items in the list. - reduce_by -= a.quantity - a.delete() + reduce_by -= item.quantity + item.delete() + + @property + def allocated_stock(self): + """Returns a QuerySet object of all BuildItem objects which point back to this Build""" + return BuildItem.objects.filter( + build_line__build=self + ) @transaction.atomic def subtract_allocated_stock(self, user): """Called when the Build is marked as "complete", this function removes the allocated untracked items from stock.""" + + # Find all BuildItem objects which point to this build items = self.allocated_stock.filter( - stock_item__part__trackable=False + build_line__bom_item__sub_part__trackable=False ) # Remove stock @@ -831,7 +856,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. # Update build output item output.is_building = False - output.status = StockStatus.REJECTED + output.status = StockStatus.REJECTED.value output.location = location output.save(add_note=False) @@ -851,7 +876,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. notes=notes, deltas={ 'location': location.pk, - 'status': StockStatus.REJECTED, + 'status': StockStatus.REJECTED.value, 'buildorder': self.pk, } ) @@ -865,7 +890,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. """ # Select the location for the build output location = kwargs.get('location', self.destination) - status = kwargs.get('status', StockStatus.OK) + status = kwargs.get('status', StockStatus.OK.value) notes = kwargs.get('notes', '') # List the allocated BuildItem objects for the given output @@ -934,8 +959,13 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. else: return 3 - # Get a list of all 'untracked' BOM items - for bom_item in self.untracked_bom_items: + new_items = [] + + # Auto-allocation is only possible for "untracked" line items + for line_item in self.untracked_line_items.all(): + + # Find the referenced BomItem + bom_item = line_item.bom_item if bom_item.consumable: # Do not auto-allocate stock to consumable BOM items @@ -947,7 +977,7 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. variant_parts = bom_item.sub_part.get_descendants(include_self=False) - unallocated_quantity = self.unallocated_quantity(bom_item) + unallocated_quantity = line_item.unallocated_quantity() if unallocated_quantity <= 0: # This BomItem is fully allocated, we can continue @@ -998,18 +1028,22 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. # or all items are "interchangeable" and we don't care where we take stock from for stock_item in available_stock: + + # Skip inactive parts + if not stock_item.part.active: + continue + # How much of the stock item is "available" for allocation? quantity = min(unallocated_quantity, stock_item.unallocated_quantity()) if quantity > 0: try: - BuildItem.objects.create( - build=self, - bom_item=bom_item, + new_items.append(BuildItem( + build_line=line_item, stock_item=stock_item, quantity=quantity, - ) + )) # Subtract the required quantity unallocated_quantity -= quantity @@ -1022,163 +1056,83 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. # We have now fully-allocated this BomItem - no need to continue! break - def required_quantity(self, bom_item, output=None): - """Get the quantity of a part required to complete the particular build output. + # Bulk-create the new BuildItem objects + BuildItem.objects.bulk_create(new_items) + + def unallocated_lines(self, tracked=None): + """Returns a list of BuildLine objects which have not been fully allocated.""" + + lines = self.build_lines.all() + + if tracked is True: + lines = lines.filter(bom_item__sub_part__trackable=True) + elif tracked is False: + lines = lines.filter(bom_item__sub_part__trackable=False) + + unallocated_lines = [] + + for line in lines: + if not line.is_fully_allocated(): + unallocated_lines.append(line) + + return unallocated_lines + + def is_fully_allocated(self, tracked=None): + """Test if the BuildOrder has been fully allocated. + + This is *true* if *all* associated BuildLine items have sufficient allocation + + Arguments: + tracked: If True, only consider tracked BuildLine items. If False, only consider untracked BuildLine items. + + Returns: + True if the BuildOrder has been fully allocated, otherwise False + """ + + lines = self.unallocated_lines(tracked=tracked) + return len(lines) == 0 + + def is_output_fully_allocated(self, output): + """Determine if the specified output (StockItem) has been fully allocated for this build Args: - bom_item: The Part object - output: The particular build output (StockItem) + output: StockItem object + + To determine if the output has been fully allocated, + we need to test all "trackable" BuildLine objects """ - quantity = bom_item.quantity - if output: - quantity *= output.quantity - else: - quantity *= self.quantity - - return quantity - - def allocated_bom_items(self, bom_item, output=None): - """Return all BuildItem objects which allocate stock of to . - - Note that the bom_item may allow variants, or direct substitutes, - making things difficult. - - Args: - bom_item: The BomItem object - output: Build output (StockItem). - """ - allocations = BuildItem.objects.filter( - build=self, - bom_item=bom_item, - install_into=output, - ) - - return allocations - - def allocated_quantity(self, bom_item, output=None): - """Return the total quantity of given part allocated to a given build output.""" - allocations = self.allocated_bom_items(bom_item, output) - - allocated = allocations.aggregate( - q=Coalesce( - Sum('quantity'), - 0, - output_field=models.DecimalField(), + for line in self.build_lines.filter(bom_item__sub_part__trackable=True): + # Grab all BuildItem objects which point to this output + allocations = BuildItem.objects.filter( + build_line=line, + install_into=output, ) - ) - return allocated['q'] + allocated = allocations.aggregate( + q=Coalesce(Sum('quantity'), 0, output_field=models.DecimalField()) + ) - def unallocated_quantity(self, bom_item, output=None): - """Return the total unallocated (remaining) quantity of a part against a particular output.""" - required = self.required_quantity(bom_item, output) - allocated = self.allocated_quantity(bom_item, output) - - return max(required - allocated, 0) - - def is_bom_item_allocated(self, bom_item, output=None): - """Test if the supplied BomItem has been fully allocated""" - - if bom_item.consumable: - # Consumable BOM items do not need to be allocated - return True - - return self.unallocated_quantity(bom_item, output) == 0 - - def is_fully_allocated(self, output): - """Returns True if the particular build output is fully allocated.""" - # If output is not specified, we are talking about "untracked" items - if output is None: - bom_items = self.untracked_bom_items - else: - bom_items = self.tracked_bom_items - - for bom_item in bom_items: - - if not self.is_bom_item_allocated(bom_item, output): + # The amount allocated against an output must at least equal the BOM quantity + if allocated['q'] < line.bom_item.quantity: return False - # All parts must be fully allocated! + # At this stage, we can assume that the output is fully allocated return True - def is_partially_allocated(self, output): - """Returns True if the particular build output is (at least) partially allocated.""" - # If output is not specified, we are talking about "untracked" items - if output is None: - bom_items = self.untracked_bom_items - else: - bom_items = self.tracked_bom_items + def is_overallocated(self): + """Test if the BuildOrder has been over-allocated. - for bom_item in bom_items: + Returns: + True if any BuildLine has been over-allocated. + """ - if self.allocated_quantity(bom_item, output) > 0: + for line in self.build_lines.all(): + if line.is_overallocated(): return True return False - def are_untracked_parts_allocated(self): - """Returns True if the un-tracked parts are fully allocated for this BuildOrder.""" - return self.is_fully_allocated(None) - - def has_overallocated_parts(self, output=None): - """Check if parts have been 'over-allocated' against the specified output. - - Note: If output=None, test un-tracked parts - """ - - bom_items = self.tracked_bom_items if output else self.untracked_bom_items - - for bom_item in bom_items: - if self.allocated_quantity(bom_item, output) > self.required_quantity(bom_item, output): - return True - - return False - - def unallocated_bom_items(self, output): - """Return a list of bom items which have *not* been fully allocated against a particular output.""" - unallocated = [] - - # If output is not specified, we are talking about "untracked" items - if output is None: - bom_items = self.untracked_bom_items - else: - bom_items = self.tracked_bom_items - - for bom_item in bom_items: - - if not self.is_bom_item_allocated(bom_item, output): - unallocated.append(bom_item) - - return unallocated - - @property - def required_parts(self): - """Returns a list of parts required to build this part (BOM).""" - parts = [] - - for item in self.bom_items: - parts.append(item.sub_part) - - return parts - - @property - def required_parts_to_complete_build(self): - """Returns a list of parts required to complete the full build. - - TODO: 2022-01-06 : This method needs to be improved, it is very inefficient in terms of DB hits! - """ - parts = [] - - for bom_item in self.bom_items: - # Get remaining quantity needed - required_quantity_to_complete_build = self.remaining * bom_item.quantity - self.allocated_quantity(bom_item) - # Compare to net stock - if bom_item.sub_part.net_stock < required_quantity_to_complete_build: - parts.append(bom_item.sub_part) - - return parts - @property def is_active(self): """Is this build active? @@ -1187,13 +1141,59 @@ class Build(MPTTModel, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models. - PENDING - HOLDING """ - return self.status in BuildStatus.ACTIVE_CODES + return self.status in BuildStatusGroups.ACTIVE_CODES @property def is_complete(self): """Returns True if the build status is COMPLETE.""" return self.status == BuildStatus.COMPLETE + @transaction.atomic + def create_build_line_items(self, prevent_duplicates=True): + """Create BuildLine objects for each BOM line in this BuildOrder.""" + + lines = [] + + bom_items = self.part.get_bom_items() + + logger.info(f"Creating BuildLine objects for BuildOrder {self.pk} ({len(bom_items)} items))") + + # Iterate through each part required to build the parent part + for bom_item in bom_items: + if prevent_duplicates: + if BuildLine.objects.filter(build=self, bom_item=bom_item).exists(): + logger.info(f"BuildLine already exists for BuildOrder {self.pk} and BomItem {bom_item.pk}") + continue + + # Calculate required quantity + quantity = bom_item.get_required_quantity(self.quantity) + + lines.append( + BuildLine( + build=self, + bom_item=bom_item, + quantity=quantity + ) + ) + + BuildLine.objects.bulk_create(lines) + + logger.info(f"Created {len(lines)} BuildLine objects for BuildOrder") + + @transaction.atomic + def update_build_line_items(self): + """Rebuild required quantity field for each BuildLine object""" + + lines_to_update = [] + + for line in self.build_lines.all(): + line.quantity = line.bom_item.get_required_quantity(self.quantity) + lines_to_update.append(line) + + BuildLine.objects.bulk_update(lines_to_update, ['quantity']) + + logger.info(f"Updated {len(lines_to_update)} BuildLine objects for BuildOrder") + @receiver(post_save, sender=Build, dispatch_uid='build_post_save_log') def after_save_build(sender, instance: Build, created: bool, **kwargs): @@ -1204,14 +1204,23 @@ def after_save_build(sender, instance: Build, created: bool, **kwargs): from . import tasks as build_tasks - if created: - # A new Build has just been created + if instance: - # Run checks on required parts - InvenTree.tasks.offload_task(build_tasks.check_build_stock, instance) + if created: + # A new Build has just been created - # Notify the responsible users that the build order has been created - InvenTree.helpers_model.notify_responsible(instance, sender, exclude=instance.issued_by) + # Generate initial BuildLine objects for the Build + instance.create_build_line_items() + + # Run checks on required parts + InvenTree.tasks.offload_task(build_tasks.check_build_stock, instance) + + # Notify the responsible users that the build order has been created + InvenTree.helpers_model.notify_responsible(instance, sender, exclude=instance.issued_by) + + else: + # Update BuildLine objects if the Build quantity has changed + instance.update_build_line_items() class BuildOrderAttachment(InvenTree.models.InvenTreeAttachment): @@ -1224,6 +1233,87 @@ class BuildOrderAttachment(InvenTree.models.InvenTreeAttachment): build = models.ForeignKey(Build, on_delete=models.CASCADE, related_name='attachments') +class BuildLine(models.Model): + """A BuildLine object links a BOMItem to a Build. + + When a new Build is created, the BuildLine objects are created automatically. + - A BuildLine entry is created for each BOM item associated with the part + - The quantity is set to the quantity required to build the part (including overage) + - BuildItem objects are associated with a particular BuildLine + + Once a build has been created, BuildLines can (optionally) be removed from the Build + + Attributes: + build: Link to a Build object + bom_item: Link to a BomItem object + quantity: Number of units required for the Build + """ + + class Meta: + """Model meta options""" + unique_together = [ + ('build', 'bom_item'), + ] + + @staticmethod + def get_api_url(): + """Return the API URL used to access this model""" + return reverse('api-build-line-list') + + build = models.ForeignKey( + Build, on_delete=models.CASCADE, + related_name='build_lines', help_text=_('Build object') + ) + + bom_item = models.ForeignKey( + part.models.BomItem, + on_delete=models.CASCADE, + related_name='build_lines', + ) + + quantity = models.DecimalField( + decimal_places=5, + max_digits=15, + default=1, + validators=[MinValueValidator(0)], + verbose_name=_('Quantity'), + help_text=_('Required quantity for build order'), + ) + + @property + def part(self): + """Return the sub_part reference from the link bom_item""" + return self.bom_item.sub_part + + def allocated_quantity(self): + """Calculate the total allocated quantity for this BuildLine""" + + # Queryset containing all BuildItem objects allocated against this BuildLine + allocations = self.allocations.all() + + allocated = allocations.aggregate( + q=Coalesce(Sum('quantity'), 0, output_field=models.DecimalField()) + ) + + return allocated['q'] + + def unallocated_quantity(self): + """Return the unallocated quantity for this BuildLine""" + return max(self.quantity - self.allocated_quantity(), 0) + + def is_fully_allocated(self): + """Return True if this BuildLine is fully allocated""" + + if self.bom_item.consumable: + return True + + return self.allocated_quantity() >= self.quantity + + def is_overallocated(self): + """Return True if this BuildLine is over-allocated""" + return self.allocated_quantity() > self.quantity + + class BuildItem(InvenTree.models.MetadataMixin, models.Model): """A BuildItem links multiple StockItem objects to a Build. @@ -1231,16 +1321,16 @@ class BuildItem(InvenTree.models.MetadataMixin, models.Model): Attributes: build: Link to a Build object - bom_item: Link to a BomItem object (may or may not point to the same part as the build) + build_line: Link to a BuildLine object (this is a "line item" within a build) stock_item: Link to a StockItem object quantity: Number of units allocated install_into: Destination stock item (or None) """ class Meta: - """Serializer metaclass""" + """Model meta options""" unique_together = [ - ('build', 'stock_item', 'install_into'), + ('build_line', 'stock_item', 'install_into'), ] @staticmethod @@ -1303,8 +1393,10 @@ class BuildItem(InvenTree.models.MetadataMixin, models.Model): 'quantity': _('Quantity must be 1 for serialized stock') }) - except (stock.models.StockItem.DoesNotExist, part.models.Part.DoesNotExist): - pass + except stock.models.StockItem.DoesNotExist: + raise ValidationError("Stock item must be specified") + except part.models.Part.DoesNotExist: + raise ValidationError("Part must be specified") """ Attempt to find the "BomItem" which links this BuildItem to the build. @@ -1312,7 +1404,7 @@ class BuildItem(InvenTree.models.MetadataMixin, models.Model): - If a BomItem is already set, and it is valid, then we are ok! """ - bom_item_valid = False + valid = False if self.bom_item and self.build: """ @@ -1327,39 +1419,51 @@ class BuildItem(InvenTree.models.MetadataMixin, models.Model): """ if self.build.part == self.bom_item.part: - bom_item_valid = self.bom_item.is_stock_item_valid(self.stock_item) + valid = self.bom_item.is_stock_item_valid(self.stock_item) elif self.bom_item.inherited: if self.build.part in self.bom_item.part.get_descendants(include_self=False): - bom_item_valid = self.bom_item.is_stock_item_valid(self.stock_item) + valid = self.bom_item.is_stock_item_valid(self.stock_item) # If the existing BomItem is *not* valid, try to find a match - if not bom_item_valid: + if not valid: if self.build and self.stock_item: ancestors = self.stock_item.part.get_ancestors(include_self=True, ascending=True) for idx, ancestor in enumerate(ancestors): - try: - bom_item = part.models.BomItem.objects.get(part=self.build.part, sub_part=ancestor) - except part.models.BomItem.DoesNotExist: - continue + build_line = BuildLine.objects.filter( + build=self.build, + bom_item__part=ancestor, + ) - # A matching BOM item has been found! - if idx == 0 or bom_item.allow_variants: - bom_item_valid = True - self.bom_item = bom_item - break + if build_line.exists(): + line = build_line.first() + + if idx == 0 or line.bom_item.allow_variants: + valid = True + self.build_line = line + break # BomItem did not exist or could not be validated. # Search for a new one - if not bom_item_valid: + if not valid: raise ValidationError({ - 'stock_item': _("Selected stock item not found in BOM") + 'stock_item': _("Selected stock item does not match BOM line") }) + @property + def build(self): + """Return the BuildOrder associated with this BuildItem""" + return self.build_line.build if self.build_line else None + + @property + def bom_item(self): + """Return the BomItem associated with this BuildItem""" + return self.build_line.bom_item if self.build_line else None + @transaction.atomic def complete_allocation(self, user, notes=''): """Complete the allocation of this BuildItem into the output stock item. @@ -1409,43 +1513,10 @@ class BuildItem(InvenTree.models.MetadataMixin, models.Model): } ) - def getStockItemThumbnail(self): - """Return qualified URL for part thumbnail image.""" - thumb_url = None - - if self.stock_item and self.stock_item.part: - try: - # Try to extract the thumbnail - thumb_url = self.stock_item.part.image.thumbnail.url - except Exception: - pass - - if thumb_url is None and self.bom_item and self.bom_item.sub_part: - try: - thumb_url = self.bom_item.sub_part.image.thumbnail.url - except Exception: - pass - - if thumb_url is not None: - return InvenTree.helpers.getMediaUrl(thumb_url) - else: - return InvenTree.helpers.getBlankThumbnail() - - build = models.ForeignKey( - Build, - on_delete=models.CASCADE, - related_name='allocated_stock', - verbose_name=_('Build'), - help_text=_('Build to allocate parts') - ) - - # Internal model which links part <-> sub_part - # We need to track this separately, to allow for "variant' stock - bom_item = models.ForeignKey( - part.models.BomItem, - on_delete=models.CASCADE, - related_name='allocate_build_items', - blank=True, null=True, + build_line = models.ForeignKey( + BuildLine, + on_delete=models.SET_NULL, null=True, + related_name='allocations', ) stock_item = models.ForeignKey( diff --git a/InvenTree/build/serializers.py b/InvenTree/build/serializers.py index 6ee194fcb8..428ec25cc5 100644 --- a/InvenTree/build/serializers.py +++ b/InvenTree/build/serializers.py @@ -4,8 +4,11 @@ from django.db import transaction from django.core.exceptions import ValidationError as DjangoValidationError from django.utils.translation import gettext_lazy as _ -from django.db.models import Case, When, Value +from django.db import models +from django.db.models import ExpressionWrapper, F, FloatField +from django.db.models import Case, Sum, When, Value from django.db.models import BooleanField +from django.db.models.functions import Coalesce from rest_framework import serializers from rest_framework.serializers import ValidationError @@ -20,11 +23,12 @@ from InvenTree.status_codes import StockStatus from stock.models import generate_batch_code, StockItem, StockLocation from stock.serializers import StockItemSerializerBrief, LocationSerializer -from part.models import BomItem -from part.serializers import PartSerializer, PartBriefSerializer +from common.serializers import ProjectCodeSerializer +import part.filters +from part.serializers import BomItemSerializer, PartSerializer, PartBriefSerializer from users.serializers import OwnerSerializer -from .models import Build, BuildItem, BuildOrderAttachment +from .models import Build, BuildLine, BuildItem, BuildOrderAttachment class BuildSerializer(InvenTreeModelSerializer): @@ -46,6 +50,8 @@ class BuildSerializer(InvenTreeModelSerializer): 'parent', 'part', 'part_detail', + 'project_code', + 'project_code_detail', 'overdue', 'reference', 'sales_order', @@ -87,6 +93,8 @@ class BuildSerializer(InvenTreeModelSerializer): barcode_hash = serializers.CharField(read_only=True) + project_code_detail = ProjectCodeSerializer(source='project_code', many=False, read_only=True) + @staticmethod def annotate_queryset(queryset): """Add custom annotations to the BuildSerializer queryset, performing database queries as efficiently as possible. @@ -170,7 +178,7 @@ class BuildOutputSerializer(serializers.Serializer): if to_complete: # The build output must have all tracked parts allocated - if not build.is_fully_allocated(output): + if not build.is_output_fully_allocated(output): # Check if the user has specified that incomplete allocations are ok accept_incomplete = InvenTree.helpers.str2bool(self.context['request'].data.get('accept_incomplete_allocation', False)) @@ -490,8 +498,8 @@ class BuildOutputCompleteSerializer(serializers.Serializer): ) status = serializers.ChoiceField( - choices=list(StockStatus.items()), - default=StockStatus.OK, + choices=StockStatus.items(), + default=StockStatus.OK.value, label=_("Status"), ) @@ -562,7 +570,7 @@ class BuildCancelSerializer(serializers.Serializer): build = self.context['build'] return { - 'has_allocated_stock': build.is_partially_allocated(None), + 'has_allocated_stock': build.is_partially_allocated(), 'incomplete_outputs': build.incomplete_count, 'completed_outputs': build.complete_count, } @@ -621,8 +629,8 @@ class BuildCompleteSerializer(serializers.Serializer): build = self.context['build'] return { - 'overallocated': build.has_overallocated_parts(), - 'allocated': build.are_untracked_parts_allocated(), + 'overallocated': build.is_overallocated(), + 'allocated': build.are_untracked_parts_allocated, 'remaining': build.remaining, 'incomplete': build.incomplete_count, } @@ -639,7 +647,7 @@ class BuildCompleteSerializer(serializers.Serializer): """Check if the 'accept_overallocated' field is required""" build = self.context['build'] - if build.has_overallocated_parts(output=None) and value == OverallocationChoice.REJECT: + if build.is_overallocated() and value == OverallocationChoice.REJECT: raise ValidationError(_('Some stock items have been overallocated')) return value @@ -655,7 +663,7 @@ class BuildCompleteSerializer(serializers.Serializer): """Check if the 'accept_unallocated' field is required""" build = self.context['build'] - if not build.are_untracked_parts_allocated() and not value: + if not build.are_untracked_parts_allocated and not value: raise ValidationError(_('Required stock has not been fully allocated')) return value @@ -706,12 +714,12 @@ class BuildUnallocationSerializer(serializers.Serializer): - bom_item: Filter against a particular BOM line item """ - bom_item = serializers.PrimaryKeyRelatedField( - queryset=BomItem.objects.all(), + build_line = serializers.PrimaryKeyRelatedField( + queryset=BuildLine.objects.all(), many=False, allow_null=True, required=False, - label=_('BOM Item'), + label=_('Build Line'), ) output = serializers.PrimaryKeyRelatedField( @@ -742,8 +750,8 @@ class BuildUnallocationSerializer(serializers.Serializer): data = self.validated_data - build.unallocateStock( - bom_item=data['bom_item'], + build.deallocate_stock( + build_line=data['build_line'], output=data['output'] ) @@ -754,34 +762,34 @@ class BuildAllocationItemSerializer(serializers.Serializer): class Meta: """Serializer metaclass""" fields = [ - 'bom_item', + 'build_item', 'stock_item', 'quantity', 'output', ] - bom_item = serializers.PrimaryKeyRelatedField( - queryset=BomItem.objects.all(), + build_line = serializers.PrimaryKeyRelatedField( + queryset=BuildLine.objects.all(), many=False, allow_null=False, required=True, - label=_('BOM Item'), + label=_('Build Line Item'), ) - def validate_bom_item(self, bom_item): + def validate_build_line(self, build_line): """Check if the parts match""" build = self.context['build'] # BomItem should point to the same 'part' as the parent build - if build.part != bom_item.part: + if build.part != build_line.bom_item.part: # If not, it may be marked as "inherited" from a parent part - if bom_item.inherited and build.part in bom_item.part.get_descendants(include_self=False): + if build_line.bom_item.inherited and build.part in build_line.bom_item.part.get_descendants(include_self=False): pass else: raise ValidationError(_("bom_item.part must point to the same part as the build order")) - return bom_item + return build_line stock_item = serializers.PrimaryKeyRelatedField( queryset=StockItem.objects.all(), @@ -824,8 +832,7 @@ class BuildAllocationItemSerializer(serializers.Serializer): """Perform data validation for this item""" super().validate(data) - build = self.context['build'] - bom_item = data['bom_item'] + build_line = data['build_line'] stock_item = data['stock_item'] quantity = data['quantity'] output = data.get('output', None) @@ -847,20 +854,20 @@ class BuildAllocationItemSerializer(serializers.Serializer): }) # Output *must* be set for trackable parts - if output is None and bom_item.sub_part.trackable: + if output is None and build_line.bom_item.sub_part.trackable: raise ValidationError({ 'output': _('Build output must be specified for allocation of tracked parts'), }) # Output *cannot* be set for un-tracked parts - if output is not None and not bom_item.sub_part.trackable: + if output is not None and not build_line.bom_item.sub_part.trackable: raise ValidationError({ 'output': _('Build output cannot be specified for allocation of untracked parts'), }) # Check if this allocation would be unique - if BuildItem.objects.filter(build=build, stock_item=stock_item, install_into=output).exists(): + if BuildItem.objects.filter(build_line=build_line, stock_item=stock_item, install_into=output).exists(): raise ValidationError(_('This stock item has already been allocated to this build output')) return data @@ -894,24 +901,21 @@ class BuildAllocationSerializer(serializers.Serializer): items = data.get('items', []) - build = self.context['build'] - with transaction.atomic(): for item in items: - bom_item = item['bom_item'] + build_line = item['build_line'] stock_item = item['stock_item'] quantity = item['quantity'] output = item.get('output', None) # Ignore allocation for consumable BOM items - if bom_item.consumable: + if build_line.bom_item.consumable: continue try: # Create a new BuildItem to allocate stock BuildItem.objects.create( - build=build, - bom_item=bom_item, + build_line=build_line, stock_item=stock_item, quantity=quantity, install_into=output @@ -993,43 +997,37 @@ class BuildItemSerializer(InvenTreeModelSerializer): model = BuildItem fields = [ 'pk', - 'bom_part', 'build', - 'build_detail', + 'build_line', 'install_into', - 'location', - 'location_detail', - 'part', - 'part_detail', 'stock_item', + 'quantity', + 'location_detail', + 'part_detail', 'stock_item_detail', - 'quantity' + 'build_detail', ] - bom_part = serializers.IntegerField(source='bom_item.sub_part.pk', read_only=True) - part = serializers.IntegerField(source='stock_item.part.pk', read_only=True) - location = serializers.IntegerField(source='stock_item.location.pk', read_only=True) + # Annotated fields + build = serializers.PrimaryKeyRelatedField(source='build_line.build', many=False, read_only=True) # Extra (optional) detail fields - part_detail = PartSerializer(source='stock_item.part', many=False, read_only=True) - build_detail = BuildSerializer(source='build', many=False, read_only=True) + 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""" - build_detail = kwargs.pop('build_detail', False) - part_detail = kwargs.pop('part_detail', False) - location_detail = kwargs.pop('location_detail', False) + part_detail = kwargs.pop('part_detail', True) + location_detail = kwargs.pop('location_detail', True) stock_detail = kwargs.pop('stock_detail', False) + build_detail = kwargs.pop('build_detail', False) super().__init__(*args, **kwargs) - if not build_detail: - self.fields.pop('build_detail') - if not part_detail: self.fields.pop('part_detail') @@ -1039,6 +1037,166 @@ class BuildItemSerializer(InvenTreeModelSerializer): if not stock_detail: self.fields.pop('stock_item_detail') + if not build_detail: + self.fields.pop('build_detail') + + +class BuildLineSerializer(InvenTreeModelSerializer): + """Serializer for a BuildItem object.""" + + class Meta: + """Serializer metaclass""" + + model = BuildLine + fields = [ + 'pk', + 'build', + 'bom_item', + 'bom_item_detail', + 'part_detail', + 'quantity', + 'allocations', + + # Annotated fields + 'allocated', + 'on_order', + 'available_stock', + 'available_substitute_stock', + 'available_variant_stock', + 'total_available_stock', + ] + + read_only_fields = [ + 'build', + 'bom_item', + 'allocations', + ] + + quantity = serializers.FloatField() + + # 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) + allocations = BuildItemSerializer(many=True, read_only=True) + + # Annotated (calculated) fields + allocated = serializers.FloatField(read_only=True) + on_order = serializers.FloatField(read_only=True) + available_stock = serializers.FloatField(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) + + @staticmethod + def annotate_queryset(queryset): + """Add extra annotations to the queryset: + + - allocated: Total stock quantity allocated against this build line + - available: Total stock available for allocation against this build line + - on_order: Total stock on order for this build line + """ + + queryset = queryset.select_related( + 'build', 'bom_item', + ) + + # Pre-fetch related fields + queryset = queryset.prefetch_related( + 'bom_item__sub_part', + 'bom_item__sub_part__stock_items', + 'bom_item__sub_part__stock_items__allocations', + 'bom_item__sub_part__stock_items__sales_order_allocations', + 'bom_item__sub_part__tags', + + 'bom_item__substitutes', + 'bom_item__substitutes__part__stock_items', + 'bom_item__substitutes__part__stock_items__allocations', + 'bom_item__substitutes__part__stock_items__sales_order_allocations', + + 'allocations', + 'allocations__stock_item', + 'allocations__stock_item__part', + 'allocations__stock_item__location', + 'allocations__stock_item__location__tags', + ) + + # Annotate the "allocated" quantity + # Difficulty: Easy + queryset = queryset.annotate( + allocated=Coalesce( + Sum('allocations__quantity'), 0, + output_field=models.DecimalField() + ), + ) + + ref = 'bom_item__sub_part__' + + # Annotate the "on_order" quantity + # Difficulty: Medium + queryset = queryset.annotate( + on_order=part.filters.annotate_on_order_quantity(reference=ref), + ) + + # Annotate the "available" quantity + # TODO: In the future, this should be refactored. + # TODO: Note that part.serializers.BomItemSerializer also has a similar annotation + queryset = queryset.alias( + total_stock=part.filters.annotate_total_stock(reference=ref), + allocated_to_sales_orders=part.filters.annotate_sales_order_allocations(reference=ref), + allocated_to_build_orders=part.filters.annotate_build_order_allocations(reference=ref), + ) + + # Calculate 'available_stock' based on previously annotated fields + queryset = queryset.annotate( + available_stock=ExpressionWrapper( + F('total_stock') - F('allocated_to_sales_orders') - F('allocated_to_build_orders'), + output_field=models.DecimalField(), + ) + ) + + ref = 'bom_item__substitutes__part__' + + # Extract similar information for any 'substitute' parts + queryset = queryset.alias( + substitute_stock=part.filters.annotate_total_stock(reference=ref), + substitute_build_allocations=part.filters.annotate_build_order_allocations(reference=ref), + substitute_sales_allocations=part.filters.annotate_sales_order_allocations(reference=ref) + ) + + # Calculate 'available_substitute_stock' field + queryset = queryset.annotate( + available_substitute_stock=ExpressionWrapper( + F('substitute_stock') - F('substitute_build_allocations') - F('substitute_sales_allocations'), + output_field=models.DecimalField(), + ) + ) + + # Annotate the queryset with 'available variant stock' information + variant_stock_query = part.filters.variant_stock_query(reference='bom_item__sub_part__') + + queryset = queryset.alias( + variant_stock_total=part.filters.annotate_variant_quantity(variant_stock_query, reference='quantity'), + variant_bo_allocations=part.filters.annotate_variant_quantity(variant_stock_query, reference='sales_order_allocations__quantity'), + variant_so_allocations=part.filters.annotate_variant_quantity(variant_stock_query, reference='allocations__quantity'), + ) + + queryset = queryset.annotate( + available_variant_stock=ExpressionWrapper( + F('variant_stock_total') - F('variant_bo_allocations') - F('variant_so_allocations'), + output_field=FloatField(), + ) + ) + + # Annotate with the 'total available stock' + queryset = queryset.annotate( + total_available_stock=ExpressionWrapper( + F('available_stock') + F('available_substitute_stock') + F('available_variant_stock'), + output_field=FloatField(), + ) + ) + + return queryset + class BuildAttachmentSerializer(InvenTreeAttachmentSerializer): """Serializer for a BuildAttachment.""" diff --git a/InvenTree/build/tasks.py b/InvenTree/build/tasks.py index 26ee2f1cda..6d63720e96 100644 --- a/InvenTree/build/tasks.py +++ b/InvenTree/build/tasks.py @@ -15,7 +15,7 @@ import build.models import InvenTree.email import InvenTree.helpers_model import InvenTree.tasks -from InvenTree.status_codes import BuildStatus +from InvenTree.status_codes import BuildStatusGroups from InvenTree.ready import isImportingData import part.models as part_models @@ -158,7 +158,7 @@ def check_overdue_build_orders(): overdue_orders = build.models.Build.objects.filter( target_date=yesterday, - status__in=BuildStatus.ACTIVE_CODES + status__in=BuildStatusGroups.ACTIVE_CODES ) for bo in overdue_orders: diff --git a/InvenTree/build/templates/build/build_base.html b/InvenTree/build/templates/build/build_base.html index b0aed7ba38..2f1ea421b6 100644 --- a/InvenTree/build/templates/build/build_base.html +++ b/InvenTree/build/templates/build/build_base.html @@ -2,7 +2,7 @@ {% load static %} {% load i18n %} -{% load status_codes %} +{% load generic %} {% load inventree_extras %} {% block page_title %} @@ -108,6 +108,7 @@ src="{% static 'img/blank_image.png' %}" {% trans "Build Description" %} {{ build.title }} + {% include "project_code_data.html" with instance=build %} {% include "barcode_data.html" with instance=build %} @@ -150,7 +151,7 @@ src="{% static 'img/blank_image.png' %}" {% trans "Status" %} - {% build_status_label build.status %} + {% status_label 'build' build.status %} {% if build.target_date %} @@ -174,7 +175,7 @@ src="{% static 'img/blank_image.png' %}" {% else %} {% endif %} - {% trans "Completed" %} + {% trans "Completed Outputs" %} {% progress_bar build.completed build.quantity id='build-completed' max_width='150px' %} {% if build.parent %} @@ -217,7 +218,7 @@ src="{% static 'img/blank_image.png' %}" {% block page_data %}

- {% build_status_label build.status large=True %} + {% status_label 'build' build.status large=True %} {% if build.is_overdue %} {% trans "Overdue" %} {% endif %} diff --git a/InvenTree/build/templates/build/detail.html b/InvenTree/build/templates/build/detail.html index 95ae46c8eb..7e6efff2af 100644 --- a/InvenTree/build/templates/build/detail.html +++ b/InvenTree/build/templates/build/detail.html @@ -2,7 +2,7 @@ {% load static %} {% load i18n %} {% load inventree_extras %} -{% load status_codes %} +{% load generic %} {% block sidebar %} {% include "build/sidebar.html" %} @@ -60,14 +60,14 @@ {% trans "Status" %} - {% build_status_label build.status %} + {% status_label 'build' build.status %} - {% trans "Completed" %} + {% trans "Completed Outputs" %} {% progress_bar build.completed build.quantity id='build-completed-2' max_width='150px' %} - {% if build.active and has_untracked_bom_items %} + {% if build.active %} {% trans "Allocated Parts" %} @@ -165,9 +165,7 @@
-
- {% include "filter_list.html" with id='sub-build' %} -
+ {% include "filter_list.html" with id='sub-build' %}
@@ -179,9 +177,9 @@

{% trans "Allocate Stock to Build" %}

{% include "spacer.html" %}
- {% if roles.build.add and build.active and has_untracked_bom_items %} -
- {% if has_untracked_bom_items %} - {% if build.active %} - {% if build.are_untracked_parts_allocated %} -
- {% trans "Untracked stock has been fully allocated for this Build Order" %} +
+ {% include "filter_list.html" with id='buildlines' %}
- {% else %} -
- {% trans "Untracked stock has not been fully allocated for this Build Order" %} -
- {% endif %} - {% endif %} -
-
-
- - {% include "filter_list.html" with id='builditems' %} -
-
-
-
- {% else %} -
- {% trans "This Build Order does not have any associated untracked BOM items" %} -
- {% endif %} +
@@ -246,37 +220,7 @@
-
- {% if build.active %} -
- - -
- - -
- {% include "filter_list.html" with id='incompletebuilditems' %} -
- {% endif %} -
+ {% include "filter_list.html" with id='incompletebuilditems' %}
@@ -362,9 +306,6 @@ onPanelLoad('completed', function() { build: {{ build.id }}, is_building: false, }, - buttons: [ - '#stock-options', - ], }); }); @@ -427,38 +368,15 @@ onPanelLoad('outputs', function() { {% endif %} }); -{% if build.active and has_untracked_bom_items %} - -function loadUntrackedStockTable() { - - var build_info = { - pk: {{ build.pk }}, - part: {{ build.part.pk }}, - quantity: {{ build.quantity }}, - {% if build.take_from %} - source_location: {{ build.take_from.pk }}, - {% endif %} - tracked_parts: false, - }; - - $('#allocation-table-untracked').bootstrapTable('destroy'); - - // Load allocation table for un-tracked parts - loadBuildOutputAllocationTable( - build_info, - null, - { - search: true, - } - ); -} - onPanelLoad('allocate', function() { - loadUntrackedStockTable(); + // Load the table of line items for this build order + loadBuildLineTable( + "#build-lines-table", + {{ build.pk }}, + {} + ); }); -{% endif %} - $('#btn-create-output').click(function() { createBuildOutput( @@ -480,66 +398,58 @@ $("#btn-auto-allocate").on('click', function() { {% if build.take_from %} location: {{ build.take_from.pk }}, {% endif %} - onSuccess: loadUntrackedStockTable, + onSuccess: function() { + $('#build-lines-table').bootstrapTable('refresh'); + }, } ); }); -$("#btn-allocate").on('click', function() { +function allocateSelectedLines() { - var bom_items = $("#allocation-table-untracked").bootstrapTable("getData"); + let data = getTableData('#build-lines-table'); - var incomplete_bom_items = []; + let unallocated_lines = []; - bom_items.forEach(function(bom_item) { - if (bom_item.required > bom_item.allocated) { - incomplete_bom_items.push(bom_item); + data.forEach(function(line) { + if (line.allocated < line.quantity) { + unallocated_lines.push(line); } }); - if (incomplete_bom_items.length == 0) { + if (unallocated_lines.length == 0) { showAlertDialog( '{% trans "Allocation Complete" %}', - '{% trans "All untracked stock items have been allocated" %}', + '{% trans "All lines have been fully allocated" %}', ); } else { allocateStockToBuild( {{ build.pk }}, - {{ build.part.pk }}, - incomplete_bom_items, + unallocated_lines, { {% if build.take_from %} source_location: {{ build.take_from.pk }}, {% endif %} - success: loadUntrackedStockTable, + success: function() { + $('#build-lines-table').bootstrapTable('refresh'); + }, } ); } -}); +} $('#btn-unallocate').on('click', function() { - unallocateStock({{ build.id }}, { + deallocateStock({{ build.id }}, { table: '#allocation-table-untracked', - onSuccess: loadUntrackedStockTable, + onSuccess: function() { + $('#build-lines-table').bootstrapTable('refresh'); + }, }); }); -$('#allocate-selected-items').click(function() { - - var bom_items = getTableData('#allocation-table-untracked'); - - allocateStockToBuild( - {{ build.pk }}, - {{ build.part.pk }}, - bom_items, - { - {% if build.take_from %} - source_location: {{ build.take_from.pk }}, - {% endif %} - success: loadUntrackedStockTable, - } - ); +$("#btn-allocate").on('click', function() { + allocateSelectedLines(); }); {% endif %} diff --git a/InvenTree/build/templates/build/index.html b/InvenTree/build/templates/build/index.html index 5094c6a45a..f4a266ecca 100644 --- a/InvenTree/build/templates/build/index.html +++ b/InvenTree/build/templates/build/index.html @@ -24,11 +24,7 @@
-
-
- {% include "filter_list.html" with id="build" %} -
-
+ {% include "filter_list.html" with id="build" %}
diff --git a/InvenTree/build/templates/build/sidebar.html b/InvenTree/build/templates/build/sidebar.html index a7b7b15df7..c038b7782a 100644 --- a/InvenTree/build/templates/build/sidebar.html +++ b/InvenTree/build/templates/build/sidebar.html @@ -4,18 +4,16 @@ {% trans "Build Order Details" as text %} {% include "sidebar_item.html" with label='details' text=text icon="fa-info-circle" %} -{% if build.active %} +{% if build.is_active %} {% trans "Allocate Stock" as text %} {% include "sidebar_item.html" with label='allocate' text=text icon="fa-tasks" %} -{% endif %} -{% trans "Consumed Stock" as text %} -{% include "sidebar_item.html" with label='consumed' text=text icon="fa-list" %} -{% if build.is_active %} {% 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" %} +{% trans "Consumed Stock" as text %} +{% include "sidebar_item.html" with label='consumed' text=text icon="fa-list" %} {% 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/InvenTree/build/test_api.py b/InvenTree/build/test_api.py index 98b59ce8bd..c01f633fad 100644 --- a/InvenTree/build/test_api.py +++ b/InvenTree/build/test_api.py @@ -298,7 +298,7 @@ class BuildTest(BuildAPITest): expected_code=400, ) - bo.status = BuildStatus.CANCELLED + bo.status = BuildStatus.CANCELLED.value bo.save() # Now, we should be able to delete @@ -582,6 +582,9 @@ class BuildAllocationTest(BuildAPITest): self.build = Build.objects.get(pk=1) + # Regenerate BuildLine objects + self.build.create_build_line_items() + # Record number of build items which exist at the start of each test self.n = BuildItem.objects.count() @@ -593,7 +596,7 @@ class BuildAllocationTest(BuildAPITest): self.assertEqual(self.build.part.bom_items.count(), 4) # No items yet allocated to this build - self.assertEqual(self.build.allocated_stock.count(), 0) + self.assertEqual(BuildItem.objects.filter(build_line__build=self.build).count(), 0) def test_get(self): """A GET request to the endpoint should return an error.""" @@ -634,7 +637,7 @@ class BuildAllocationTest(BuildAPITest): { "items": [ { - "bom_item": 1, # M2x4 LPHS + "build_line": 1, # M2x4 LPHS "stock_item": 2, # 5,000 screws available } ] @@ -658,7 +661,7 @@ class BuildAllocationTest(BuildAPITest): expected_code=400 ).data - self.assertIn("This field is required", str(data["items"][0]["bom_item"])) + self.assertIn("This field is required", str(data["items"][0]["build_line"])) # Missing stock_item data = self.post( @@ -666,7 +669,7 @@ class BuildAllocationTest(BuildAPITest): { "items": [ { - "bom_item": 1, + "build_line": 1, "quantity": 5000, } ] @@ -681,12 +684,25 @@ class BuildAllocationTest(BuildAPITest): def test_invalid_bom_item(self): """Test by passing an invalid BOM item.""" + + # Find the right (in this case, wrong) BuildLine instance + + si = StockItem.objects.get(pk=11) + lines = self.build.build_lines.all() + + wrong_line = None + + for line in lines: + if line.bom_item.sub_part.pk != si.pk: + wrong_line = line + break + data = self.post( self.url, { "items": [ { - "bom_item": 5, + "build_line": wrong_line.pk, "stock_item": 11, "quantity": 500, } @@ -695,19 +711,31 @@ class BuildAllocationTest(BuildAPITest): expected_code=400 ).data - self.assertIn('must point to the same part', str(data)) + self.assertIn('Selected stock item does not match BOM line', str(data)) def test_valid_data(self): """Test with valid data. This should result in creation of a new BuildItem object """ + + # Find the correct BuildLine + si = StockItem.objects.get(pk=2) + + right_line = None + + for line in self.build.build_lines.all(): + + if line.bom_item.sub_part.pk == si.part.pk: + right_line = line + break + self.post( self.url, { "items": [ { - "bom_item": 1, + "build_line": right_line.pk, "stock_item": 2, "quantity": 5000, } @@ -749,16 +777,22 @@ class BuildOverallocationTest(BuildAPITest): cls.state = {} cls.allocation = {} - for i, bi in enumerate(cls.build.part.bom_items.all()): - rq = cls.build.required_quantity(bi, None) + i + 1 - si = StockItem.objects.filter(part=bi.sub_part, quantity__gte=rq).first() + items_to_create = [] - cls.state[bi.sub_part] = (si, si.quantity, rq) - BuildItem.objects.create( - build=cls.build, + for idx, build_line in enumerate(cls.build.build_lines.all()): + required = build_line.quantity + idx + 1 + sub_part = build_line.bom_item.sub_part + si = StockItem.objects.filter(part=sub_part, quantity__gte=required).first() + + cls.state[sub_part] = (si, si.quantity, required) + + items_to_create.append(BuildItem( + build_line=build_line, stock_item=si, - quantity=rq, - ) + quantity=required, + )) + + BuildItem.objects.bulk_create(items_to_create) # create and complete outputs cls.build.create_build_output(cls.build.quantity) @@ -822,9 +856,10 @@ class BuildOverallocationTest(BuildAPITest): self.assertTrue(self.build.is_complete) # Check stock items have reduced only by bom requirement (overallocation trimmed) - for bi in self.build.part.bom_items.all(): - si, oq, _ = self.state[bi.sub_part] - rq = self.build.required_quantity(bi, None) + for line in self.build.build_lines.all(): + + si, oq, _ = self.state[line.bom_item.sub_part] + rq = line.quantity si.refresh_from_db() self.assertEqual(si.quantity, oq - rq) @@ -843,7 +878,7 @@ class BuildListTest(BuildAPITest): builds = self.get(self.url, data={'active': True}) self.assertEqual(len(builds.data), 1) - builds = self.get(self.url, data={'status': BuildStatus.COMPLETE}) + builds = self.get(self.url, data={'status': BuildStatus.COMPLETE.value}) self.assertEqual(len(builds.data), 4) builds = self.get(self.url, data={'overdue': False}) @@ -863,7 +898,7 @@ class BuildListTest(BuildAPITest): reference="BO-0006", quantity=10, title='Just some thing', - status=BuildStatus.PRODUCTION, + status=BuildStatus.PRODUCTION.value, target_date=in_the_past ) diff --git a/InvenTree/build/test_build.py b/InvenTree/build/test_build.py index 6d59a65e54..26659d82f0 100644 --- a/InvenTree/build/test_build.py +++ b/InvenTree/build/test_build.py @@ -13,7 +13,7 @@ from InvenTree import status_codes as status import common.models import build.tasks -from build.models import Build, BuildItem, generate_next_build_reference +from build.models import Build, BuildItem, BuildLine, generate_next_build_reference from part.models import Part, BomItem, BomItemSubstitute from stock.models import StockItem from users.models import Owner @@ -107,6 +107,11 @@ class BuildTestBase(TestCase): issued_by=get_user_model().objects.get(pk=1), ) + # Create some BuildLine items we can use later on + cls.line_1 = BuildLine.objects.get(build=cls.build, bom_item=cls.bom_item_1) + cls.line_2 = BuildLine.objects.get(build=cls.build, bom_item=cls.bom_item_2) + cls.line_3 = BuildLine.objects.get(build=cls.build, bom_item=cls.bom_item_3) + # Create some build output (StockItem) objects cls.output_1 = StockItem.objects.create( part=cls.assembly, @@ -248,13 +253,10 @@ class BuildTest(BuildTestBase): for output in self.build.get_build_outputs().all(): self.assertFalse(self.build.is_fully_allocated(output)) - self.assertFalse(self.build.is_bom_item_allocated(self.bom_item_1, self.output_1)) - self.assertFalse(self.build.is_bom_item_allocated(self.bom_item_2, self.output_2)) + self.assertFalse(self.line_1.is_fully_allocated()) + self.assertFalse(self.line_2.is_overallocated()) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_1, self.output_1), 15) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_1, self.output_2), 35) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_2, self.output_1), 9) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_2, self.output_2), 21) + self.assertEqual(self.line_1.allocated_quantity(), 0) self.assertFalse(self.build.is_complete) @@ -264,25 +266,25 @@ class BuildTest(BuildTestBase): stock = StockItem.objects.create(part=self.assembly, quantity=99) # Create a BuiltItem which points to an invalid StockItem - b = BuildItem(stock_item=stock, build=self.build, quantity=10) + b = BuildItem(stock_item=stock, build_line=self.line_2, quantity=10) with self.assertRaises(ValidationError): b.save() # Create a BuildItem which has too much stock assigned - b = BuildItem(stock_item=self.stock_1_1, build=self.build, quantity=9999999) + b = BuildItem(stock_item=self.stock_1_1, build_line=self.line_1, quantity=9999999) with self.assertRaises(ValidationError): b.clean() # Negative stock? Not on my watch! - b = BuildItem(stock_item=self.stock_1_1, build=self.build, quantity=-99) + b = BuildItem(stock_item=self.stock_1_1, build_line=self.line_1, quantity=-99) with self.assertRaises(ValidationError): b.clean() # Ok, what about we make one that does *not* fail? - b = BuildItem(stock_item=self.stock_1_2, build=self.build, install_into=self.output_1, quantity=10) + b = BuildItem(stock_item=self.stock_1_2, build_line=self.line_1, install_into=self.output_1, quantity=10) b.save() def test_duplicate_bom_line(self): @@ -302,13 +304,24 @@ class BuildTest(BuildTestBase): allocations: Map of {StockItem: quantity} """ + items_to_create = [] + for item, quantity in allocations.items(): - BuildItem.objects.create( + + # Find an appropriate BuildLine to allocate against + line = BuildLine.objects.filter( build=self.build, + bom_item__sub_part=item.part + ).first() + + items_to_create.append(BuildItem( + build_line=line, stock_item=item, quantity=quantity, install_into=output - ) + )) + + BuildItem.objects.bulk_create(items_to_create) def test_partial_allocation(self): """Test partial allocation of stock""" @@ -321,7 +334,7 @@ class BuildTest(BuildTestBase): } ) - self.assertTrue(self.build.is_fully_allocated(self.output_1)) + self.assertTrue(self.build.is_output_fully_allocated(self.output_1)) # Partially allocate tracked stock against build output 2 self.allocate_stock( @@ -331,7 +344,7 @@ class BuildTest(BuildTestBase): } ) - self.assertFalse(self.build.is_fully_allocated(self.output_2)) + self.assertFalse(self.build.is_output_fully_allocated(self.output_2)) # Partially allocate untracked stock against build self.allocate_stock( @@ -342,11 +355,12 @@ class BuildTest(BuildTestBase): } ) - self.assertFalse(self.build.is_fully_allocated(None)) + self.assertFalse(self.build.is_output_fully_allocated(None)) - unallocated = self.build.unallocated_bom_items(None) + # Find lines which are *not* fully allocated + unallocated = self.build.unallocated_lines() - self.assertEqual(len(unallocated), 2) + self.assertEqual(len(unallocated), 3) self.allocate_stock( None, @@ -357,17 +371,17 @@ class BuildTest(BuildTestBase): self.assertFalse(self.build.is_fully_allocated(None)) - unallocated = self.build.unallocated_bom_items(None) - - self.assertEqual(len(unallocated), 1) - - self.build.unallocateStock() - - unallocated = self.build.unallocated_bom_items(None) + unallocated = self.build.unallocated_lines() self.assertEqual(len(unallocated), 2) - self.assertFalse(self.build.are_untracked_parts_allocated()) + self.build.deallocate_stock() + + unallocated = self.build.unallocated_lines(None) + + self.assertEqual(len(unallocated), 3) + + self.assertFalse(self.build.is_fully_allocated(tracked=False)) self.stock_2_1.quantity = 500 self.stock_2_1.save() @@ -381,7 +395,7 @@ class BuildTest(BuildTestBase): } ) - self.assertTrue(self.build.are_untracked_parts_allocated()) + self.assertTrue(self.build.is_fully_allocated(tracked=False)) def test_overallocation_and_trim(self): """Test overallocation of stock and trim function""" @@ -425,10 +439,10 @@ class BuildTest(BuildTestBase): } ) - self.assertTrue(self.build.has_overallocated_parts(None)) + self.assertTrue(self.build.is_overallocated()) self.build.trim_allocated_stock() - self.assertFalse(self.build.has_overallocated_parts(None)) + self.assertFalse(self.build.is_overallocated()) self.build.complete_build_output(self.output_1, None) self.build.complete_build_output(self.output_2, None) @@ -587,7 +601,7 @@ class BuildTest(BuildTestBase): """Unit tests for the metadata field.""" # Make sure a BuildItem exists before trying to run this test - b = BuildItem(stock_item=self.stock_1_2, build=self.build, install_into=self.output_1, quantity=10) + b = BuildItem(stock_item=self.stock_1_2, build_line=self.line_1, install_into=self.output_1, quantity=10) b.save() for model in [Build, BuildItem]: @@ -644,7 +658,7 @@ class AutoAllocationTests(BuildTestBase): # No build item allocations have been made against the build self.assertEqual(self.build.allocated_stock.count(), 0) - self.assertFalse(self.build.are_untracked_parts_allocated()) + self.assertFalse(self.build.is_fully_allocated(tracked=False)) # Stock is not interchangeable, nothing will happen self.build.auto_allocate_stock( @@ -652,15 +666,15 @@ class AutoAllocationTests(BuildTestBase): substitutes=False, ) - self.assertFalse(self.build.are_untracked_parts_allocated()) + self.assertFalse(self.build.is_fully_allocated(tracked=False)) self.assertEqual(self.build.allocated_stock.count(), 0) - self.assertFalse(self.build.is_bom_item_allocated(self.bom_item_1)) - self.assertFalse(self.build.is_bom_item_allocated(self.bom_item_2)) + self.assertFalse(self.line_1.is_fully_allocated()) + self.assertFalse(self.line_2.is_fully_allocated()) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_1), 50) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_2), 30) + self.assertEqual(self.line_1.unallocated_quantity(), 50) + self.assertEqual(self.line_2.unallocated_quantity(), 30) # This time we expect stock to be allocated! self.build.auto_allocate_stock( @@ -669,15 +683,15 @@ class AutoAllocationTests(BuildTestBase): optional_items=True, ) - self.assertFalse(self.build.are_untracked_parts_allocated()) + self.assertFalse(self.build.is_fully_allocated(tracked=False)) self.assertEqual(self.build.allocated_stock.count(), 7) - self.assertTrue(self.build.is_bom_item_allocated(self.bom_item_1)) - self.assertFalse(self.build.is_bom_item_allocated(self.bom_item_2)) + self.assertTrue(self.line_1.is_fully_allocated()) + self.assertFalse(self.line_2.is_fully_allocated()) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_1), 0) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_2), 5) + self.assertEqual(self.line_1.unallocated_quantity(), 0) + self.assertEqual(self.line_2.unallocated_quantity(), 5) # This time, allow substitute parts to be used! self.build.auto_allocate_stock( @@ -685,12 +699,11 @@ class AutoAllocationTests(BuildTestBase): substitutes=True, ) - # self.assertEqual(self.build.allocated_stock.count(), 8) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_1), 0) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_2), 5.0) + self.assertEqual(self.line_1.unallocated_quantity(), 0) + self.assertEqual(self.line_2.unallocated_quantity(), 5) - self.assertTrue(self.build.is_bom_item_allocated(self.bom_item_1)) - self.assertFalse(self.build.is_bom_item_allocated(self.bom_item_2)) + self.assertTrue(self.line_1.is_fully_allocated()) + self.assertFalse(self.line_2.is_fully_allocated()) def test_fully_auto(self): """We should be able to auto-allocate against a build in a single go""" @@ -701,7 +714,7 @@ class AutoAllocationTests(BuildTestBase): optional_items=True, ) - self.assertTrue(self.build.are_untracked_parts_allocated()) + self.assertTrue(self.build.is_fully_allocated(tracked=False)) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_1), 0) - self.assertEqual(self.build.unallocated_quantity(self.bom_item_2), 0) + self.assertEqual(self.line_1.unallocated_quantity(), 0) + self.assertEqual(self.line_2.unallocated_quantity(), 0) diff --git a/InvenTree/build/test_migrations.py b/InvenTree/build/test_migrations.py index 1072e2ae61..440074d4d7 100644 --- a/InvenTree/build/test_migrations.py +++ b/InvenTree/build/test_migrations.py @@ -19,22 +19,15 @@ class TestForwardMigrations(MigratorTestCase): name='Widget', description='Buildable Part', active=True, + level=0, lft=0, rght=0, tree_id=0, ) - with self.assertRaises(TypeError): - # Cannot set the 'assembly' field as it hasn't been added to the db schema - Part.objects.create( - name='Blorb', - description='ABCDE', - assembly=True - ) - Build = self.old_state.apps.get_model('build', 'build') Build.objects.create( part=buildable_part, title='A build of some stuff', - quantity=50 + quantity=50, ) def test_items_exist(self): @@ -67,7 +60,8 @@ class TestReferenceMigration(MigratorTestCase): part = Part.objects.create( name='Part', - description='A test part' + description='A test part', + level=0, lft=0, rght=0, tree_id=0, ) Build = self.old_state.apps.get_model('build', 'build') @@ -158,3 +152,139 @@ class TestReferencePatternMigration(MigratorTestCase): pattern = Setting.objects.get(key='BUILDORDER_REFERENCE_PATTERN') self.assertEqual(pattern.value, 'BuildOrder-{ref:04d}') + + +class TestBuildLineCreation(MigratorTestCase): + """Test that build lines are correctly created for existing builds. + + Ref: https://github.com/inventree/InvenTree/pull/4855 + + This PR added the 'BuildLine' model, which acts as a link between a Build and a BomItem. + + - Migration 0044 creates BuildLine objects for existing builds. + - Migration 0046 links any existing BuildItem objects to corresponding BuildLine + """ + + migrate_from = ('build', '0041_alter_build_title') + migrate_to = ('build', '0047_auto_20230606_1058') + + def prepare(self): + """Create data to work with""" + + # Model references + Part = self.old_state.apps.get_model('part', 'part') + BomItem = self.old_state.apps.get_model('part', 'bomitem') + Build = self.old_state.apps.get_model('build', 'build') + BuildItem = self.old_state.apps.get_model('build', 'builditem') + StockItem = self.old_state.apps.get_model('stock', 'stockitem') + + # The "BuildLine" model does not exist yet + with self.assertRaises(LookupError): + self.old_state.apps.get_model('build', 'buildline') + + # Create a part + assembly = Part.objects.create( + name='Assembly', + description='An assembly', + assembly=True, + level=0, lft=0, rght=0, tree_id=0, + ) + + # Create components + for idx in range(1, 11): + part = Part.objects.create( + name=f"Part {idx}", + description=f"Part {idx}", + level=0, lft=0, rght=0, tree_id=0, + ) + + # Create plentiful stock + StockItem.objects.create( + part=part, + quantity=1000, + level=0, lft=0, rght=0, tree_id=0, + ) + + # Create a BOM item + BomItem.objects.create( + part=assembly, + sub_part=part, + quantity=idx, + reference=f"REF-{idx}", + ) + + # Create some builds + for idx in range(1, 4): + build = Build.objects.create( + part=assembly, + title=f"Build {idx}", + quantity=idx * 10, + reference=f"REF-{idx}", + level=0, lft=0, rght=0, tree_id=0, + ) + + # Allocate stock to the build + for bom_item in BomItem.objects.all(): + stock_item = StockItem.objects.get(part=bom_item.sub_part) + BuildItem.objects.create( + build=build, + bom_item=bom_item, + stock_item=stock_item, + quantity=bom_item.quantity, + ) + + def test_build_line_creation(self): + """Test that the BuildLine objects have been created correctly""" + + Build = self.new_state.apps.get_model('build', 'build') + BomItem = self.new_state.apps.get_model('part', 'bomitem') + BuildLine = self.new_state.apps.get_model('build', 'buildline') + BuildItem = self.new_state.apps.get_model('build', 'builditem') + StockItem = self.new_state.apps.get_model('stock', 'stockitem') + + # There should be 3x builds + self.assertEqual(Build.objects.count(), 3) + + # 10x BOMItem objects + self.assertEqual(BomItem.objects.count(), 10) + + # 10x StockItem objects + self.assertEqual(StockItem.objects.count(), 10) + + # And 30x BuildLine items (1 for each BomItem for each Build) + self.assertEqual(BuildLine.objects.count(), 30) + + # And 30x BuildItem objects (1 for each BomItem for each Build) + self.assertEqual(BuildItem.objects.count(), 30) + + # Check that each BuildItem has been linked to a BuildLine + for item in BuildItem.objects.all(): + self.assertIsNotNone(item.build_line) + self.assertEqual( + item.stock_item.part, + item.build_line.bom_item.sub_part, + ) + + item = BuildItem.objects.first() + + # Check that the "build" field has been removed + with self.assertRaises(AttributeError): + item.build + + # Check that the "bom_item" field has been removed + with self.assertRaises(AttributeError): + item.bom_item + + # Check that each BuildLine is correctly configured + for line in BuildLine.objects.all(): + # Check that the quantity is correct + self.assertEqual( + line.quantity, + line.build.quantity * line.bom_item.quantity, + ) + + # Check that the linked parts are correct + self.assertEqual( + line.build.part, + line.bom_item.part, + ) diff --git a/InvenTree/build/views.py b/InvenTree/build/views.py index 4de664d2a1..36422e1688 100644 --- a/InvenTree/build/views.py +++ b/InvenTree/build/views.py @@ -39,7 +39,5 @@ class BuildDetail(InvenTreeRoleMixin, InvenTreePluginViewMixin, DetailView): part = build.part ctx['part'] = part - ctx['has_tracked_bom_items'] = build.has_tracked_bom_items() - ctx['has_untracked_bom_items'] = build.has_untracked_bom_items() return ctx diff --git a/InvenTree/common/api.py b/InvenTree/common/api.py index 6f67af2dd7..abde58501f 100644 --- a/InvenTree/common/api.py +++ b/InvenTree/common/api.py @@ -2,6 +2,7 @@ import json +from django.conf import settings from django.http.response import HttpResponse from django.urls import include, path, re_path from django.utils.decorators import method_decorator @@ -121,8 +122,13 @@ class CurrencyExchangeView(APIView): # Information on last update try: - backend = ExchangeBackend.objects.get(name='InvenTreeExchange') - updated = backend.last_update + backend = ExchangeBackend.objects.filter(name='InvenTreeExchange') + + if backend.exists(): + backend = backend.first() + updated = backend.last_update + else: + updated = None except Exception: updated = None @@ -480,6 +486,29 @@ class ProjectCodeDetail(RetrieveUpdateDestroyAPI): permission_classes = [permissions.IsAuthenticated, IsStaffOrReadOnly] +class FlagList(ListAPI): + """List view for feature flags.""" + + queryset = settings.FLAGS + serializer_class = common.serializers.FlagSerializer + permission_classes = [permissions.AllowAny, ] + + +class FlagDetail(RetrieveAPI): + """Detail view for an individual feature flag.""" + + serializer_class = common.serializers.FlagSerializer + permission_classes = [permissions.AllowAny, ] + + def get_object(self): + """Attempt to find a config object with the provided key.""" + key = self.kwargs['key'] + value = settings.FLAGS.get(key, None) + if not value: + raise NotFound() + return {key: value} + + settings_api_urls = [ # User settings re_path(r'^user/', include([ @@ -496,7 +525,7 @@ settings_api_urls = [ path(r'/', NotificationUserSettingsDetail.as_view(), name='api-notification-setting-detail'), # Notification Settings List - re_path(r'^.*$', NotificationUserSettingsList.as_view(), name='api-notifcation-setting-list'), + re_path(r'^.*$', NotificationUserSettingsList.as_view(), name='api-notification-setting-list'), ])), # Global settings @@ -552,6 +581,11 @@ common_api_urls = [ re_path(r'^.*$', NewsFeedEntryList.as_view(), name='api-news-list'), ])), + # Flags + path('flags/', include([ + path('/', FlagDetail.as_view(), name='api-flag-detail'), + re_path(r'^.*$', FlagList.as_view(), name='api-flag-list'), + ])), ] admin_api_urls = [ diff --git a/InvenTree/common/migrations/0001_initial.py b/InvenTree/common/migrations/0001_initial.py index a3a357b86f..089844a70d 100644 --- a/InvenTree/common/migrations/0001_initial.py +++ b/InvenTree/common/migrations/0001_initial.py @@ -4,15 +4,40 @@ import django.core.validators from django.db import migrations, models +class CreateModelOrSkip(migrations.CreateModel): + """Custom migration operation to create a model if it does not already exist. + + - If the model already exists, the migration is skipped + - This class has been added to deal with some errors being thrown in CI tests + - The 'common_currency' table doesn't exist anymore anyway! + - In the future, these migrations will be squashed + """ + + def database_forwards(self, app_label, schema_editor, from_state, to_state) -> None: + """Forwards migration *attempts* to create the model, but will fail gracefully if it already exists""" + + try: + super().database_forwards(app_label, schema_editor, from_state, to_state) + except Exception: + pass + + def state_forwards(self, app_label, state) -> None: + try: + super().state_forwards(app_label, state) + except Exception: + pass + + class Migration(migrations.Migration): initial = True + atomic = False dependencies = [ ] operations = [ - migrations.CreateModel( + CreateModelOrSkip( name='Currency', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), diff --git a/InvenTree/common/migrations/0017_notesimage.py b/InvenTree/common/migrations/0017_notesimage.py index c9e08af461..8c9aff2f6d 100644 --- a/InvenTree/common/migrations/0017_notesimage.py +++ b/InvenTree/common/migrations/0017_notesimage.py @@ -1,4 +1,4 @@ -# Generated by Django 3.2.18 on 2023-04-17 05:54 +# Generated by Django 3.2.18 on 2023-04-17 05:55 from django.conf import settings from django.db import migrations, models diff --git a/InvenTree/common/models.py b/InvenTree/common/models.py index 0340792101..2524ba7503 100644 --- a/InvenTree/common/models.py +++ b/InvenTree/common/models.py @@ -127,6 +127,7 @@ class SettingsKeyType(TypedDict, total=False): before_save: Function that gets called after save with *args, **kwargs (optional) after_save: Function that gets called after save with *args, **kwargs (optional) protected: Protected values are not returned to the client, instead "***" is returned (optional, default: False) + required: Is this setting required to work, can be used in combination with .check_all_settings(...) (optional, default: False) model: Auto create a dropdown menu to select an associated model instance (e.g. 'company.company', 'auth.user' and 'auth.group' are possible too, optional) """ @@ -140,6 +141,7 @@ class SettingsKeyType(TypedDict, total=False): before_save: Callable[..., None] after_save: Callable[..., None] protected: bool + required: bool model: str @@ -250,13 +252,15 @@ class BaseInvenTreeSetting(models.Model): return {key: getattr(self, key, None) for key in self.extra_unique_fields if hasattr(self, key)} @classmethod - def allValues(cls, exclude_hidden=False, **kwargs): - """Return a dict of "all" defined global settings. + def all_settings(cls, *, exclude_hidden=False, settings_definition: Union[Dict[str, SettingsKeyType], None] = None, **kwargs): + """Return a list of "all" defined settings. This performs a single database lookup, and then any settings which are not *in* the database are assigned their default values """ + filters = cls.get_filters(**kwargs) + results = cls.objects.all() if exclude_hidden: @@ -264,45 +268,83 @@ class BaseInvenTreeSetting(models.Model): results = results.exclude(key__startswith='_') # Optionally filter by other keys - results = results.filter(**cls.get_filters(**kwargs)) + results = results.filter(**filters) + + settings: Dict[str, BaseInvenTreeSetting] = {} # Query the database - settings = {} - for setting in results: if setting.key: - settings[setting.key.upper()] = setting.value + settings[setting.key.upper()] = setting # Specify any "default" values which are not in the database - for key in cls.SETTINGS.keys(): - + settings_definition = settings_definition or cls.SETTINGS + for key, setting in settings_definition.items(): if key.upper() not in settings: - settings[key.upper()] = cls.get_setting_default(key) + settings[key.upper()] = cls( + key=key.upper(), + value=cls.get_setting_default(key, **filters), + **filters + ) - if exclude_hidden: - hidden = cls.SETTINGS[key].get('hidden', False) + # remove any hidden settings + if exclude_hidden and setting.get("hidden", False): + del settings[key.upper()] - if hidden: - # Remove hidden items - del settings[key.upper()] + # format settings values and remove protected + for key, setting in settings.items(): + validator = cls.get_setting_validator(key, **filters) - for key, value in settings.items(): - validator = cls.get_setting_validator(key) - - if cls.is_protected(key): - value = '***' + if cls.is_protected(key, **filters) and setting.value != "": + setting.value = '***' elif cls.validator_is_bool(validator): - value = InvenTree.helpers.str2bool(value) + setting.value = InvenTree.helpers.str2bool(setting.value) elif cls.validator_is_int(validator): try: - value = int(value) + setting.value = int(setting.value) except ValueError: - value = cls.get_setting_default(key) - - settings[key] = value + setting.value = cls.get_setting_default(key, **filters) return settings + @classmethod + def allValues(cls, *, exclude_hidden=False, settings_definition: Union[Dict[str, SettingsKeyType], None] = None, **kwargs): + """Return a dict of "all" defined global settings. + + This performs a single database lookup, + and then any settings which are not *in* the database + are assigned their default values + """ + all_settings = cls.all_settings(exclude_hidden=exclude_hidden, settings_definition=settings_definition, **kwargs) + + settings: Dict[str, Any] = {} + + for key, setting in all_settings.items(): + settings[key] = setting.value + + return settings + + @classmethod + def check_all_settings(cls, *, exclude_hidden=False, settings_definition: Union[Dict[str, SettingsKeyType], None] = None, **kwargs): + """Check if all required settings are set by definition. + + Returns: + is_valid: Are all required settings defined + missing_settings: List of all settings that are missing (empty if is_valid is 'True') + """ + all_settings = cls.all_settings(exclude_hidden=exclude_hidden, settings_definition=settings_definition, **kwargs) + + missing_settings: List[str] = [] + + for setting in all_settings.values(): + if setting.required: + value = setting.value or cls.get_setting_default(setting.key, **kwargs) + + if value == "": + missing_settings.append(setting.key.upper()) + + return len(missing_settings) == 0, missing_settings + @classmethod def get_setting_definition(cls, key, **kwargs): """Return the 'definition' of a particular settings value, as a dict object. @@ -829,7 +871,7 @@ class BaseInvenTreeSetting(models.Model): @classmethod def is_protected(cls, key, **kwargs): """Check if the setting value is protected.""" - setting = cls.get_setting_definition(key, **kwargs) + setting = cls.get_setting_definition(key, **cls.get_filters(**kwargs)) return setting.get('protected', False) @@ -838,6 +880,18 @@ class BaseInvenTreeSetting(models.Model): """Returns if setting is protected from rendering.""" return self.__class__.is_protected(self.key, **self.get_filters_for_instance()) + @classmethod + def is_required(cls, key, **kwargs): + """Check if this setting value is required.""" + setting = cls.get_setting_definition(key, **cls.get_filters(**kwargs)) + + return setting.get("required", False) + + @property + def required(self): + """Returns if setting is required.""" + return self.__class__.is_required(self.key, **self.get_filters_for_instance()) + def settings_group_options(): """Build up group tuple for settings based on your choices.""" @@ -1249,6 +1303,13 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'default': '', }, + 'PART_PARAMETER_ENFORCE_UNITS': { + 'name': _('Enforce Parameter Units'), + 'description': _('If units are provided, parameter values must match the specified units'), + 'default': True, + 'validator': bool, + }, + 'PRICING_DECIMAL_PLACES_MIN': { 'name': _('Minimum Pricing Decimal Places'), 'description': _('Minimum number of decimal places to display when rendering pricing data'), @@ -1467,6 +1528,13 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'default': '', }, + 'STOCK_SHOW_INSTALLED_ITEMS': { + 'name': _('Show Installed Stock Items'), + 'description': _('Display installed stock items in stock tables'), + 'default': False, + 'validator': bool, + }, + 'BUILDORDER_REFERENCE_PATTERN': { 'name': _('Build Order Reference Pattern'), 'description': _('Required pattern for generating Build Order reference field'), @@ -1616,13 +1684,6 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'requires_restart': True, }, - 'PLUGIN_CHECK_SIGNATURES': { - 'name': _('Check plugin signatures'), - 'description': _('Check and show signatures for plugins'), - 'default': False, - 'validator': bool, - }, - # Settings for plugin mixin features 'ENABLE_PLUGINS_URL': { 'name': _('Enable URL integration'), @@ -1678,6 +1739,13 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'default': False, }, + 'STOCKTAKE_EXCLUDE_EXTERNAL': { + 'name': _('Exclude External Locations'), + 'description': _('Exclude stock items in external locations from stocktake calculations'), + 'validator': bool, + 'default': False, + }, + 'STOCKTAKE_AUTO_DAYS': { 'name': _('Automatic Stocktake Period'), 'description': _('Number of days between automatic stocktake recording (set to zero to disable)'), @@ -1775,13 +1843,6 @@ class InvenTreeUserSetting(BaseInvenTreeSetting): 'validator': bool, }, - 'PART_RECENT_COUNT': { - 'name': _('Recent Part Count'), - 'description': _('Number of recent parts to display on index page'), - 'default': 10, - 'validator': [int, MinValueValidator(1)] - }, - 'HOMEPAGE_BOM_REQUIRES_VALIDATION': { 'name': _('Show unvalidated BOMs'), 'description': _('Show BOMs that await validation on the homepage'), @@ -1796,13 +1857,6 @@ class InvenTreeUserSetting(BaseInvenTreeSetting): 'validator': bool, }, - 'STOCK_RECENT_COUNT': { - 'name': _('Recent Stock Count'), - 'description': _('Number of recent stock items to display on index page'), - 'default': 10, - 'validator': [int, MinValueValidator(1)] - }, - 'HOMEPAGE_STOCK_LOW': { 'name': _('Show low stock'), 'description': _('Show low stock items on the homepage'), diff --git a/InvenTree/common/notifications.py b/InvenTree/common/notifications.py index 07148e6267..7e0124da1a 100644 --- a/InvenTree/common/notifications.py +++ b/InvenTree/common/notifications.py @@ -8,8 +8,8 @@ from django.contrib.auth import get_user_model from django.contrib.auth.models import Group from django.utils.translation import gettext_lazy as _ +import common.models import InvenTree.helpers -from common.models import NotificationEntry, NotificationMessage from InvenTree.ready import isImportingData from plugin import registry from plugin.models import NotificationUserSetting, PluginConfig @@ -247,7 +247,7 @@ class UIMessageNotification(SingleNotificationMethod): def send(self, target): """Send a UI notification to a user.""" - NotificationMessage.objects.create( + common.models.NotificationMessage.objects.create( target_object=self.obj, source_object=target, user=target, @@ -279,7 +279,7 @@ class NotificationBody: name: str slug: str message: str - template: str + template: str = None class InvenTreeNotificationBodies: @@ -338,7 +338,7 @@ def trigger_notification(obj, category=None, obj_ref='pk', **kwargs): # Check if we have notified recently... delta = timedelta(days=1) - if NotificationEntry.check_recent(category, obj_ref_value, delta): + if common.models.NotificationEntry.check_recent(category, obj_ref_value, delta): logger.info(f"Notification '{category}' has recently been sent for '{str(obj)}' - SKIPPING") return @@ -398,7 +398,7 @@ def trigger_notification(obj, category=None, obj_ref='pk', **kwargs): logger.error(error) # Set delivery flag - NotificationEntry.notify(category, obj_ref_value) + common.models.NotificationEntry.notify(category, obj_ref_value) else: logger.info(f"No possible users for notification '{category}'") diff --git a/InvenTree/common/serializers.py b/InvenTree/common/serializers.py index c74dc76fd4..4cb6a5dd45 100644 --- a/InvenTree/common/serializers.py +++ b/InvenTree/common/serializers.py @@ -1,18 +1,37 @@ """JSON serializers for common components.""" + from django.urls import reverse +from flags.state import flag_state from rest_framework import serializers -from common.models import (InvenTreeSetting, InvenTreeUserSetting, - NewsFeedEntry, NotesImage, NotificationMessage, - ProjectCode) +import common.models as common_models from InvenTree.helpers import get_objectreference from InvenTree.helpers_model import construct_absolute_url from InvenTree.serializers import (InvenTreeImageSerializerField, InvenTreeModelSerializer) +class SettingsValueField(serializers.Field): + """Custom serializer field for a settings value.""" + + def get_attribute(self, instance): + """Return the object instance, not the attribute value.""" + return instance + + def to_representation(self, instance): + """Return the value of the setting: + + - Protected settings are returned as '***' + """ + return '***' if instance.protected else str(instance.value) + + def to_internal_value(self, data): + """Return the internal value of the setting""" + return str(data) + + class SettingsSerializer(InvenTreeModelSerializer): """Base serializer for a settings object.""" @@ -30,6 +49,8 @@ class SettingsSerializer(InvenTreeModelSerializer): api_url = serializers.CharField(read_only=True) + value = SettingsValueField() + def get_choices(self, obj): """Returns the choices available for a given item.""" results = [] @@ -45,16 +66,6 @@ class SettingsSerializer(InvenTreeModelSerializer): return results - def get_value(self, obj): - """Make sure protected values are not returned.""" - # never return protected values - if obj.protected: - result = '***' - else: - result = obj.value - - return result - class GlobalSettingsSerializer(SettingsSerializer): """Serializer for the InvenTreeSetting model.""" @@ -62,7 +73,7 @@ class GlobalSettingsSerializer(SettingsSerializer): class Meta: """Meta options for GlobalSettingsSerializer.""" - model = InvenTreeSetting + model = common_models.InvenTreeSetting fields = [ 'pk', 'key', @@ -83,7 +94,7 @@ class UserSettingsSerializer(SettingsSerializer): class Meta: """Meta options for UserSettingsSerializer.""" - model = InvenTreeUserSetting + model = common_models.InvenTreeUserSetting fields = [ 'pk', 'key', @@ -146,7 +157,7 @@ class NotificationMessageSerializer(InvenTreeModelSerializer): class Meta: """Meta options for NotificationMessageSerializer.""" - model = NotificationMessage + model = common_models.NotificationMessage fields = [ 'pk', 'target', @@ -207,7 +218,7 @@ class NewsFeedEntrySerializer(InvenTreeModelSerializer): class Meta: """Meta options for NewsFeedEntrySerializer.""" - model = NewsFeedEntry + model = common_models.NewsFeedEntry fields = [ 'pk', 'feed_id', @@ -241,7 +252,7 @@ class NotesImageSerializer(InvenTreeModelSerializer): class Meta: """Meta options for NotesImageSerializer.""" - model = NotesImage + model = common_models.NotesImage fields = [ 'pk', 'image', @@ -263,9 +274,25 @@ class ProjectCodeSerializer(InvenTreeModelSerializer): class Meta: """Meta options for ProjectCodeSerializer.""" - model = ProjectCode + model = common_models.ProjectCode fields = [ 'pk', 'code', 'description' ] + + +class FlagSerializer(serializers.Serializer): + """Serializer for feature flags.""" + + def to_representation(self, instance): + """Return the configuration data as a dictionary.""" + request = self.context.get('request') + if not isinstance(instance, str): + instance = list(instance.keys())[0] + data = {'key': instance, 'state': flag_state(instance, request=request)} + + if request and request.user.is_superuser: + data['conditions'] = self.instance[instance] + + return data diff --git a/InvenTree/common/settings.py b/InvenTree/common/settings.py index be049cf433..205f13ee00 100644 --- a/InvenTree/common/settings.py +++ b/InvenTree/common/settings.py @@ -1,20 +1,23 @@ """User-configurable settings for the common app.""" +import logging + from django.conf import settings from moneyed import CURRENCIES +logger = logging.getLogger('inventree') + def currency_code_default(): """Returns the default currency code (or USD if not specified)""" - from django.db.utils import ProgrammingError from common.models import InvenTreeSetting try: code = InvenTreeSetting.get_setting('INVENTREE_DEFAULT_CURRENCY', create=False, cache=False) - except ProgrammingError: # pragma: no cover - # database is not initialized yet + except Exception: # pragma: no cover + # Database may not yet be ready, no need to throw an error here code = '' if code not in CURRENCIES: @@ -42,4 +45,4 @@ def stock_expiry_enabled(): """Returns True if the stock expiry feature is enabled.""" from common.models import InvenTreeSetting - return InvenTreeSetting.get_setting('STOCK_ENABLE_EXPIRY') + return InvenTreeSetting.get_setting('STOCK_ENABLE_EXPIRY', False, create=False) diff --git a/InvenTree/common/tests.py b/InvenTree/common/tests.py index 6e33544f22..740de2e419 100644 --- a/InvenTree/common/tests.py +++ b/InvenTree/common/tests.py @@ -5,6 +5,7 @@ import json import time from datetime import timedelta from http import HTTPStatus +from unittest import mock from django.contrib.auth import get_user_model from django.core.cache import cache @@ -105,6 +106,40 @@ class SettingsTest(InvenTreeTestCase): self.assertIn('PART_COPY_TESTS', result) self.assertIn('STOCK_OWNERSHIP_CONTROL', result) self.assertIn('SIGNUP_GROUP', result) + self.assertIn('SERVER_RESTART_REQUIRED', result) + + result = InvenTreeSetting.allValues(exclude_hidden=True) + self.assertNotIn('SERVER_RESTART_REQUIRED', result) + + def test_all_settings(self): + """Make sure that the all_settings function returns correctly""" + result = InvenTreeSetting.all_settings() + self.assertIn("INVENTREE_INSTANCE", result) + self.assertIsInstance(result['INVENTREE_INSTANCE'], InvenTreeSetting) + + @mock.patch("common.models.InvenTreeSetting.get_setting_definition") + def test_check_all_settings(self, get_setting_definition): + """Make sure that the check_all_settings function returns correctly""" + # define partial schema + settings_definition = { + "AB": { # key that's has not already been accessed + "required": True, + }, + "CD": { + "required": True, + "protected": True, + }, + "EF": {} + } + + def mocked(key, **kwargs): + return settings_definition.get(key, {}) + get_setting_definition.side_effect = mocked + + self.assertEqual(InvenTreeSetting.check_all_settings(settings_definition=settings_definition), (False, ["AB", "CD"])) + InvenTreeSetting.set_setting('AB', "hello", self.user) + InvenTreeSetting.set_setting('CD', "world", self.user) + self.assertEqual(InvenTreeSetting.check_all_settings(), (True, [])) def run_settings_check(self, key, setting): """Test that all settings are valid. @@ -226,7 +261,7 @@ class SettingsTest(InvenTreeTestCase): cache.clear() - # Generate a number of new usesr + # Generate a number of new users for idx in range(5): get_user_model().objects.create( username=f"User_{idx}", @@ -417,7 +452,7 @@ class UserSettingsApiTest(InvenTreeAPITestCase): self.assertTrue(str2bool(response.data['value'])) - # Assign some falsey values + # Assign some false(ish) values for v in ['false', False, '0', 'n', 'FalSe']: self.patch( url, @@ -535,7 +570,7 @@ class NotificationUserSettingsApiTest(InvenTreeAPITestCase): def test_api_list(self): """Test list URL.""" - url = reverse('api-notifcation-setting-list') + url = reverse('api-notification-setting-list') self.get(url, expected_code=200) @@ -583,7 +618,7 @@ class PluginSettingsApiTest(PluginMixin, InvenTreeAPITestCase): # Failure mode tests - # Non - exsistant plugin + # Non-existent plugin url = reverse('api-plugin-setting-detail', kwargs={'plugin': 'doesnotexist', 'key': 'doesnotmatter'}) response = self.get(url, expected_code=404) self.assertIn("Plugin 'doesnotexist' not installed", str(response.data)) @@ -729,7 +764,7 @@ class WebhookMessageTests(TestCase): class NotificationTest(InvenTreeAPITestCase): - """Tests for NotificationEntriy.""" + """Tests for NotificationEntry.""" fixtures = [ 'users', @@ -785,7 +820,7 @@ class NotificationTest(InvenTreeAPITestCase): messages = NotificationMessage.objects.all() # As there are three staff users (including the 'test' user) we expect 30 notifications - # However, one user is marked as i nactive + # However, one user is marked as inactive self.assertEqual(messages.count(), 20) # Only 10 messages related to *this* user @@ -875,6 +910,43 @@ class CommonTest(InvenTreeAPITestCase): self.user.is_superuser = False self.user.save() + def test_flag_api(self): + """Test flag URLs.""" + # Not superuser + response = self.get(reverse('api-flag-list'), expected_code=200) + self.assertEqual(len(response.data), 2) + self.assertEqual(response.data[0]['key'], 'EXPERIMENTAL') + + # Turn into superuser + self.user.is_superuser = True + self.user.save() + + # Successful checks + response = self.get(reverse('api-flag-list'), expected_code=200) + self.assertEqual(len(response.data), 2) + self.assertEqual(response.data[0]['key'], 'EXPERIMENTAL') + self.assertTrue(response.data[0]['conditions']) + + response = self.get(reverse('api-flag-detail', kwargs={'key': 'EXPERIMENTAL'}), expected_code=200) + self.assertEqual(len(response.data), 3) + self.assertEqual(response.data['key'], 'EXPERIMENTAL') + self.assertTrue(response.data['conditions']) + + # Try without param -> false + response = self.get(reverse('api-flag-detail', kwargs={'key': 'NEXT_GEN'}), expected_code=200) + self.assertFalse(response.data['state']) + + # Try with param -> true + response = self.get(reverse('api-flag-detail', kwargs={'key': 'NEXT_GEN'}), {'ngen': ''}, expected_code=200) + self.assertTrue(response.data['state']) + + # Try non existent flag + response = self.get(reverse('api-flag-detail', kwargs={'key': 'NON_EXISTENT'}), expected_code=404) + + # Turn into normal user again + self.user.is_superuser = False + self.user.save() + class ColorThemeTest(TestCase): """Tests for ColorTheme.""" diff --git a/InvenTree/company/admin.py b/InvenTree/company/admin.py index 9bc5562aaa..5cf7bbda87 100644 --- a/InvenTree/company/admin.py +++ b/InvenTree/company/admin.py @@ -9,9 +9,9 @@ from import_export.fields import Field from InvenTree.admin import InvenTreeResource from part.models import Part -from .models import (Company, ManufacturerPart, ManufacturerPartAttachment, - ManufacturerPartParameter, SupplierPart, - SupplierPriceBreak) +from .models import (Address, Company, Contact, ManufacturerPart, + ManufacturerPartAttachment, ManufacturerPartParameter, + SupplierPart, SupplierPriceBreak) class CompanyResource(InvenTreeResource): @@ -187,6 +187,60 @@ class SupplierPriceBreakAdmin(ImportExportModelAdmin): autocomplete_fields = ('part',) +class AddressResource(InvenTreeResource): + """Class for managing Address data import/export""" + + class Meta: + """Metaclass defining extra options""" + model = Address + skip_unchanged = True + report_skipped = False + clean_model_instances = True + + company = Field(attribute='company', widget=widgets.ForeignKeyWidget(Company)) + + +class AddressAdmin(ImportExportModelAdmin): + """Admin class for the Address model""" + + resource_class = AddressResource + + list_display = ('company', 'line1', 'postal_code', 'country') + + search_fields = [ + 'company', + 'country', + 'postal_code', + ] + + +class ContactResource(InvenTreeResource): + """Class for managing Contact data import/export""" + + class Meta: + """Metaclass defining extra options""" + model = Contact + skip_unchanged = True + report_skipped = False + clean_model_instances = True + + company = Field(attribute='company', widget=widgets.ForeignKeyWidget(Company)) + + +class ContactAdmin(ImportExportModelAdmin): + """Admin class for the Contact model""" + + resource_class = ContactResource + + list_display = ('company', 'name', 'role', 'email', 'phone') + + search_fields = [ + 'company', + 'name', + 'email', + ] + + admin.site.register(Company, CompanyAdmin) admin.site.register(SupplierPart, SupplierPartAdmin) admin.site.register(SupplierPriceBreak, SupplierPriceBreakAdmin) @@ -194,3 +248,6 @@ admin.site.register(SupplierPriceBreak, SupplierPriceBreakAdmin) admin.site.register(ManufacturerPart, ManufacturerPartAdmin) admin.site.register(ManufacturerPartAttachment, ManufacturerPartAttachmentAdmin) admin.site.register(ManufacturerPartParameter, ManufacturerPartParameterAdmin) + +admin.site.register(Address, AddressAdmin) +admin.site.register(Contact, ContactAdmin) diff --git a/InvenTree/company/api.py b/InvenTree/company/api.py index 8137f7a6a8..05638e1398 100644 --- a/InvenTree/company/api.py +++ b/InvenTree/company/api.py @@ -14,11 +14,12 @@ from InvenTree.filters import (ORDER_FILTER, SEARCH_ORDER_FILTER, from InvenTree.helpers import str2bool from InvenTree.mixins import ListCreateAPI, RetrieveUpdateDestroyAPI -from .models import (Company, CompanyAttachment, Contact, ManufacturerPart, - ManufacturerPartAttachment, ManufacturerPartParameter, - SupplierPart, SupplierPriceBreak) -from .serializers import (CompanyAttachmentSerializer, CompanySerializer, - ContactSerializer, +from .models import (Address, Company, CompanyAttachment, Contact, + ManufacturerPart, ManufacturerPartAttachment, + ManufacturerPartParameter, SupplierPart, + SupplierPriceBreak) +from .serializers import (AddressSerializer, CompanyAttachmentSerializer, + CompanySerializer, ContactSerializer, ManufacturerPartAttachmentSerializer, ManufacturerPartParameterSerializer, ManufacturerPartSerializer, SupplierPartSerializer, @@ -135,6 +136,32 @@ class ContactDetail(RetrieveUpdateDestroyAPI): serializer_class = ContactSerializer +class AddressList(ListCreateDestroyAPIView): + """API endpoint for list view of Address model""" + + queryset = Address.objects.all() + serializer_class = AddressSerializer + + filter_backends = SEARCH_ORDER_FILTER + + filterset_fields = [ + 'company', + ] + + ordering_fields = [ + 'title', + ] + + ordering = 'title' + + +class AddressDetail(RetrieveUpdateDestroyAPI): + """API endpoint for a single Address object""" + + queryset = Address.objects.all() + serializer_class = AddressSerializer + + class ManufacturerPartFilter(rest_filters.FilterSet): """Custom API filters for the ManufacturerPart list endpoint.""" @@ -568,6 +595,11 @@ company_api_urls = [ re_path(r'^.*$', ContactList.as_view(), name='api-contact-list'), ])), + re_path(r'^address/', include([ + path('/', AddressDetail.as_view(), name='api-address-detail'), + re_path(r'^.*$', AddressList.as_view(), name='api-address-list'), + ])), + re_path(r'^.*$', CompanyList.as_view(), name='api-company-list'), ] diff --git a/InvenTree/company/migrations/0025_auto_20201110_1001.py b/InvenTree/company/migrations/0025_auto_20201110_1001.py index f2fa767d81..117710daa7 100644 --- a/InvenTree/company/migrations/0025_auto_20201110_1001.py +++ b/InvenTree/company/migrations/0025_auto_20201110_1001.py @@ -8,6 +8,7 @@ import common.settings class Migration(migrations.Migration): dependencies = [ + ('common', '0004_inventreesetting'), ('company', '0024_unique_name_email_constraint'), ] diff --git a/InvenTree/company/migrations/0039_auto_20210701_0509.py b/InvenTree/company/migrations/0039_auto_20210701_0509.py index 094c7a5009..74dadcc340 100644 --- a/InvenTree/company/migrations/0039_auto_20210701_0509.py +++ b/InvenTree/company/migrations/0039_auto_20210701_0509.py @@ -8,6 +8,7 @@ import djmoney.models.fields class Migration(migrations.Migration): dependencies = [ + ('common', '0004_inventreesetting'), ('company', '0038_manufacturerpartparameter'), ] diff --git a/InvenTree/company/migrations/0051_alter_supplierpricebreak_price.py b/InvenTree/company/migrations/0051_alter_supplierpricebreak_price.py index 9786ff618b..11f8d554be 100644 --- a/InvenTree/company/migrations/0051_alter_supplierpricebreak_price.py +++ b/InvenTree/company/migrations/0051_alter_supplierpricebreak_price.py @@ -8,6 +8,7 @@ import djmoney.models.validators class Migration(migrations.Migration): dependencies = [ + ('common', '0004_inventreesetting'), ('company', '0050_alter_company_website'), ] diff --git a/InvenTree/company/migrations/0059_supplierpart_pack_units.py b/InvenTree/company/migrations/0059_supplierpart_pack_units.py index 864ebad772..8f97b4279d 100644 --- a/InvenTree/company/migrations/0059_supplierpart_pack_units.py +++ b/InvenTree/company/migrations/0059_supplierpart_pack_units.py @@ -8,6 +8,7 @@ import InvenTree.fields class Migration(migrations.Migration): dependencies = [ + ('stock', '0094_auto_20230220_0025'), ('company', '0058_auto_20230515_0004'), ] diff --git a/InvenTree/company/migrations/0063_auto_20230502_1956.py b/InvenTree/company/migrations/0063_auto_20230502_1956.py new file mode 100644 index 0000000000..c0cce4e188 --- /dev/null +++ b/InvenTree/company/migrations/0063_auto_20230502_1956.py @@ -0,0 +1,33 @@ +# Generated by Django 3.2.18 on 2023-05-02 19:56 + +import InvenTree.fields +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('company', '0062_contact_metadata'), + ] + + operations = [ + migrations.CreateModel( + name='Address', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('title', models.CharField(help_text='Title describing the address entry', max_length=100, verbose_name='Address title')), + ('primary', models.BooleanField(default=False, help_text='Set as primary address', verbose_name='Primary address')), + ('line1', models.CharField(blank=True, help_text='Address line 1', max_length=50, verbose_name='Line 1')), + ('line2', models.CharField(blank=True, help_text='Address line 2', max_length=50, verbose_name='Line 2')), + ('postal_code', models.CharField(blank=True, help_text='Postal code', max_length=10, verbose_name='Postal code')), + ('postal_city', models.CharField(blank=True, help_text='Postal code city', max_length=50, verbose_name='City')), + ('province', models.CharField(blank=True, help_text='State or province', max_length=50, verbose_name='State/Province')), + ('country', models.CharField(blank=True, help_text='Address country', max_length=50, verbose_name='Country')), + ('shipping_notes', models.CharField(blank=True, help_text='Notes for shipping courier', max_length=100, verbose_name='Courier shipping notes')), + ('internal_shipping_notes', models.CharField(blank=True, help_text='Shipping notes for internal use', max_length=100, verbose_name='Internal shipping notes')), + ('link', InvenTree.fields.InvenTreeURLField(blank=True, help_text='Link to address information (external)', verbose_name='Link')), + ('company', models.ForeignKey(help_text='Select company', on_delete=django.db.models.deletion.CASCADE, related_name='addresses', to='company.company', verbose_name='Company')), + ], + ), + ] diff --git a/InvenTree/company/migrations/0064_move_address_field_to_address_model.py b/InvenTree/company/migrations/0064_move_address_field_to_address_model.py new file mode 100644 index 0000000000..76d7d3b478 --- /dev/null +++ b/InvenTree/company/migrations/0064_move_address_field_to_address_model.py @@ -0,0 +1,37 @@ +# Generated by Django 3.2.18 on 2023-05-02 20:41 + +from django.db import migrations + +def move_address_to_new_model(apps, schema_editor): + Company = apps.get_model('company', 'Company') + Address = apps.get_model('company', 'Address') + for company in Company.objects.all(): + if company.address != '': + # Address field might exceed length of new model fields + l1 = company.address[:50] + l2 = company.address[50:100] + Address.objects.create(company=company, + title="Primary", + primary=True, + line1=l1, + line2=l2) + company.address = '' + company.save() + +def revert_address_move(apps, schema_editor): + Address = apps.get_model('company', 'Address') + for address in Address.objects.all(): + address.company.address = f'{address.line1}{address.line2}' + address.company.save() + address.delete() + + +class Migration(migrations.Migration): + + dependencies = [ + ('company', '0063_auto_20230502_1956'), + ] + + operations = [ + migrations.RunPython(move_address_to_new_model, reverse_code=revert_address_move) + ] diff --git a/InvenTree/company/migrations/0065_remove_company_address.py b/InvenTree/company/migrations/0065_remove_company_address.py new file mode 100644 index 0000000000..4beaeca792 --- /dev/null +++ b/InvenTree/company/migrations/0065_remove_company_address.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.18 on 2023-05-13 14:53 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('company', '0064_move_address_field_to_address_model'), + ] + + operations = [ + migrations.RemoveField( + model_name='company', + name='address', + ), + ] diff --git a/InvenTree/company/migrations/0066_auto_20230616_2059.py b/InvenTree/company/migrations/0066_auto_20230616_2059.py new file mode 100644 index 0000000000..19ce798301 --- /dev/null +++ b/InvenTree/company/migrations/0066_auto_20230616_2059.py @@ -0,0 +1,22 @@ +# Generated by Django 3.2.19 on 2023-06-16 20:59 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('company', '0065_remove_company_address'), + ] + + operations = [ + migrations.AlterModelOptions( + name='address', + options={'verbose_name_plural': 'Addresses'}, + ), + migrations.AlterField( + model_name='address', + name='postal_city', + field=models.CharField(blank=True, help_text='Postal code city/region', max_length=50, verbose_name='City/Region'), + ), + ] diff --git a/InvenTree/company/models.py b/InvenTree/company/models.py index ad40a41255..6334ce6dd9 100644 --- a/InvenTree/company/models.py +++ b/InvenTree/company/models.py @@ -9,7 +9,7 @@ from django.core.exceptions import ValidationError from django.core.validators import MinValueValidator from django.db import models from django.db.models import Q, Sum, UniqueConstraint -from django.db.models.signals import post_delete, post_save +from django.db.models.signals import post_delete, post_save, pre_save from django.dispatch import receiver from django.urls import reverse from django.utils.translation import gettext_lazy as _ @@ -30,7 +30,7 @@ from common.settings import currency_code_default from InvenTree.fields import InvenTreeURLField, RoundingDecimalField from InvenTree.models import (InvenTreeAttachment, InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin) -from InvenTree.status_codes import PurchaseOrderStatus +from InvenTree.status_codes import PurchaseOrderStatusGroups def rename_company_image(instance, filename): @@ -72,7 +72,7 @@ class Company(InvenTreeNotesMixin, MetadataMixin, models.Model): name: Brief name of the company description: Longer form description website: URL for the company website - address: Postal address + address: One-line string representation of primary address phone: contact phone number email: contact email address link: Secondary URL e.g. for link to internal Wiki page @@ -114,10 +114,6 @@ class Company(InvenTreeNotesMixin, MetadataMixin, models.Model): help_text=_('Company website URL') ) - address = models.CharField(max_length=200, - verbose_name=_('Address'), - blank=True, help_text=_('Company address')) - phone = models.CharField(max_length=50, verbose_name=_('Phone number'), blank=True, help_text=_('Contact phone number')) @@ -158,6 +154,22 @@ class Company(InvenTreeNotesMixin, MetadataMixin, models.Model): validators=[InvenTree.validators.validate_currency_code], ) + @property + def address(self): + """Return the string representation for the primary address + + This property exists for backwards compatibility + """ + + addr = self.primary_address + + return str(addr) if addr is not None else None + + @property + def primary_address(self): + """Returns address object of primary address. Parsed by serializer""" + return Address.objects.filter(company=self.id).filter(primary=True).first() + @property def currency_code(self): """Return the currency code associated with this company. @@ -253,6 +265,143 @@ class Contact(MetadataMixin, models.Model): role = models.CharField(max_length=100, blank=True) +class Address(models.Model): + """An address represents a physical location where the company is located. It is possible for a company to have multiple locations + + Attributes: + company: Company link for this address + title: Human-readable name for the address + primary: True if this is the company's primary address + line1: First line of address + line2: Optional line two for address + postal_code: Postal code, city and state + country: Location country + shipping_notes: Notes for couriers transporting shipments to this address + internal_shipping_notes: Internal notes regarding shipping to this address + link: External link to additional address information + """ + + def __init__(self, *args, **kwargs): + """Custom init function""" + if 'confirm_primary' in kwargs: + self.confirm_primary = kwargs.pop('confirm_primary', None) + super().__init__(*args, **kwargs) + + def __str__(self): + """Defines string representation of address to supple a one-line to API calls""" + available_lines = [self.line1, + self.line2, + self.postal_code, + self.postal_city, + self.province, + self.country + ] + + populated_lines = [] + for line in available_lines: + if len(line) > 0: + populated_lines.append(line) + + return ", ".join(populated_lines) + + class Meta: + """Metaclass defines extra model options""" + verbose_name_plural = "Addresses" + + @staticmethod + def get_api_url(): + """Return the API URL associated with the Contcat model""" + return reverse('api-address-list') + + def validate_unique(self, exclude=None): + """Ensure that only one primary address exists per company""" + + super().validate_unique(exclude=exclude) + + if self.primary: + # Check that no other primary address exists for this company + if Address.objects.filter(company=self.company, primary=True).exclude(pk=self.pk).exists(): + raise ValidationError({'primary': _('Company already has a primary address')}) + + company = models.ForeignKey(Company, related_name='addresses', + on_delete=models.CASCADE, + verbose_name=_('Company'), + help_text=_('Select company')) + + title = models.CharField(max_length=100, + verbose_name=_('Address title'), + help_text=_('Title describing the address entry'), + blank=False) + + primary = models.BooleanField(default=False, + verbose_name=_('Primary address'), + help_text=_('Set as primary address')) + + line1 = models.CharField(max_length=50, + verbose_name=_('Line 1'), + help_text=_('Address line 1'), + blank=True) + + line2 = models.CharField(max_length=50, + verbose_name=_('Line 2'), + help_text=_('Address line 2'), + blank=True) + + postal_code = models.CharField(max_length=10, + verbose_name=_('Postal code'), + help_text=_('Postal code'), + blank=True) + + postal_city = models.CharField(max_length=50, + verbose_name=_('City/Region'), + help_text=_('Postal code city/region'), + blank=True) + + province = models.CharField(max_length=50, + verbose_name=_('State/Province'), + help_text=_('State or province'), + blank=True) + + country = models.CharField(max_length=50, + verbose_name=_('Country'), + help_text=_('Address country'), + blank=True) + + shipping_notes = models.CharField(max_length=100, + verbose_name=_('Courier shipping notes'), + help_text=_('Notes for shipping courier'), + blank=True) + + internal_shipping_notes = models.CharField(max_length=100, + verbose_name=_('Internal shipping notes'), + help_text=_('Shipping notes for internal use'), + blank=True) + + link = InvenTreeURLField(blank=True, + verbose_name=_('Link'), + help_text=_('Link to address information (external)')) + + +@receiver(pre_save, sender=Address) +def check_primary(sender, instance, **kwargs): + """Removes primary flag from current primary address if the to-be-saved address is marked as primary""" + + if instance.company.primary_address is None: + instance.primary = True + + # If confirm_primary is not present, this function does not need to do anything + if not hasattr(instance, 'confirm_primary') or \ + instance.primary is False or \ + instance.company.primary_address is None or \ + instance.id == instance.company.primary_address.id: + return + + if instance.confirm_primary is True: + adr = Address.objects.get(id=instance.company.primary_address.id) + adr.primary = False + adr.save() + + class ManufacturerPart(MetadataMixin, models.Model): """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. @@ -697,7 +846,7 @@ class SupplierPart(MetadataMixin, InvenTreeBarcodeMixin, common.models.MetaMixin def open_orders(self): """Return a database query for PurchaseOrder line items for this SupplierPart, limited to purchase orders that are open / outstanding.""" - return self.purchase_order_line_items.prefetch_related('order').filter(order__status__in=PurchaseOrderStatus.OPEN) + return self.purchase_order_line_items.prefetch_related('order').filter(order__status__in=PurchaseOrderStatusGroups.OPEN) def on_order(self): """Return the total quantity of items currently on order. diff --git a/InvenTree/company/serializers.py b/InvenTree/company/serializers.py index f0833d18b0..b4019ea0f7 100644 --- a/InvenTree/company/serializers.py +++ b/InvenTree/company/serializers.py @@ -20,9 +20,10 @@ from InvenTree.serializers import (InvenTreeAttachmentSerializer, RemoteImageMixin) from part.serializers import PartBriefSerializer -from .models import (Company, CompanyAttachment, Contact, ManufacturerPart, - ManufacturerPartAttachment, ManufacturerPartParameter, - SupplierPart, SupplierPriceBreak) +from .models import (Address, Company, CompanyAttachment, Contact, + ManufacturerPart, ManufacturerPartAttachment, + ManufacturerPartParameter, SupplierPart, + SupplierPriceBreak) class CompanyBriefSerializer(InvenTreeModelSerializer): @@ -45,6 +46,53 @@ class CompanyBriefSerializer(InvenTreeModelSerializer): image = serializers.CharField(source='get_thumbnail_url', read_only=True) +class AddressSerializer(InvenTreeModelSerializer): + """Serializer for the Address Model""" + + class Meta: + """Metaclass options""" + + model = Address + fields = [ + 'pk', + 'company', + 'title', + 'primary', + 'line1', + 'line2', + 'postal_code', + 'postal_city', + 'province', + 'country', + 'shipping_notes', + 'internal_shipping_notes', + 'link', + 'confirm_primary' + ] + + confirm_primary = serializers.BooleanField(default=False) + + +class AddressBriefSerializer(InvenTreeModelSerializer): + """Serializer for Address Model (limited)""" + + class Meta: + """Metaclass options""" + + model = Address + fields = [ + 'pk', + 'line1', + 'line2', + 'postal_code', + 'postal_city', + 'province', + 'country', + 'shipping_notes', + 'internal_shipping_notes' + ] + + class CompanySerializer(RemoteImageMixin, InvenTreeModelSerializer): """Serializer for Company object (full detail)""" @@ -73,11 +121,13 @@ class CompanySerializer(RemoteImageMixin, InvenTreeModelSerializer): 'parts_supplied', 'parts_manufactured', 'remote_image', + 'address_count', + 'primary_address' ] @staticmethod def annotate_queryset(queryset): - """Annoate the supplied queryset with aggregated information""" + """Annotate the supplied queryset with aggregated information""" # Add count of parts manufactured queryset = queryset.annotate( parts_manufactured=SubqueryCount('manufactured_parts') @@ -87,14 +137,21 @@ class CompanySerializer(RemoteImageMixin, InvenTreeModelSerializer): parts_supplied=SubqueryCount('supplied_parts') ) + queryset = queryset.annotate( + address_count=SubqueryCount('addresses') + ) + return queryset + primary_address = AddressSerializer(required=False, allow_null=True, read_only=True) + url = serializers.CharField(source='get_absolute_url', read_only=True) image = InvenTreeImageSerializerField(required=False, allow_null=True) parts_supplied = serializers.IntegerField(read_only=True) parts_manufactured = serializers.IntegerField(read_only=True) + address_count = serializers.IntegerField(read_only=True) currency = InvenTreeCurrencySerializer(help_text=_('Default currency used for this supplier'), required=True) @@ -334,7 +391,7 @@ class SupplierPartSerializer(InvenTreeTagModelSerializer): MPN = serializers.CharField(read_only=True) - manufacturer_part_detail = ManufacturerPartSerializer(source='manufacturer_part', read_only=True) + manufacturer_part_detail = ManufacturerPartSerializer(source='manufacturer_part', part_detail=False, read_only=True) url = serializers.CharField(source='get_absolute_url', read_only=True) diff --git a/InvenTree/company/templates/company/detail.html b/InvenTree/company/templates/company/detail.html index 6018005548..7d380d7c2f 100644 --- a/InvenTree/company/templates/company/detail.html +++ b/InvenTree/company/templates/company/detail.html @@ -26,28 +26,7 @@
{% if roles.purchase_order.change %}
-
-
-
- - -
- {% include "filter_list.html" with id="supplier-part" %} -
-
+ {% include "filter_list.html" with id="supplier-part" %}
{% endif %} @@ -73,29 +52,7 @@
{% if roles.purchase_order.change %}
-
-
-
- - -
- {% include "filter_list.html" with id="manufacturer-part" %} -
-
+ {% include "filter_list.html" with id="manufacturer-part" %}
{% endif %}
@@ -128,9 +85,7 @@
-
- {% include "filter_list.html" with id="purchaseorder" %} -
+ {% include "filter_list.html" with id="purchaseorder" %}
@@ -156,9 +111,7 @@
-
- {% include "filter_list.html" with id="salesorder" %} -
+ {% include "filter_list.html" with id="salesorder" %}
@@ -174,9 +127,7 @@
-
- {% include "filter_list.html" with id="customerstock" %} -
+ {% include "filter_list.html" with id="customerstock" %}
@@ -201,11 +152,7 @@
-
-
- {% include "filter_list.html" with id="returnorder" %} -
-
+ {% include "filter_list.html" with id="returnorder" %}
@@ -246,15 +193,36 @@
-
- {% include "filter_list.html" with id="contacts" %} -
+ {% include "filter_list.html" with id="contacts" %}
+
+
+
+

{% trans "Company addresses" %}

+ {% include "spacer.html" %} +
+ {% if roles.purchase_order.add or roles.sales_order.add %} + + {% endif %} +
+
+
+
+
+ {% include "filter_list.html" with id="addresses" %} +
+ +
+
+
+
@@ -309,6 +277,26 @@ }); }); + // Callback function for when the 'addresses' panel is loaded + onPanelLoad('company-addresses', function(){ + loadAddressTable('#addresses-table', { + params: { + company: {{ company.pk }}, + }, + allow_edit: {% js_bool roles.purchase_order.change %} || {% js_bool roles.sales_order.change %}, + allow_delete: {% js_bool roles.purchase_order.delete %} || {% js_bool roles.sales_order.delete %}, + }); + + $('#new-address').click(function() { + createAddress({ + company: {{ company.pk }}, + onSuccess: function() { + $('#addresses-table').bootstrapTable('refresh'); + } + }) + }) + }) + // Callback function when the 'notes' panel is loaded onPanelLoad('company-notes', function() { @@ -331,9 +319,6 @@ supplier_part_detail: true, location_detail: true, }, - buttons: [ - '#stock-options', - ], filterKey: "companystock", }); }); @@ -453,32 +438,6 @@ } ); - $("#multi-manufacturer-part-delete").click(function() { - var selections = getTableData('#manufacturer-part-table'); - - deleteManufacturerParts(selections, { - success: function() { - $("#manufacturer-part-table").bootstrapTable('refresh'); - } - }); - }); - - $("#multi-manufacturer-part-order").click(function() { - var selections = getTableData('#manufacturer-part-table'); - - var parts = []; - - selections.forEach(function(item) { - var part = item.part_detail; - part.manufacturer_part = item.pk; - parts.push(part); - }); - - orderParts( - parts, - ); - }); - {% endif %} {% if company.is_supplier %} @@ -507,37 +466,6 @@ }, } ); - - $("#multi-supplier-part-delete").click(function() { - - var selections = getTableData("#supplier-part-table"); - - deleteSupplierParts(selections, { - success: function() { - $('#supplier-part-table').bootstrapTable('refresh'); - } - }); - }); - - $("#multi-supplier-part-order").click(function() { - - var selections = getTableData('#supplier-part-table'); - - var parts = []; - - selections.forEach(function(item) { - var part = item.part_detail; - parts.push(part); - }); - - orderParts( - parts, - { - supplier: {{ company.pk }}, - } - ); - }); - {% endif %} enableSidebar('company'); diff --git a/InvenTree/company/templates/company/index.html b/InvenTree/company/templates/company/index.html index b255137114..cb93522a6b 100644 --- a/InvenTree/company/templates/company/index.html +++ b/InvenTree/company/templates/company/index.html @@ -24,11 +24,11 @@
-
+
{% include "filter_list.html" with id='company' %}
- +
diff --git a/InvenTree/company/templates/company/manufacturer_part.html b/InvenTree/company/templates/company/manufacturer_part.html index c26e828558..0c158edd76 100644 --- a/InvenTree/company/templates/company/manufacturer_part.html +++ b/InvenTree/company/templates/company/manufacturer_part.html @@ -127,17 +127,7 @@ src="{% static 'img/blank_image.png' %}"
-
-
- - -
- {% include "filter_list.html" with id='supplier-part' %} -
+ {% include "filter_list.html" with id='supplier-part' %}
@@ -174,17 +164,7 @@ src="{% static 'img/blank_image.png' %}"
-
-
- - -
- {% include "filter_list.html" with id="manufacturer-part-parameters" %} -
+ {% include "filter_list.html" with id="manufacturer-part-parameters" %}
@@ -240,26 +220,6 @@ $('#supplier-create').click(function () { }); }); -$("#supplier-part-delete").click(function() { - - var selections = getTableData('#supplier-table'); - - deleteSupplierParts(selections, { - success: reloadSupplierPartTable, - }); -}); - -$("#multi-parameter-delete").click(function() { - - var selections = getTableData('#parameter-table'); - - deleteManufacturerPartParameters(selections, { - success: function() { - $('#parameter-table').bootstrapTable('refresh'); - } - }); -}); - loadSupplierPartTable( "#supplier-table", "{% url 'api-supplier-part-list' %}", diff --git a/InvenTree/company/templates/company/sidebar.html b/InvenTree/company/templates/company/sidebar.html index 7fe616b7d1..8e3078f342 100644 --- a/InvenTree/company/templates/company/sidebar.html +++ b/InvenTree/company/templates/company/sidebar.html @@ -32,6 +32,8 @@ {% endif %} {% trans "Contacts" as text %} {% include "sidebar_item.html" with label='company-contacts' text=text icon="fa-users" %} +{% trans "Addresses" as text %} +{% include "sidebar_item.html" with label='company-addresses' text=text icon="fa-map-marked" %} {% trans "Notes" as text %} {% include "sidebar_item.html" with label='company-notes' text=text icon="fa-clipboard" %} {% trans "Attachments" as text %} diff --git a/InvenTree/company/templates/company/supplier_part.html b/InvenTree/company/templates/company/supplier_part.html index 4fc29abe38..5a37cbae43 100644 --- a/InvenTree/company/templates/company/supplier_part.html +++ b/InvenTree/company/templates/company/supplier_part.html @@ -234,9 +234,7 @@ src="{% static 'img/blank_image.png' %}"
-
- {% include "filter_list.html" with id='purchaseorder' %} -
+ {% include "filter_list.html" with id='purchaseorder' %}
@@ -258,10 +256,8 @@ src="{% static 'img/blank_image.png' %}"
-
-
- {% include "filter_list.html" with id='supplierpricebreak' %} -
+
+ {% include "filter_list.html" with id='supplierpricebreak' %}
@@ -326,7 +322,6 @@ loadStockTable($("#stock-table"), { location_detail: true, part_detail: false, }, - buttons: ['#stock-options'], }); $("#item-create").click(function() { diff --git a/InvenTree/company/test_api.py b/InvenTree/company/test_api.py index 4f98686111..05fbfe8eb2 100644 --- a/InvenTree/company/test_api.py +++ b/InvenTree/company/test_api.py @@ -6,7 +6,7 @@ from rest_framework import status from InvenTree.unit_test import InvenTreeAPITestCase -from .models import Company, Contact, ManufacturerPart, SupplierPart +from .models import Address, Company, Contact, ManufacturerPart, SupplierPart class CompanyTest(InvenTreeAPITestCase): @@ -284,6 +284,138 @@ class ContactTest(InvenTreeAPITestCase): self.get(url, expected_code=404) +class AddressTest(InvenTreeAPITestCase): + """Test cases for Address API endpoints""" + + roles = [] + + @classmethod + def setUpTestData(cls): + """Perform initialization for this test class""" + + super().setUpTestData() + cls.num_companies = 3 + cls.num_addr = 3 + # Create some companies + companies = [ + Company( + name=f"Company {idx}", + description="Some company" + ) for idx in range(cls.num_companies) + ] + + Company.objects.bulk_create(companies) + + addresses = [] + + # Create some contacts + for cmp in Company.objects.all(): + addresses += [ + Address( + company=cmp, + title=f"Address no. {idx}", + ) for idx in range(cls.num_addr) + ] + + cls.url = reverse('api-address-list') + + Address.objects.bulk_create(addresses) + + def test_list(self): + """Test listing all addresses without filtering""" + + response = self.get(self.url, expected_code=200) + + self.assertEqual(len(response.data), self.num_companies * self.num_addr) + + def test_filter_list(self): + """Test listing addresses filtered on company""" + + company = Company.objects.first() + + response = self.get(self.url, {'company': company.pk}, expected_code=200) + + self.assertEqual(len(response.data), self.num_addr) + + def test_create(self): + """Test creating a new address""" + + company = Company.objects.first() + + self.post(self.url, + { + 'company': company.pk, + 'title': 'HQ' + }, + expected_code=403) + + self.assignRole('purchase_order.add') + + self.post(self.url, + { + 'company': company.pk, + 'title': 'HQ' + }, + expected_code=201) + + def test_get(self): + """Test that objects are properly returned from a get""" + + addr = Address.objects.first() + + url = reverse('api-address-detail', kwargs={'pk': addr.pk}) + response = self.get(url, expected_code=200) + + self.assertEqual(response.data['pk'], addr.pk) + + for key in ['title', 'line1', 'line2', 'postal_code', 'postal_city', 'province', 'country']: + self.assertIn(key, response.data) + + def test_edit(self): + """Test editing an object""" + + addr = Address.objects.first() + + url = reverse('api-address-detail', kwargs={'pk': addr.pk}) + + self.patch( + url, + { + 'title': 'Hello' + }, + expected_code=403 + ) + + self.assignRole('purchase_order.change') + + self.patch( + url, + { + 'title': 'World' + }, + expected_code=200 + ) + + data = self.get(url, expected_code=200).data + + self.assertEqual(data['title'], 'World') + + def test_delete(self): + """Test deleting an object""" + + addr = Address.objects.first() + + url = reverse('api-address-detail', kwargs={'pk': addr.pk}) + + self.delete(url, expected_code=403) + + self.assignRole('purchase_order.delete') + + self.delete(url, expected_code=204) + + self.get(url, expected_code=404) + + class ManufacturerTest(InvenTreeAPITestCase): """Series of tests for the Manufacturer DRF API.""" @@ -468,7 +600,7 @@ class SupplierPartTest(InvenTreeAPITestCase): self.assertIsNone(sp.availability_updated) self.assertEqual(sp.available, 0) - # Now, *update* the availabile quantity via the API + # Now, *update* the available quantity via the API self.patch( reverse('api-supplier-part-detail', kwargs={'pk': sp.pk}), { diff --git a/InvenTree/company/test_migrations.py b/InvenTree/company/test_migrations.py index fb38e9e695..5a84fc4b7d 100644 --- a/InvenTree/company/test_migrations.py +++ b/InvenTree/company/test_migrations.py @@ -48,7 +48,8 @@ class TestManufacturerField(MigratorTestCase): # Create an initial part part = Part.objects.create( name='Screw', - description='A single screw' + description='A single screw', + level=0, tree_id=0, lft=0, rght=0 ) # Create a company to act as the supplier @@ -279,6 +280,47 @@ class TestCurrencyMigration(MigratorTestCase): self.assertIsNotNone(pb.price) +class TestAddressMigration(MigratorTestCase): + """Test moving address data into Address model""" + + migrate_from = ('company', '0063_auto_20230502_1956') + migrate_to = ('company', '0064_move_address_field_to_address_model') + + # Setting up string values for re-use + short_l1 = 'Less than 50 characters long address' + long_l1 = 'More than 50 characters long address testing line ' + l2 = 'splitting functionality' + + def prepare(self): + """Set up some companies with addresses""" + + Company = self.old_state.apps.get_model('company', 'company') + + Company.objects.create(name='Company 1', address=self.short_l1) + Company.objects.create(name='Company 2', address=self.long_l1 + self.l2) + + def test_address_migration(self): + """Test database state after applying the migration""" + + Address = self.new_state.apps.get_model('company', 'address') + Company = self.new_state.apps.get_model('company', 'company') + + c1 = Company.objects.filter(name='Company 1').first() + c2 = Company.objects.filter(name='Company 2').first() + + self.assertEqual(len(Address.objects.all()), 2) + + a1 = Address.objects.filter(company=c1.pk).first() + a2 = Address.objects.filter(company=c2.pk).first() + + self.assertEqual(a1.line1, self.short_l1) + self.assertEqual(a1.line2, "") + self.assertEqual(a2.line1, self.long_l1) + self.assertEqual(a2.line2, self.l2) + self.assertEqual(c1.address, '') + self.assertEqual(c2.address, '') + + class TestSupplierPartQuantity(MigratorTestCase): """Test that the supplier part quantity is correctly migrated.""" diff --git a/InvenTree/company/tests.py b/InvenTree/company/tests.py index bc9c51fa81..b6c49a5eb6 100644 --- a/InvenTree/company/tests.py +++ b/InvenTree/company/tests.py @@ -4,11 +4,12 @@ import os from decimal import Decimal from django.core.exceptions import ValidationError +from django.db import transaction from django.test import TestCase from part.models import Part -from .models import (Company, Contact, ManufacturerPart, SupplierPart, +from .models import (Address, Company, Contact, ManufacturerPart, SupplierPart, rename_company_image) @@ -35,7 +36,6 @@ class CompanySimpleTest(TestCase): Company.objects.create(name='ABC Co.', description='Seller of ABC products', website='www.abc-sales.com', - address='123 Sales St.', is_customer=False, is_supplier=True) @@ -174,6 +174,88 @@ class ContactSimpleTest(TestCase): self.assertEqual(Contact.objects.count(), 0) +class AddressTest(TestCase): + """Unit tests for the Address model""" + + def setUp(self): + """Initialization for the tests in this class""" + # Create a simple company + self.c = Company.objects.create(name='Test Corp.', description='We make stuff good') + + def test_create(self): + """Test that object creation with only company supplied is successful""" + Address.objects.create(company=self.c) + self.assertEqual(Address.objects.count(), 1) + + def test_delete(self): + """Test Address deletion""" + addr = Address.objects.create(company=self.c) + addr.delete() + self.assertEqual(Address.objects.count(), 0) + + def test_primary_constraint(self): + """Test that there can only be one company-'primary=true' pair""" + c2 = Company.objects.create(name='Test Corp2.', description='We make stuff good') + Address.objects.create(company=self.c, primary=True) + Address.objects.create(company=self.c, primary=False) + + self.assertEqual(Address.objects.count(), 2) + + # Testing the constraint itself + # Intentionally throwing exceptions breaks unit tests unless performed in an atomic block + with transaction.atomic(): + with self.assertRaises(ValidationError): + addr = Address(company=self.c, primary=True, confirm_primary=False) + addr.validate_unique() + + Address.objects.create(company=c2, primary=True, line1="Hellothere", line2="generalkenobi") + + with transaction.atomic(): + with self.assertRaises(ValidationError): + addr = Address(company=c2, primary=True, confirm_primary=False) + addr.validate_unique() + + self.assertEqual(Address.objects.count(), 3) + + def test_first_address_is_primary(self): + """Test that first address related to company is always set to primary""" + + addr = Address.objects.create(company=self.c) + + self.assertTrue(addr.primary) + + # Create another address, which should error out if primary is not set to False + with self.assertRaises(ValidationError): + addr = Address(company=self.c, primary=True) + addr.validate_unique() + + def test_model_str(self): + """Test value of __str__""" + t = "Test address" + l1 = "Busy street 56" + l2 = "Red building" + pcd = "12345" + pct = "City" + pv = "Province" + cn = "COUNTRY" + addr = Address.objects.create(company=self.c, + title=t, + line1=l1, + line2=l2, + postal_code=pcd, + postal_city=pct, + province=pv, + country=cn) + self.assertEqual(str(addr), f'{l1}, {l2}, {pcd}, {pct}, {pv}, {cn}') + + addr2 = Address.objects.create(company=self.c, + title=t, + line1=l1, + postal_code=pcd) + + self.assertEqual(str(addr2), f'{l1}, {pcd}') + + class ManufacturerPartSimpleTest(TestCase): """Unit tests for the ManufacturerPart model""" diff --git a/InvenTree/config_template.yaml b/InvenTree/config_template.yaml index 284e672693..2acbbfbba1 100644 --- a/InvenTree/config_template.yaml +++ b/InvenTree/config_template.yaml @@ -183,6 +183,11 @@ login_default_protocol: http remote_login_enabled: False remote_login_header: HTTP_REMOTE_USER +# JWT tokens +# JWT can be used optionally to authenticate users. Turned off by default. +# Alternatively, use the environment variable INVENTREE_USE_JWT +# use_jwt: True + # Logout redirect configuration # This setting may be required if using remote / proxy login to redirect requests # during the logout process (default is 'index'). Please read the docs for more details @@ -228,3 +233,11 @@ remote_login_header: HTTP_REMOTE_USER # splash: splash_screen.jpg # hide_admin_link: true # hide_password_reset: true + +# Custom flags +# InvenTree uses django-flags; read more in their docs at https://cfpb.github.io/django-flags/conditions/ +# Use environment variable INVENTREE_FLAGS or the settings below +# flags: +# MY_FLAG: +# - condition: 'parameter' +# value: 'my_flag_param1' diff --git a/InvenTree/generic/__init__.py b/InvenTree/generic/__init__.py new file mode 100644 index 0000000000..188874354b --- /dev/null +++ b/InvenTree/generic/__init__.py @@ -0,0 +1,4 @@ +"""The generic module provides high-level functionality that is used in multiple places. + +The generic module is split into sub-modules. Each sub-module provides a specific set of functionality. Each sub-module should be 100% tested within the sub-module. +""" diff --git a/InvenTree/generic/states/__init__.py b/InvenTree/generic/states/__init__.py new file mode 100644 index 0000000000..952c31557a --- /dev/null +++ b/InvenTree/generic/states/__init__.py @@ -0,0 +1,13 @@ +"""States are used to track the logical state of an object. + +The logic value of a state is stored in the database as an integer. The logic value is used for business logic and should not be easily changed therefore. +There is a rendered state for each state value. The rendered state is used for display purposes and can be changed easily. + +States can be extended with custom options for each InvenTree instance - those options are stored in the database and need to link back to state values. +""" + +from .states import StatusCode + +__all__ = [ + StatusCode, +] diff --git a/InvenTree/generic/states/api.py b/InvenTree/generic/states/api.py new file mode 100644 index 0000000000..70e6256232 --- /dev/null +++ b/InvenTree/generic/states/api.py @@ -0,0 +1,54 @@ +"""Generic implementation of status api functions for InvenTree models.""" + +import inspect + +from rest_framework import permissions +from rest_framework.response import Response +from rest_framework.serializers import ValidationError +from rest_framework.views import APIView + +from .states import StatusCode + + +class StatusView(APIView): + """Generic API endpoint for discovering information on 'status codes' for a particular model. + + This class should be implemented as a subclass for each type of status. + For example, the API endpoint /stock/status/ will have information about + all available 'StockStatus' codes + """ + + permission_classes = [ + permissions.IsAuthenticated, + ] + + # Override status_class for implementing subclass + MODEL_REF = 'statusmodel' + + def get_status_model(self, *args, **kwargs): + """Return the StatusCode moedl based on extra parameters passed to the view""" + + status_model = self.kwargs.get(self.MODEL_REF, None) + + if status_model is None: + raise ValidationError(f"StatusView view called without '{self.MODEL_REF}' parameter") + + return status_model + + def get(self, request, *args, **kwargs): + """Perform a GET request to learn information about status codes""" + + status_class = self.get_status_model() + + if not inspect.isclass(status_class): + raise NotImplementedError("`status_class` not a class") + + if not issubclass(status_class, StatusCode): + raise NotImplementedError("`status_class` not a valid StatusCode class") + + data = { + 'class': status_class.__name__, + 'values': status_class.dict(), + } + + return Response(data) diff --git a/InvenTree/generic/states/states.py b/InvenTree/generic/states/states.py new file mode 100644 index 0000000000..f53b008ea1 --- /dev/null +++ b/InvenTree/generic/states/states.py @@ -0,0 +1,170 @@ +"""Generic implementation of status for InvenTree models.""" +import enum +import re + + +class BaseEnum(enum.IntEnum): + """An `Enum` capabile of having its members have docstrings. + + Based on https://stackoverflow.com/questions/19330460/how-do-i-put-docstrings-on-enums + """ + + def __new__(cls, *args): + """Assign values on creation.""" + obj = object.__new__(cls) + obj._value_ = args[0] + return obj + + def __eq__(self, obj): + """Override equality operator to allow comparison with int.""" + if type(self) == type(obj): + return super().__eq__(obj) + return self.value == obj + + def __ne__(self, obj): + """Override inequality operator to allow comparison with int.""" + if type(self) == type(obj): + return super().__ne__(obj) + return self.value != obj + + +class StatusCode(BaseEnum): + """Base class for representing a set of StatusCodes. + + Use enum syntax to define the status codes, e.g. + ```python + PENDING = 10, _("Pending"), 'secondary' + ``` + + The values of the status can be accessed with `StatusCode.PENDING.value`. + + Additionally there are helpers to access all additional attributes `text`, `label`, `color`. + """ + + def __new__(cls, *args): + """Define object out of args.""" + obj = int.__new__(cls) + obj._value_ = args[0] + + # Normal item definition + if len(args) == 1: + obj.label = args[0] + obj.color = 'secondary' + else: + obj.label = args[1] + obj.color = args[2] if len(args) > 2 else 'secondary' + + return obj + + @classmethod + def _is_element(cls, d): + """Check if the supplied value is a valid status code.""" + if d.startswith('_'): + return False + if d != d.upper(): + return False + + value = getattr(cls, d, None) + + if value is None: + return False + if callable(value): + return False + if type(value.value) != int: + return False + return True + + @classmethod + def values(cls, key=None): + """Return a dict representation containing all required information""" + elements = [itm for itm in cls if cls._is_element(itm.name)] + if key is None: + return elements + + ret = [itm for itm in elements if itm.value == key] + if ret: + return ret[0] + return None + + @classmethod + def render(cls, key, large=False): + """Render the value as a HTML label.""" + # If the key cannot be found, pass it back + item = cls.values(key) + if item is None: + return key + + return f"{item.label}" + + @classmethod + def tag(cls): + """Return tag for this status code.""" + # Return the tag if it is defined + if hasattr(cls, '_TAG') and bool(cls._TAG): + return cls._TAG.value + + # Try to find a default tag + # Remove `Status` from the class name + ref_name = cls.__name__.removesuffix('Status') + # Convert to snake case + return re.sub(r'(?Pending") + self.assertEqual(GeneralStatus.render(20), "Placed") + # render with invalid key + self.assertEqual(GeneralStatus.render(100), 100) + + # list + self.assertEqual(GeneralStatus.list(), [{'color': 'secondary', 'key': 10, 'label': 'Pending', 'name': 'PENDING'}, {'color': 'primary', 'key': 20, 'label': 'Placed', 'name': 'PLACED'}, {'color': 'success', 'key': 30, 'label': 'Complete', 'name': 'COMPLETE'}]) + + # text + self.assertEqual(GeneralStatus.text(10), 'Pending') + self.assertEqual(GeneralStatus.text(20), 'Placed') + + # items + self.assertEqual(list(GeneralStatus.items()), [(10, 'Pending'), (20, 'Placed'), (30, 'Complete')]) + + # keys + self.assertEqual(list(GeneralStatus.keys()), ([10, 20, 30])) + + # labels + self.assertEqual(list(GeneralStatus.labels()), ['Pending', 'Placed', 'Complete']) + + # names + self.assertEqual(GeneralStatus.names(), {'PENDING': 10, 'PLACED': 20, 'COMPLETE': 30}) + + # dict + self.assertEqual(GeneralStatus.dict(), { + 'PENDING': {'key': 10, 'name': 'PENDING', 'label': 'Pending', 'color': 'secondary'}, + 'PLACED': {'key': 20, 'name': 'PLACED', 'label': 'Placed', 'color': 'primary'}, + 'COMPLETE': {'key': 30, 'name': 'COMPLETE', 'label': 'Complete', 'color': 'success'}, + }) + + # label + self.assertEqual(GeneralStatus.label(10), 'Pending') + + def test_tag_function(self): + """Test that the status code tag functions.""" + from .tags import status_label + + self.assertEqual(status_label('general', 10), "Pending") + + # invalid type + with self.assertRaises(ValueError) as e: + status_label('invalid', 10) + self.assertEqual(str(e.exception), "Unknown status type 'invalid'") + + # Test non-existent key + self.assertEqual(status_label('general', 100), '100') + + def test_api(self): + """Test StatusView API view.""" + view = StatusView.as_view() + rqst = RequestFactory().get('status/',) + force_authenticate(rqst, user=self.user) + + # Correct call + resp = view(rqst, **{StatusView.MODEL_REF: GeneralStatus}) + self.assertEqual(resp.data, {'class': 'GeneralStatus', 'values': {'COMPLETE': {'key': 30, 'name': 'COMPLETE', 'label': 'Complete', 'color': 'success'}, 'PENDING': {'key': 10, 'name': 'PENDING', 'label': 'Pending', 'color': 'secondary'}, 'PLACED': {'key': 20, 'name': 'PLACED', 'label': 'Placed', 'color': 'primary'}}}) + + # No status defined + resp = view(rqst, **{StatusView.MODEL_REF: None}) + self.assertEqual(resp.status_code, 400) + self.assertEqual(str(resp.rendered_content, 'utf-8'), '["StatusView view called without \'statusmodel\' parameter"]') + + # Invalid call - not a class + with self.assertRaises(NotImplementedError) as e: + resp = view(rqst, **{StatusView.MODEL_REF: 'invalid'}) + self.assertEqual(str(e.exception), "`status_class` not a class") + + # Invalid call - not the right class + with self.assertRaises(NotImplementedError) as e: + resp = view(rqst, **{StatusView.MODEL_REF: object}) + self.assertEqual(str(e.exception), "`status_class` not a valid StatusCode class") diff --git a/InvenTree/generic/templatetags/__init__.py b/InvenTree/generic/templatetags/__init__.py new file mode 100644 index 0000000000..8292854247 --- /dev/null +++ b/InvenTree/generic/templatetags/__init__.py @@ -0,0 +1 @@ +"""Template tags for generic *things*.""" diff --git a/InvenTree/generic/templatetags/generic.py b/InvenTree/generic/templatetags/generic.py new file mode 100644 index 0000000000..af33e9d36b --- /dev/null +++ b/InvenTree/generic/templatetags/generic.py @@ -0,0 +1,10 @@ +"""Template tags for generic *things*.""" + +from django import template + +register = template.Library() +from generic.states.tags import status_label # noqa: E402 + +__all__ = [ + status_label, +] diff --git a/InvenTree/label/admin.py b/InvenTree/label/admin.py index f2b981ff12..ec4cb3f7dd 100644 --- a/InvenTree/label/admin.py +++ b/InvenTree/label/admin.py @@ -13,3 +13,4 @@ class LabelAdmin(admin.ModelAdmin): admin.site.register(label.models.StockItemLabel, LabelAdmin) admin.site.register(label.models.StockLocationLabel, LabelAdmin) admin.site.register(label.models.PartLabel, LabelAdmin) +admin.site.register(label.models.BuildLineLabel, LabelAdmin) diff --git a/InvenTree/label/api.py b/InvenTree/label/api.py index 28bdb6b5a3..724c00e4d5 100644 --- a/InvenTree/label/api.py +++ b/InvenTree/label/api.py @@ -10,6 +10,7 @@ from django.views.decorators.cache import cache_page, never_cache from django_filters.rest_framework import DjangoFilterBackend from rest_framework.exceptions import NotFound +import build.models import common.models import InvenTree.helpers import label.models @@ -368,6 +369,31 @@ class PartLabelPrint(PartLabelMixin, LabelPrintMixin, RetrieveAPI): pass +class BuildLineLabelMixin: + """Mixin class for BuildLineLabel endpoints""" + + queryset = label.models.BuildLineLabel.objects.all() + serializer_class = label.serializers.BuildLineLabelSerializer + + ITEM_MODEL = build.models.BuildLine + ITEM_KEY = 'line' + + +class BuildLineLabelList(BuildLineLabelMixin, LabelListView): + """API endpoint for viewing a list of BuildLineLabel objects""" + pass + + +class BuildLineLabelDetail(BuildLineLabelMixin, RetrieveUpdateDestroyAPI): + """API endpoint for a single BuildLineLabel object""" + pass + + +class BuildLineLabelPrint(BuildLineLabelMixin, LabelPrintMixin, RetrieveAPI): + """API endpoint for printing a BuildLineLabel object""" + pass + + label_api_urls = [ # Stock item labels @@ -408,4 +434,17 @@ label_api_urls = [ # List view re_path(r'^.*$', PartLabelList.as_view(), name='api-part-label-list'), ])), + + # BuildLine labels + re_path(r'^buildline/', include([ + # Detail views + path(r'/', include([ + re_path(r'^print/', BuildLineLabelPrint.as_view(), name='api-buildline-label-print'), + re_path(r'^metadata/', MetadataView.as_view(), {'model': label.models.BuildLineLabel}, name='api-buildline-label-metadata'), + re_path(r'^.*$', BuildLineLabelDetail.as_view(), name='api-buildline-label-detail'), + ])), + + # List view + re_path(r'^.*$', BuildLineLabelList.as_view(), name='api-buildline-label-list'), + ])), ] diff --git a/InvenTree/label/apps.py b/InvenTree/label/apps.py index a53c62c253..51af52a2af 100644 --- a/InvenTree/label/apps.py +++ b/InvenTree/label/apps.py @@ -40,7 +40,7 @@ class LabelConfig(AppConfig): if not isPluginRegistryLoaded() or not isInMainThread(): return - if canAppAccessDatabase(): + if canAppAccessDatabase(allow_test=False): try: self.create_labels() # pragma: no cover @@ -51,12 +51,12 @@ class LabelConfig(AppConfig): def create_labels(self): """Create all default templates.""" # Test if models are ready - from .models import PartLabel, StockItemLabel, StockLocationLabel - assert bool(StockLocationLabel is not None) + import label.models + assert bool(label.models.StockLocationLabel is not None) # Create the categories self.create_labels_category( - StockItemLabel, + label.models.StockItemLabel, 'stockitem', [ { @@ -70,7 +70,7 @@ class LabelConfig(AppConfig): ) self.create_labels_category( - StockLocationLabel, + label.models.StockLocationLabel, 'stocklocation', [ { @@ -91,7 +91,7 @@ class LabelConfig(AppConfig): ) self.create_labels_category( - PartLabel, + label.models.PartLabel, 'part', [ { @@ -111,6 +111,20 @@ class LabelConfig(AppConfig): ] ) + self.create_labels_category( + label.models.BuildLineLabel, + 'buildline', + [ + { + 'file': 'buildline_label.html', + 'name': 'Build Line Label', + 'description': 'Example build line label', + 'width': 125, + 'height': 48, + }, + ] + ) + def create_labels_category(self, model, ref_name, labels): """Create folder and database entries for the default templates, if they do not already exist.""" # Create root dir for templates @@ -173,13 +187,15 @@ class LabelConfig(AppConfig): logger.info(f"Creating entry for {model} '{label['name']}'") - model.objects.create( - name=label['name'], - description=label['description'], - label=filename, - filters='', - enabled=True, - width=label['width'], - height=label['height'], - ) - return + try: + model.objects.create( + name=label['name'], + description=label['description'], + label=filename, + filters='', + enabled=True, + width=label['width'], + height=label['height'], + ) + except Exception: + logger.warning(f"Failed to create label '{label['name']}'") diff --git a/InvenTree/label/migrations/0010_buildlinelabel.py b/InvenTree/label/migrations/0010_buildlinelabel.py new file mode 100644 index 0000000000..329c274367 --- /dev/null +++ b/InvenTree/label/migrations/0010_buildlinelabel.py @@ -0,0 +1,33 @@ +# Generated by Django 3.2.19 on 2023-06-13 11:10 + +import django.core.validators +from django.db import migrations, models +import label.models + + +class Migration(migrations.Migration): + + dependencies = [ + ('label', '0009_auto_20230317_0816'), + ] + + operations = [ + migrations.CreateModel( + name='BuildLineLabel', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('metadata', models.JSONField(blank=True, help_text='JSON metadata field, for use by external plugins', null=True, verbose_name='Plugin Metadata')), + ('name', models.CharField(help_text='Label name', max_length=100, verbose_name='Name')), + ('description', models.CharField(blank=True, help_text='Label description', max_length=250, null=True, verbose_name='Description')), + ('label', models.FileField(help_text='Label template file', unique=True, upload_to=label.models.rename_label, validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['html'])], verbose_name='Label')), + ('enabled', models.BooleanField(default=True, help_text='Label template is enabled', verbose_name='Enabled')), + ('width', models.FloatField(default=50, help_text='Label width, specified in mm', validators=[django.core.validators.MinValueValidator(2)], verbose_name='Width [mm]')), + ('height', models.FloatField(default=20, help_text='Label height, specified in mm', validators=[django.core.validators.MinValueValidator(2)], verbose_name='Height [mm]')), + ('filename_pattern', models.CharField(default='label.pdf', help_text='Pattern for generating label filenames', max_length=100, verbose_name='Filename Pattern')), + ('filters', models.CharField(blank=True, help_text='Query filters (comma-separated list of key=value pairs)', max_length=250, validators=[label.models.validate_build_line_filters], verbose_name='Filters')), + ], + options={ + 'abstract': False, + }, + ), + ] diff --git a/InvenTree/label/migrations/0011_auto_20230623_2158.py b/InvenTree/label/migrations/0011_auto_20230623_2158.py new file mode 100644 index 0000000000..764925fc07 --- /dev/null +++ b/InvenTree/label/migrations/0011_auto_20230623_2158.py @@ -0,0 +1,29 @@ +# Generated by Django 3.2.19 on 2023-06-23 21:58 + +from django.db import migrations, models +import label.models + + +class Migration(migrations.Migration): + + dependencies = [ + ('label', '0010_buildlinelabel'), + ] + + operations = [ + migrations.AlterField( + model_name='partlabel', + name='filters', + field=models.CharField(blank=True, help_text='Query filters (comma-separated list of key=value pairs)', max_length=250, validators=[label.models.validate_part_filters], verbose_name='Filters'), + ), + migrations.AlterField( + model_name='stockitemlabel', + name='filters', + field=models.CharField(blank=True, help_text='Query filters (comma-separated list of key=value pairs)', max_length=250, validators=[label.models.validate_stock_item_filters], verbose_name='Filters'), + ), + migrations.AlterField( + model_name='stocklocationlabel', + name='filters', + field=models.CharField(blank=True, help_text='Query filters (comma-separated list of key=value pairs)', max_length=250, validators=[label.models.validate_stock_location_filters], verbose_name='Filters'), + ), + ] diff --git a/InvenTree/label/models.py b/InvenTree/label/models.py index 8bbd1b19a0..926fdf5e42 100644 --- a/InvenTree/label/models.py +++ b/InvenTree/label/models.py @@ -13,6 +13,7 @@ from django.template.loader import render_to_string from django.urls import reverse from django.utils.translation import gettext_lazy as _ +import build.models import part.models import stock.models from InvenTree.helpers import normalize, validateFilterString @@ -59,6 +60,13 @@ def validate_part_filters(filters): return filters +def validate_build_line_filters(filters): + """Validate query filters for the BuildLine model""" + filters = validateFilterString(filters, model=build.models.BuildLine) + + return filters + + class WeasyprintLabelMixin(WeasyTemplateResponseMixin): """Class for rendering a label to a PDF.""" @@ -239,7 +247,7 @@ class StockItemLabel(LabelTemplate): filters = models.CharField( blank=True, max_length=250, - help_text=_('Query filters (comma-separated list of key=value pairs),'), + help_text=_('Query filters (comma-separated list of key=value pairs)'), verbose_name=_('Filters'), validators=[ validate_stock_item_filters @@ -280,7 +288,7 @@ class StockLocationLabel(LabelTemplate): filters = models.CharField( blank=True, max_length=250, - help_text=_('Query filters (comma-separated list of key=value pairs'), + help_text=_('Query filters (comma-separated list of key=value pairs)'), verbose_name=_('Filters'), validators=[ validate_stock_location_filters] @@ -308,7 +316,7 @@ class PartLabel(LabelTemplate): filters = models.CharField( blank=True, max_length=250, - help_text=_('Part query filters (comma-separated value of key=value pairs)'), + help_text=_('Query filters (comma-separated list of key=value pairs)'), verbose_name=_('Filters'), validators=[ validate_part_filters @@ -330,3 +338,38 @@ class PartLabel(LabelTemplate): 'qr_url': request.build_absolute_uri(part.get_absolute_url()), 'parameters': part.parameters_map(), } + + +class BuildLineLabel(LabelTemplate): + """Template for printing labels against BuildLine objects""" + + @staticmethod + def get_api_url(): + """Return the API URL associated with the BuildLineLabel model""" + return reverse('api-buildline-label-list') + + SUBDIR = 'buildline' + + filters = models.CharField( + blank=True, max_length=250, + help_text=_('Query filters (comma-separated list of key=value pairs)'), + verbose_name=_('Filters'), + validators=[ + validate_build_line_filters + ] + ) + + def get_context_data(self, request): + """Generate context data for each provided BuildLine object.""" + + build_line = self.object_to_print + + return { + 'build_line': build_line, + 'build': build_line.build, + 'bom_item': build_line.bom_item, + 'part': build_line.bom_item.sub_part, + 'quantity': build_line.quantity, + 'allocated_quantity': build_line.allocated_quantity, + 'allocations': build_line.allocations, + } diff --git a/InvenTree/label/serializers.py b/InvenTree/label/serializers.py index 21a8185b3a..576d4af8fa 100644 --- a/InvenTree/label/serializers.py +++ b/InvenTree/label/serializers.py @@ -52,3 +52,13 @@ class PartLabelSerializer(LabelSerializerBase): model = label.models.PartLabel fields = LabelSerializerBase.label_fields() + + +class BuildLineLabelSerializer(LabelSerializerBase): + """Serializes a BuildLineLabel object""" + + class Meta: + """Metaclass options.""" + + model = label.models.BuildLineLabel + fields = LabelSerializerBase.label_fields() diff --git a/InvenTree/label/templates/label/buildline/buildline_label.html b/InvenTree/label/templates/label/buildline/buildline_label.html new file mode 100644 index 0000000000..efbb9a3db6 --- /dev/null +++ b/InvenTree/label/templates/label/buildline/buildline_label.html @@ -0,0 +1,3 @@ +{% extends "label/buildline/buildline_label_base.html" %} + + diff --git a/InvenTree/label/templates/label/buildline/buildline_label_base.html b/InvenTree/label/templates/label/buildline/buildline_label_base.html new file mode 100644 index 0000000000..bec22c5cbb --- /dev/null +++ b/InvenTree/label/templates/label/buildline/buildline_label_base.html @@ -0,0 +1,74 @@ +{% extends "label/label_base.html" %} +{% load barcode report %} +{% load inventree_extras %} + + + +{% block style %} + +{{ block.super }} + +.label { + margin: 1mm; +} + +.qr { + height: 28mm; + width: 28mm; + position: relative; + top: 0mm; + right: 0mm; + float: right; +} + +.label-table { + width: 100%; + border-collapse: collapse; + border: 1pt solid black; +} + +.label-table tr { + width: 100%; + border-bottom: 1pt solid black; + padding: 2.5mm; +} + +.label-table td { + padding: 3mm; +} + +{% endblock style %} + +{% block content %} + +
+
+ + + + + + + + +
+ Build Order: {{ build.reference }}
+ Build Qty: {% decimal build.quantity %}
+
+ build qr +
+ Part: {{ part.name }}
+ {% if part.IPN %} + IPN: {{ part.IPN }}
+ {% endif %} + Qty / Unit: {% decimal bom_item.quantity %} {% if part.units %}[{{ part.units }}]{% endif %}
+ Qty Total: {% decimal quantity %} {% if part.units %}[{{ part.units }}]{% endif %} +
+ part qr +
+
+ +{% endblock content %} diff --git a/InvenTree/label/templates/label/part/part_label.html b/InvenTree/label/templates/label/part/part_label.html index ef4af6be41..45f1d569f5 100644 --- a/InvenTree/label/templates/label/part/part_label.html +++ b/InvenTree/label/templates/label/part/part_label.html @@ -28,7 +28,7 @@ {% block content %} -{% trans 'QC Code' %} +{% trans 'QR Code' %}
{{ part.full_name }} diff --git a/InvenTree/label/templates/label/stockitem/qr.html b/InvenTree/label/templates/label/stockitem/qr.html index 3a67a7793d..2208dd53c3 100644 --- a/InvenTree/label/templates/label/stockitem/qr.html +++ b/InvenTree/label/templates/label/stockitem/qr.html @@ -18,5 +18,5 @@ {% block content %} -{% trans 'QC Code' %} +{% trans 'QR Code' %} {% endblock content %} diff --git a/InvenTree/label/templates/label/stocklocation/qr.html b/InvenTree/label/templates/label/stocklocation/qr.html index 3a67a7793d..2208dd53c3 100644 --- a/InvenTree/label/templates/label/stocklocation/qr.html +++ b/InvenTree/label/templates/label/stocklocation/qr.html @@ -18,5 +18,5 @@ {% block content %} -{% trans 'QC Code' %} +{% trans 'QR Code' %} {% endblock content %} diff --git a/InvenTree/locale/cs/LC_MESSAGES/django.po b/InvenTree/locale/cs/LC_MESSAGES/django.po index b45632fdba..f0d3691f6b 100644 --- a/InvenTree/locale/cs/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:43\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -25,19 +25,19 @@ msgstr "API endpoint nebyl nalezen" msgid "User does not have permission to view this model" msgstr "Uživatel nemá právo zobrazit tento model" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "Není k dispozici žádná hodnota" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "Zadaná hodnota není platné číslo" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "Zadaná hodnota má neplatnou jednotku" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "Zadaná hodnota nemohla být převedena na danou jednotku" @@ -49,26 +49,26 @@ msgstr "Podrobnosti o chybě lze nalézt v panelu administrace" msgid "Enter date" msgstr "Zadejte datum" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Poznámky" @@ -81,47 +81,51 @@ msgstr "Hodnota '{name}' neodpovídá formátu vzoru" msgid "Provided value does not match required pattern: " msgstr "Poskytnutá hodnota neodpovídá požadovanému vzoru: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Zadejte heslo" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Zadejte nové heslo" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Potvrďte heslo" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Potvrďte nové heslo" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Původní heslo" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Email (znovu)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Potvrzení emailové adresy" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Pokaždé musíte zadat stejný email." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Zadaná primární e-mailová adresa je neplatná." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Zadaná e-mailová doména není povolena." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Vyplněno neplatné množství" @@ -237,9 +241,9 @@ msgstr "Chybějící soubor" msgid "Missing external link" msgstr "Chybějící externí odkaz" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Příloha" @@ -247,29 +251,30 @@ msgstr "Příloha" msgid "Select file to attach" msgstr "Vyberte soubor k přiložení" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Odkaz" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Odkaz na externí URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Komentář" @@ -277,13 +282,13 @@ msgstr "Komentář" msgid "File comment" msgstr "Komentář k souboru" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Uživatel" @@ -324,54 +329,54 @@ msgstr "Duplicitní názvy nemohou existovat pod stejným nadřazeným názvem" msgid "Invalid choice" msgstr "Neplatný výběr" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Název" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Popis" @@ -384,7 +389,7 @@ msgid "parent" msgstr "nadřazený" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Cesta" @@ -420,12 +425,12 @@ msgstr "Chyba serveru" msgid "An error has been logged by the server." msgstr "Server zaznamenal chybu." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Musí být platné číslo" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "URL souboru vzdáleného obrázku" msgid "Downloading images from remote URL is not enabled" msgstr "Stahování obrázků ze vzdálené URL není povoleno" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Čeština" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Dánština" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Němčina" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Řečtina" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Angličtina" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Španělština" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Španělština (Mexiko)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Farsi / Perština" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "Finština" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Francouzština" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hebrejština" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Maďarština" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italština" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japonština" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Korejština" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Nizozemština" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norština" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polština" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugalština" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugalština (Brazilská)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Ruština" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Slovinština" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Švédština" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Thajština" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Turečtina" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamština" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Čínština" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Kontrola procesů na pozadí se nezdařila" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "Email backend není nakonfigurován" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "Kontroly zdraví systému InvenTree selhaly" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Nevyřízeno" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Umístěno" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Hotovo" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Zrušeno" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Ztraceno" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Vráceno" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "Zpracovává se" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Odesláno" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Vyžaduje pozornost" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Poškozeno" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Zničeno" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Odmítnuto" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "V karanténě" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Původní položka sledování zásob" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Položka zásob vytvořena" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Položka zásob upravena" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Přiřazeno výrobní číslo" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Stav zásob sečten" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Zásoba přidána ručně" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Zásoba odebrána ručně" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Umístění změněno" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "Stav zásob byl aktualizován" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Nainstalováno do sestavy" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Odstraněno ze sestavy" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Instalovaná položka komponenty" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Odstraněná komponenta" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Rozdělit od nadřazené položky" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Rozdělit podřazený předmět" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Sloučené položky zásob" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Převedeno na variantu" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Odesláno zákazníkovi" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Vráceno od zákazníka" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Výstup objednávky byl vytvořen" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Výstup objednávky sestavení dokončen" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "Výstup objednávky sestavení byl odmítnut" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Spotřebováno podle objednávky" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "Odesláno v souladu se zákaznickou objednávkou" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "Přijato proti objednávce" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "Vráceno proti vratce" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Odesláno zákazníkovi" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Vráceno od zákazníka" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Výroba" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "Vrátit zpět" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "Oprava" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "Vrácení peněz" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "Náhrada" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "Vrácení peněz" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "Odmítnout" @@ -831,99 +839,127 @@ msgstr "Nesmí přesáhnout 100%" msgid "Invalid value for overage" msgstr "Neplatná hodnota překročení" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Upravit informace o uživateli" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Nastavit heslo" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Hesla se musí shodovat" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Zadáno špatné heslo" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Informace o systému" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "O InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Sestavení musí být zrušeno před odstraněním" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Vytvořit objednávku" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Vytvořené objednávky" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Neplatná volba nadřazeného sestavení" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Referenční číslo objednávky" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Reference" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "Stručný popis sestavení (nepovinné)" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Nadřazená sestava" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Příkaz sestavení pro který je toto sestavení přiděleno" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Příkaz sestavení pro který je toto sestavení přiděleno" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Díl" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Vyber téma, které chceš stavět" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Referenční číslo prodejní objednávky" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Prodejní příkaz, kterému je tato verze přidělena" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Umístění lokace" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Cílová lokace" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Vyberte lokaci, kde budou dokončené položky uloženy" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Množství sestav" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Počet skladových položek k sestavení" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Dokončené položky" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Počet skladových položek, které byly dokončeny" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Stav sestavení" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Stavový kód sestavení" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Datum vytvoření" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Cílové datum dokončení" -#: build/models.py:258 +#: build/models.py:262 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:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Datum dokončení" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "dokončil" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Vystavil" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Uživatel, který vydal tento příkaz k sestavení" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Odpovědný" -#: build/models.py:285 +#: build/models.py:289 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:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Externí odkaz" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "Priorita sestavení" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "Priorita tohoto příkazu k sestavení" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Příkaz k sestavení {build} byl dokončen" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Příkaz k sestavení byl dokončen" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Nebyl specifikováno žádný výstup sestavení" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Výstup sestavení je již dokončen" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Výstup sestavení neodpovídá příkazu sestavení" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "Množství musí být vyšší než nula" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 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:1272 -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:1281 -#, 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:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Skladová položka je nadměrně zabrána" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Zabrané množství musí být větší než nula" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Množství musí být 1 pro zřetězený sklad" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Vybraná skladová položka nebyla v BOM nalezena" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Sestavení" - -#: build/models.py:1439 -msgid "Build to allocate parts" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +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:1371 +#, 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:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Skladová položka je nadměrně zabrána" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Zabrané množství musí být větší než nula" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Množství musí být 1 pro zřetězený sklad" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Možné zakoupit" @@ -2297,8 +2294,8 @@ msgstr "Možné zakoupit" msgid "Parts are purchaseable by default" msgstr "Díly jsou zakoupitelné ve výchozím nastavení" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Prodejné" @@ -2306,10 +2303,10 @@ msgstr "Prodejné" msgid "Parts are salable by default" msgstr "Díly jsou prodejné ve výchozím nastavení" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Sledovatelné" @@ -2317,10 +2314,10 @@ msgstr "Sledovatelné" msgid "Parts are trackable by default" msgstr "Díly jsou sledovatelné ve výchozím nastavení" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Nehmotné (virtuální)" @@ -2352,7 +2349,7 @@ msgstr "Počáteční údaje zásob" 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:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Počáteční údaje dodavatele" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "Výchozí ikona kategorie dílu (prázdné znamená bez ikony)" #: common/models.py:1253 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 msgid "Minimum Pricing Decimal Places" msgstr "Minimální počet desetinných míst u cen" -#: common/models.py:1254 +#: common/models.py:1261 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:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "Maximální počet desetinných míst u cen" -#: common/models.py:1265 +#: common/models.py:1272 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:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "Použít ceny dodavatele" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "Přepsání historie nákupu" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Velikost stránky" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Výchozí velikost stránky pro PDF reporty" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "Povolit testovací reporty" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "Povolit generování zkušebních reportů" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "Připojit testovací reporty" -#: common/models.py:1396 +#: common/models.py:1403 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:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 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:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "Automaticky vyplnit sériová čísla" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "Automaticky vyplnit sériová čísla ve formulářích" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "Odstranit vyčerpané zásoby" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "Určuje výchozí chování, když je vyčerpána skladová položka" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "Formát data" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Cena" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "Id" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "Obrazek" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Webová stránka" @@ -3505,303 +3495,388 @@ msgstr "Webová stránka" msgid "Company website URL" msgstr "Webové stránky společnosti" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Adresa" - -#: company/models.py:119 -msgid "Company address" -msgstr "Adresa společnosti" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Telefonní číslo" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Kontaktní telefonní číslo" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "E-mail" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Kontaktní e-mailová adresa" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Kontakt" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Kontaktní místo" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "je zákazník" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Společnost" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Základní díl" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Zvolte díl" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Výrobce" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Vyberte výrobce" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "Číslo dílu výrobce" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "Popis dílu výrobce" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Výrobce dílu" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Název parametru" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Hodnota" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Hodnota parametru" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Jednotky" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "Upravit údaje o společnosti" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Upravit společnost" @@ -3854,17 +3929,17 @@ msgstr "Stáhnout obrázek z URL" msgid "Delete image" msgstr "Smazat obrázek" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Zákazník" @@ -3872,6 +3947,13 @@ msgstr "Zákazník" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Adresa" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Telefon" @@ -3904,7 +3986,7 @@ msgstr "Stáhnout obrázek" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Dodavatel dílů" @@ -3914,129 +3996,121 @@ msgstr "Vytvořit nového dodavatele dílu" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Nová díl dodavatele" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Objednávka dílů" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Odstranit díly" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Odstraněné díly" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 msgid "Manufacturer Parts" msgstr "Výrobce dílů" -#: company/templates/company/detail.html:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Vytvořit nového výrobce dílu" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Nový výrobce dílu" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Dodavatelský sklad" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Zakoupené objednávky" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Poznámky ke společnosti" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Odstranit" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Činnost nebyla specifikována" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "Pro data čárového kódu byla nalezena shoda" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Sestavení" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "Domovská stránka" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "Vybrané díly" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Objednávka dílů" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Odstranit" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "Ano" @@ -12663,35 +12823,35 @@ msgstr "Oprávnění" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "Nastavení oprávnění" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "Skupina" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "Zobrazit" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "Oprávnění k zobrazení položek" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "Oprávnění přidat položky" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "Změnit" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "Oprávnění k úpravě položek" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "Oprávnění k odstranění položek" diff --git a/InvenTree/locale/da/LC_MESSAGES/django.po b/InvenTree/locale/da/LC_MESSAGES/django.po index 4720a56faa..3f776286bf 100644 --- a/InvenTree/locale/da/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:43\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -25,19 +25,19 @@ msgstr "API endpoint ikke fundet" msgid "User does not have permission to view this model" msgstr "" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "Fejloplysninger kan findes i admin panelet" msgid "Enter date" msgstr "Angiv dato" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Bemærkninger" @@ -81,47 +81,51 @@ msgstr "Værdi '{name}' vises ikke i mønsterformat" msgid "Provided value does not match required pattern: " msgstr "Den angivne værdi matcher ikke det påkrævede mønster: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Indtast adgangskode" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Indtast ny adgangskode" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Bekræft adgangskode" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Bekræft ny adgangskode" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Gammel adgangskode" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "E-mail (igen)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Bekræftelse af e-mailadresse" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Du skal indtaste den samme e-mail hver gang." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Den indtastede email adresse er ikke gyldig." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Det angivne e-mail domæne er ikke godkendt." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Ugyldigt antal angivet" @@ -237,9 +241,9 @@ msgstr "Manglende fil" msgid "Missing external link" msgstr "Manglende eksternt link" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Vedhæftning" @@ -247,29 +251,30 @@ msgstr "Vedhæftning" msgid "Select file to attach" msgstr "Vælg fil, der skal vedhæftes" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Link" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Link til ekstern URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Kommentar" @@ -277,13 +282,13 @@ msgstr "Kommentar" msgid "File comment" msgstr "Fil kommentar" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Bruger" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "Ugyldigt valg" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Navn" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Beskrivelse" @@ -384,7 +389,7 @@ msgid "parent" msgstr "overordnet" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Sti" @@ -420,12 +425,12 @@ msgstr "Serverfejl" msgid "An error has been logged by the server." msgstr "En fejl blev logget af serveren." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Skal være et gyldigt tal" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "URL til ekstern billedfil" msgid "Downloading images from remote URL is not enabled" msgstr "Download af billeder fra ekstern URL er ikke aktiveret" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Tjekkisk" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Dansk" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Tysk" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Græsk" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Engelsk" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Spansk" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Spansk (Mexikansk)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Farsi / Persisk" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Fransk" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hebraisk" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Ungarsk" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italiensk" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japansk" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Koreansk" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Hollandsk" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norsk" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polsk" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugisisk" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugisisk (Brasilien)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Russisk" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Slovensk" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Svensk" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Thailandsk" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Tyrkisk" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamesisk" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Kinesisk" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Kontrol af baggrundstjeneste mislykkedes" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "E-mail backend ej konfigureret" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "Helbredstjek af InvenTree system mislykkedes" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Afventende" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Placeret" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Fuldført" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Annulleret" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Mistet" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Returneret" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Afsendt" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Opmærksomhed påkrævet" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Beskadiget" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Destrueret" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Afvist" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "I karantæne" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Forældet lager sporings post" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Lager-element oprettet" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Redigeret lager-element" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Serienummer tildelt" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Lagerbeholdning optalt" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Lagerbeholdning tilføjet manuelt" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Lagerbeholdning fjernet manuelt" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Lokation ændret" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Monteret i samling" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Fjernet fra samling" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Installeret komponent element" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Fjernet komponent element" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Opdel fra overordnet element" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Opdel underordnet element" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Flettede lagervarer" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Konverteret til variant" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Sendt til kunde" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Returneret fra kunde" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Byggeordre output genereret" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Byggeorder output fuldført" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Brugt efter byggeordre" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Sendt til kunde" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Returneret fra kunde" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Produktion" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "Overskuddet må ikke overstige 100%" msgid "Invalid value for overage" msgstr "Ugyldig værdi for overskud" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Rediger brugerinformation" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Vælg adgangskode" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "De indtastede adgangskoder skal være ens" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Forkert adgangskode indtastet" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Systemoplysninger" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Om InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Produktion skal anulleres, før den kan slettes" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Produktionsordre" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Produktionsordrer" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Ugyldigt valg for overordnet produktion" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Produktionsordre reference" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Reference" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Overordnet produktion" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Produktionsordre som er tildelt denne produktion" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Produktionsordre som er tildelt denne produktion" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Del" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Vælg dele til produktion" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Salgsordrereference" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Salgsordre, som er tildelt denne produktion" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Kilde Lokation" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Destinations Placering" -#: build/models.py:216 +#: build/models.py:220 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:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Produktions antal" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Antal lagervarer som skal produceres" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Afsluttede elementer" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Antal lagervarer som er færdiggjort" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Produktions Status" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Produktions statuskode" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Batch Kode" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Batch kode til dette produktions output" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Oprettelsesdato" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Projekteret afslutningsdato" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Dato for afslutning" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "udført af" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Udstedt af" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Bruger som udstedte denne byggeordre" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Ansvarlig" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "Bruger eller gruppe ansvarlig for denne byggeordre" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Ekstern link" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "Bygge Prioritet" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "Prioritet af denne byggeordre" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Bygningsordre {build} er fuldført" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "En byggeordre er fuldført" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2297,8 +2294,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,10 +2303,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2317,10 +2314,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3872,6 +3947,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN skal matche regex mønster {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/de/LC_MESSAGES/django.po b/InvenTree/locale/de/LC_MESSAGES/django.po index 4e5482a50f..c80ba0c447 100644 --- a/InvenTree/locale/de/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:43\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -25,21 +25,21 @@ msgstr "API-Endpunkt nicht gefunden" msgid "User does not have permission to view this model" msgstr "Benutzer hat keine Berechtigung, dieses Modell anzuzeigen" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" -msgstr "" +msgstr "Kein Wert angegeben" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" -msgstr "" +msgstr "Angegebener Wert ist keine gültige Zahl" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" -msgstr "" +msgstr "Angegebener Wert hat eine ungültige Einheit" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" -msgstr "" +msgstr "Angegebener Wert konnte nicht in die angegebene Einheit umgewandelt werden" #: InvenTree/exceptions.py:90 msgid "Error details can be found in the admin panel" @@ -49,26 +49,26 @@ msgstr "Fehlerdetails finden Sie im Admin-Panel" msgid "Enter date" msgstr "Datum eingeben" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Notizen" @@ -81,47 +81,51 @@ msgstr "Wert '{name}' hält das Musterformat nicht ein" msgid "Provided value does not match required pattern: " msgstr "Angegebener Wert entspricht nicht dem benötigten Muster: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Passwort eingeben" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Neues Passwort eingeben" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Passwort wiederholen" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Neues Passwort bestätigen" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Altes Passwort" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "E-Mail (nochmal)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Bestätigung der E-Mail Adresse" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "E-Mail Adressen müssen übereinstimmen." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Die angegebene primäre E-Mail-Adresse ist ungültig." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Die angegebene E-Mail-Domain ist nicht freigegeben." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Keine gültige Menge" @@ -237,9 +241,9 @@ msgstr "Fehlende Datei" msgid "Missing external link" msgstr "Fehlender externer Link" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Anhang" @@ -247,29 +251,30 @@ msgstr "Anhang" msgid "Select file to attach" msgstr "Datei zum Anhängen auswählen" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Link" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Link zu einer externen URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Kommentar" @@ -277,13 +282,13 @@ msgstr "Kommentar" msgid "File comment" msgstr "Datei-Kommentar" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Benutzer" @@ -324,54 +329,54 @@ msgstr "Doppelte Namen können nicht unter dem selben Elternteil existieren" msgid "Invalid choice" msgstr "Ungültige Auswahl" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Name" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Beschreibung" @@ -384,7 +389,7 @@ msgid "parent" msgstr "Eltern" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Pfad" @@ -420,12 +425,12 @@ msgstr "Serverfehler" msgid "An error has been logged by the server." msgstr "Ein Fehler wurde vom Server protokolliert." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Muss eine gültige Nummer sein" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,322 +503,325 @@ msgstr "URL der Remote-Bilddatei" msgid "Downloading images from remote URL is not enabled" msgstr "Das Herunterladen von Bildern von Remote-URLs ist nicht aktiviert" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Tschechisch" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Dänisch" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Deutsch" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Griechisch" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Englisch" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Spanisch" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Spanisch (Mexikanisch)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Persisch" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" -msgstr "" +msgstr "Beenden" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Französisch" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hebräisch" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Ungarisch" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italienisch" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japanisch" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Koreanisch" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Niederländisch" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norwegisch" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polnisch" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugiesisch" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugiesisch (Brasilien)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Russisch" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Slowenisch" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Schwedisch" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Thailändisch" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Türkisch" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamesisch" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Chinesisch" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Hintergrund-Prozess-Kontrolle fehlgeschlagen" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "E-Mail-Backend nicht konfiguriert" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "InvenTree Status-Überprüfung fehlgeschlagen" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Ausstehend" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Platziert" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Fertig" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Storniert" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Verloren" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Zurückgegeben" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "In Bearbeitung" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Versendet" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "erfordert Eingriff" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Beschädigt" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Zerstört" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Zurückgewiesen" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "In Quarantäne" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Alter Bestand-Verfolgungs-Eintrag" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Lagerartikel erstellt" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Lagerartikel bearbeitet" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Seriennummer hinzugefügt" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Bestand gezählt" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Bestand manuell hinzugefügt" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Bestand manuell entfernt" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Standort geändert" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "Lagerbestand aktualisiert" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "In Baugruppe installiert" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Aus Baugruppe entfernt" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Komponente installiert" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Komponente entfernt" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Vom übergeordneten Element geteilt" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Unterobjekt geteilt" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Lagerartikel zusammengeführt" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "In Variante umgewandelt" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Zum Kunden geschickt" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Rücksendung vom Kunden" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Endprodukt erstellt" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Endprodukt fertiggestellt" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" -msgstr "" +msgstr "Endprodukt abgelehnt" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Durch Bauauftrag verbraucht" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" -msgstr "" +msgstr "Versandt gegen Verkaufsauftrag" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" -msgstr "" +msgstr "Gegen Bestellung empfangen" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" -msgstr "" +msgstr "Zurückgeschickt gegen Rücksendeauftrag" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Zum Kunden geschickt" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Rücksendung vom Kunden" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "in Arbeit" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" -msgstr "" +msgstr "Zurück" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "Reparatur" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "Rückerstattung" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "Ersetzen" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "Rückerstattung" + +#: InvenTree/status_codes.py:203 msgid "Reject" -msgstr "" +msgstr "Ablehnen" #: InvenTree/validators.py:32 InvenTree/validators.py:34 msgid "Invalid physical unit" -msgstr "" +msgstr "Ungültige physikalische Einheit" #: InvenTree/validators.py:40 msgid "Not a valid currency code" @@ -831,99 +839,127 @@ msgstr "Überschuss darf 100% nicht überschreiten" msgid "Invalid value for overage" msgstr "Ungültiger Wert für Ausschuss" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Benutzerinformationen bearbeiten" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Passwort eingeben" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Passwörter stimmen nicht überein" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Falsches Passwort angegeben" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Systeminformationen" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Über InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Bauauftrag muss abgebrochen werden, bevor er gelöscht werden kann" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "Verbrauchsmaterial" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "Optional" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "Nachverfolgt" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "Zugeordnet" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Bauauftrag" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Bauaufträge" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Ungültige Wahl für übergeordneten Bauauftrag" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Bauauftragsreferenz" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Referenz" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "Kurze Beschreibung des Baus (optional)" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Eltern-Bauauftrag" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Bauauftrag, zu dem dieser Bauauftrag zugwiesen ist" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Bauauftrag, zu dem dieser Bauauftrag zugwiesen ist" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Teil" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Teil für den Bauauftrag wählen" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Auftrag Referenz" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Bestellung, die diesem Bauauftrag zugewiesen ist" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Quell-Lagerort" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Ziel-Lagerort" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Lagerort an dem fertige Objekte gelagert werden auswählen" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Bau-Anzahl" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Anzahl der zu bauenden Lagerartikel" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Fertiggestellte Teile" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Anzahl der fertigen Lagerartikel" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Bauauftrags-Status" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Bau-Statuscode" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Losnummer" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Losnummer für dieses Endprodukt" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Erstelldatum" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "geplantes Fertigstellungsdatum" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Zieldatum für Bauauftrag-Fertigstellung." -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Fertigstellungsdatum" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "Fertiggestellt von" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Aufgegeben von" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Nutzer der diesen Bauauftrag erstellt hat" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Verantwortlicher Benutzer" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "Benutzer oder Gruppe verantwortlich für diesen Bauauftrag" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Externer Link" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "Bauauftrags-Priorität" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "Priorität dieses Bauauftrags" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "Projektcode" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Bauauftrag {build} wurde fertiggestellt" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Ein Bauauftrag wurde fertiggestellt" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "kein Endprodukt angegeben" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Endprodukt bereits hergstellt" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Endprodukt stimmt nicht mit dem Bauauftrag überein" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "Anzahl muss größer Null sein" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" +msgstr "Menge kann nicht größer als die Ausgangsmenge sein" + +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1272 -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:1281 -#, 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:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "BestandObjekt ist zu oft zugewiesen" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Reserviermenge muss größer null sein" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Anzahl muss 1 für Objekte mit Seriennummer sein" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Ausgewähltes Bestands-Objekt nicht in Stückliste für Teil '{p}' gefunden" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Bauauftrag" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Bauauftrag starten um Teile zuzuweisen" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Lagerartikel" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Quell-Lagerartikel" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Anzahl" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +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:1371 +#, 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:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "BestandObjekt ist zu oft zugewiesen" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Reserviermenge muss größer null sein" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Anzahl muss 1 für Objekte mit Seriennummer sein" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Lagerartikel" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Quell-Lagerartikel" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Anzahl an Lagerartikel dem Bauauftrag zuweisen" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Installiere in" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Ziel-Lagerartikel" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Endprodukt" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "Endprodukt stimmt nicht mit übergeordnetem Bauauftrag überein" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "Endprodukt entspricht nicht dem Teil des Bauauftrags" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Dieses Endprodukt wurde bereits fertiggestellt" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "Dieses Endprodukt ist nicht vollständig zugewiesen" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Menge der Endprodukte angeben" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "Ganzzahl für verfolgbare Teile erforderlich" -#: build/serializers.py:261 +#: build/serializers.py:269 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:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Seriennummer" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Seriennummer für dieses Endprodukt eingeben" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "Seriennummern automatisch zuweisen" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "Benötigte Lagerartikel automatisch mit passenden Seriennummern zuweisen" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "Die folgenden Seriennummern existieren bereits oder sind ungültig" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "Eine Liste von Endprodukten muss angegeben werden" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Lagerort" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" -msgstr "" +msgstr "Lagerort für ausgemusterte Ausgänge" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" -msgstr "" +msgstr "Zuteilungen verwerfen" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" -msgstr "" +msgstr "Bestandszuteilung für ausgemusterte Endprodukte verwerfen" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" -msgstr "" +msgstr "Grund für das Verwerfen des Bauauftrages/der Bauaufträge" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "Lagerort für fertige Endprodukte" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Status" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "Unvollständige Zuweisung akzeptieren" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "Endprodukte fertigstellen, auch wenn Bestand nicht fertig zugewiesen wurde" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "Zugewiesenen Bestand entfernen" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "Abzug aller Lagerbestände, die diesem Build bereits zugewiesen wurden" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "Unfertige Endprodukte entfernen" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "Lösche alle noch nicht abgeschlossenen Endprodukte" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "Nicht erlaubt" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "Als von diesem Bauauftrag verbraucht setzen" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "Bestandszuordnung vor dem Abschluss dieses Bauauftrags freigeben" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "Überbelegter Lagerbestand" -#: build/serializers.py:633 +#: build/serializers.py:641 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:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "Der Bestand einiger Lagerartikel ist überbelegt" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "Nicht zugewiesene akzeptieren" -#: build/serializers.py:649 +#: build/serializers.py:657 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:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "Benötigter Bestand wurde nicht vollständig zugewiesen" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Unvollständig Zuweisung akzeptieren" -#: build/serializers.py:665 +#: build/serializers.py:673 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:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "Benötigte Teil-Anzahl wurde noch nicht fertiggestellt" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "Bauauftrag hat unvollständige Aufbauten" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "Stücklisten-Position" +#: build/serializers.py:722 +msgid "Build Line" +msgstr "" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "Endprodukt" -#: build/serializers.py:732 +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "Endprodukt muss auf den gleichen Bauauftrag verweisen" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 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:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "Teil muss auf Lager sein" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Verfügbare Menge ({q}) überschritten" -#: build/serializers.py:852 +#: build/serializers.py:859 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:859 +#: build/serializers.py:866 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:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "Dieser Lagerbestand wurde bereits diesem Endprodukt zugewiesen" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "Zuweisungen müssen angegeben werden" -#: build/serializers.py:943 +#: build/serializers.py:947 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:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "Lagerort ausschließen" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "Lagerartikel vom ausgewählten Ort ausschließen" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "Wechselbares Lagerbestand" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Lagerartikel an mehreren Standorten können austauschbar verwendet werden" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "Ersatzbestand" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "Zuordnung von Ersatzteilen erlauben" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "Optionale Positionen" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "Optionale Stücklisten-Positionen dem Bauauftrag hinzufügen" @@ -1528,7 +1581,7 @@ msgstr "Bauauftrag {bo} ist jetzt überfällig" #: build/templates/build/build_base.html:18 msgid "Part thumbnail" -msgstr "" +msgstr "Miniaturansicht" #: build/templates/build/build_base.html:39 #: company/templates/company/supplier_part.html:36 @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Barcode Aktionen" @@ -1616,69 +1670,67 @@ msgstr "Bauauftrag fertigstellen" msgid "Build Description" msgstr "Baubeschreibung" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "Es wurden keine Endprodukte für diesen Bauauftrag erstellt" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "Bauauftrag ist bereit abgeschlossen zu werden" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "Bauauftrag kann nicht abgeschlossen werden, da es noch ausstehende Endprodukte gibt" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "Benötigte Teil-Anzahl wurde noch nicht fertiggestellt" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 msgid "Stock has not been fully allocated to this Build Order" 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Zieldatum" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "Bauauftrag war fällig am %(target)s" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "Überfällig" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Fertig" +#: build/templates/build/build_base.html:178 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" +msgstr "Fertiggestellte Endprodukte" -#: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,34 +1738,34 @@ msgstr "Fertig" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Auftrag" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Aufgegeben von" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "Priorität" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "Bauauftrag löschen" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" -msgstr "" +msgstr "Bauftrags-QR-Code" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" -msgstr "" +msgstr "Barcode mit Bauauftrag verknüpfen" #: build/templates/build/detail.html:15 msgid "Build Details" @@ -1727,8 +1779,8 @@ 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:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Ziel-Lager" @@ -1742,21 +1794,21 @@ msgstr "Zugewiesene Teile" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Losnummer" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Erstellt" @@ -1764,147 +1816,106 @@ msgstr "Erstellt" msgid "No target date set" msgstr "Kein Ziel-Datum gesetzt" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Fertig" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "Bauauftrag ist nicht vollständig" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "Unter-Bauaufträge" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "Bestand Bauauftrag zuweisen" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" -msgstr "Bestandszuordnung aufheben" +#: 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 "Unallocate Stock" -msgstr "Bestandszuordnung aufheben" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "Lagerartikel automatisch zuweisen" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "Automatisch zuweisen" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "Lagerartikel manuell dem Bauauftrag zuweisen" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "Bestand zuweisen" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Benötigte Teile bestellen" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Teile bestellen" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "Nicht verfolgter Bestand wurde Bauauftrag vollständig zugewiesen" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "Nicht verfolgter Bestand wurde Bauauftrag noch nicht vollständig zugewiesen" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "Ausgewählte Positionen zuweisen" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "Dieser Bauauftrag hat keine zugeordneten Stücklisten-Einträge" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "Unfertige Endprodukte" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "Neues Endprodukt anlegen" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "Neues Endprodukt" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "Endproduktaktionen" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "Ausgewählte Endprodukt fertigstellen" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "Endprodukte fertigstellen" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "Ausgewählte Endprodukte löschen" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "Endprodukte löschen" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "Fertiggestellte Endprodukte" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Anhänge" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Bauauftrags-Notizen" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "Zuordnung abgeschlossen" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" -msgstr "Alle nicht verfolgten Lagerartikel wurden zugewiesen" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" +msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Neuer Bauauftrag" @@ -1912,14 +1923,10 @@ msgstr "Neuer Bauauftrag" msgid "Build Order Details" msgstr "Bauauftragdetails" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "Unfertige Endprodukte" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "Fertiggestellte Endprodukte" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "Aktualisiert" msgid "Timestamp of last update" msgstr "Zeitstempel der letzten Aktualisierung" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "Projektcode" - #: common/models.py:105 msgid "Unique project code" msgstr "Eindeutiger Projektcode" @@ -2126,8 +2123,8 @@ 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:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "Tage" @@ -2149,7 +2146,7 @@ msgstr "Anzahl der Tage zwischen automatischen Sicherungen" #: common/models.py:1050 msgid "Task Deletion Interval" -msgstr "Löschinterval für Aufgaben" +msgstr "Aufgabenlöschinterval" #: common/models.py:1051 msgid "Background task results will be deleted after specified number of days" @@ -2259,9 +2256,9 @@ msgstr "Kategorie-Parametervorlage kopieren" msgid "Copy category parameter templates when creating a part" msgstr "Kategorie-Parameter Vorlagen kopieren wenn ein Teil angelegt wird" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Vorlage" @@ -2269,10 +2266,10 @@ msgstr "Vorlage" msgid "Parts are templates by default" msgstr "Teile sind standardmäßig Vorlagen" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Baugruppe" @@ -2280,8 +2277,8 @@ msgstr "Baugruppe" msgid "Parts can be assembled from other components by default" msgstr "Teile können standardmäßig aus anderen Teilen angefertigt werden" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Komponente" @@ -2289,7 +2286,7 @@ msgstr "Komponente" msgid "Parts can be used as sub-components by default" msgstr "Teile können standardmäßig in Baugruppen benutzt werden" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Kaufbar" @@ -2297,8 +2294,8 @@ msgstr "Kaufbar" msgid "Parts are purchaseable by default" msgstr "Artikel sind grundsätzlich kaufbar" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Verkäuflich" @@ -2306,10 +2303,10 @@ msgstr "Verkäuflich" msgid "Parts are salable by default" msgstr "Artikel sind grundsätzlich verkaufbar" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Nachverfolgbar" @@ -2317,10 +2314,10 @@ msgstr "Nachverfolgbar" msgid "Parts are trackable by default" msgstr "Artikel sind grundsätzlich verfolgbar" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Virtuell" @@ -2352,7 +2349,7 @@ msgstr "Initialer Lagerbestand" 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:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Initiale Lieferantendaten" @@ -2377,525 +2374,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "Standardsymbol der Teilkategorie (leer bedeutet kein Symbol)" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "Dezimalstellen für minimalen Preis" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" -msgstr "" +msgstr "Dezimalstellen für maximalen Preis" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "Zulieferer-Preise verwenden" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Lieferanten-Staffelpreise in die Gesamt-Preisberechnungen einbeziehen" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "Kaufverlauf überschreiben" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Historische Bestellungspreise überschreiben die Lieferanten-Staffelpreise" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "Lagerartikel-Preis verwenden" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Preise aus manuell eingegebenen Lagerdaten für Preisberechnungen verwenden" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "Lagerartikelpreis Alter" -#: common/models.py:1297 +#: common/models.py:1304 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:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "Variantenpreise verwenden" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "Variantenpreise in die Gesamt-Preisberechnungen einbeziehen" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "Nur aktive Varianten" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "Nur aktive Variantenteile zur Berechnung der Variantenbepreisung verwenden" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "Intervall für Neuberechnung von Preisen" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "Anzahl der Tage bis die Teile-Preisberechnungen automatisch aktualisiert werden" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "Interne Preise" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "Interne Preise für Teile aktivieren" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "Interne Preisüberschreibung" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "Falls verfügbar, überschreiben interne Preise Preispannenberechnungen" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "Labeldruck aktivieren" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "Labeldruck über die Website aktivieren" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "Label Bild DPI" -#: common/models.py:1354 +#: common/models.py:1361 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:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "Berichte aktivieren" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "Berichterstellung aktivieren" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Entwickler-Modus" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "Berichte im Entwickler-Modus generieren (als HTML)" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Seitengröße" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Standardseitenformat für PDF-Bericht" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "Testberichte aktivieren" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "Erstellung von Test-Berichten aktivieren" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "Testberichte anhängen" -#: common/models.py:1396 +#: common/models.py:1403 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:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "Global einzigartige Seriennummern" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "Seriennummern für Lagerartikel müssen global eindeutig sein" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "Seriennummern automatisch ausfüllen" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "Seriennummern in Formularen automatisch ausfüllen" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "Erschöpften Lagerartikel löschen" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "Legt das Standardverhalten fest, wenn ein Lagerartikel erschöpft ist" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "Losnummer Vorlage" -#: common/models.py:1424 +#: common/models.py:1431 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:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "Bestands-Ablauf" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "Ablaufen von Bestand ermöglichen" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "Abgelaufenen Bestand verkaufen" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "Verkauf von abgelaufenem Bestand erlaubt" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "Bestands-Stehzeit" -#: common/models.py:1444 +#: common/models.py:1451 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:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "Abgelaufenen Bestand verbauen" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "Verbauen von abgelaufenen Bestand erlaubt" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "Bestands-Eigentümerkontrolle" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "Eigentümerkontrolle für Lagerorte und Teile aktivieren" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "Standardsymbol für Lagerort" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "Standardsymbol für Lagerstandort (leer bedeutet kein Symbol)" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "Bauauftragsreferenz-Muster" - -#: common/models.py:1472 -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:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" -msgstr "" +msgid "Build Order Reference Pattern" +msgstr "Bauauftragsreferenz-Muster" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" -msgstr "" +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:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 +msgid "Return Order Reference Pattern" +msgstr "" + +#: common/models.py:1500 +msgid "Required pattern for generating Return Order reference field" +msgstr "" + +#: common/models.py:1506 +msgid "Edit Completed Return Orders" +msgstr "" + +#: common/models.py:1507 +msgid "Allow editing of return orders after they have been completed" +msgstr "" + +#: common/models.py:1513 msgid "Sales Order Reference Pattern" msgstr "Auftragsreferenz-Muster" -#: common/models.py:1500 +#: common/models.py:1514 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:1506 +#: common/models.py:1520 msgid "Sales Order Default Shipment" msgstr "Auftrag Standardsendung" -#: common/models.py:1507 +#: common/models.py:1521 msgid "Enable creation of default shipment with sales orders" msgstr "Erstelle eine Standardsendung für Aufträge" -#: common/models.py:1513 +#: common/models.py:1527 msgid "Edit Completed Sales Orders" msgstr "Abgeschlossene Verkaufsaufträge bearbeiten" -#: common/models.py:1514 +#: common/models.py:1528 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "Bearbeitung von Verkaufsaufträgen nach Versand oder Abschluss erlauben" -#: common/models.py:1520 +#: common/models.py:1534 msgid "Purchase Order Reference Pattern" msgstr "Bestellungsreferenz-Muster" -#: common/models.py:1521 +#: common/models.py:1535 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:1527 +#: common/models.py:1541 msgid "Edit Completed Purchase Orders" msgstr "Abgeschlossene Einkaufsaufträge bearbeiten" -#: common/models.py:1528 +#: common/models.py:1542 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:1535 +#: common/models.py:1549 msgid "Enable password forgot" msgstr "Passwort vergessen aktivieren" -#: common/models.py:1536 +#: common/models.py:1550 msgid "Enable password forgot function on the login pages" msgstr "Passwort-vergessen-Funktion auf den Anmeldeseiten aktivieren" -#: common/models.py:1542 +#: common/models.py:1556 msgid "Enable registration" msgstr "Registrierung erlauben" -#: common/models.py:1543 +#: common/models.py:1557 msgid "Enable self-registration for users on the login pages" msgstr "Selbstregistrierung für Benutzer auf den Anmeldeseiten aktivieren" -#: common/models.py:1549 +#: common/models.py:1563 msgid "Enable SSO" msgstr "SSO aktivieren" -#: common/models.py:1550 +#: common/models.py:1564 msgid "Enable SSO on the login pages" msgstr "SSO auf den Anmeldeseiten aktivieren" -#: common/models.py:1556 +#: common/models.py:1570 msgid "Enable SSO registration" msgstr "SSO Selbstregistrierung aktivieren" -#: common/models.py:1557 +#: common/models.py:1571 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:1563 +#: common/models.py:1577 msgid "Email required" msgstr "Email-Adresse erforderlich" -#: common/models.py:1564 +#: common/models.py:1578 msgid "Require user to supply mail on signup" msgstr "Benutzer müssen bei der Registrierung eine E-Mail angeben" -#: common/models.py:1570 +#: common/models.py:1584 msgid "Auto-fill SSO users" msgstr "SSO-Benutzer automatisch ausfüllen" -#: common/models.py:1571 +#: common/models.py:1585 msgid "Automatically fill out user-details from SSO account-data" msgstr "Benutzer-Details automatisch aus SSO-Konto ausfüllen" -#: common/models.py:1577 +#: common/models.py:1591 msgid "Mail twice" msgstr "E-Mail zweimal" -#: common/models.py:1578 +#: common/models.py:1592 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:1584 +#: common/models.py:1598 msgid "Password twice" msgstr "Passwort zweimal" -#: common/models.py:1585 +#: common/models.py:1599 msgid "On signup ask users twice for their password" msgstr "Bei der Registrierung den Benutzer zweimal nach dem Passwort fragen" -#: common/models.py:1591 +#: common/models.py:1605 msgid "Allowed domains" msgstr "Erlaubte Domains" -#: common/models.py:1592 +#: common/models.py:1606 msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" +msgstr "Anmeldung auf bestimmte Domänen beschränken (kommagetrennt, beginnend mit @)" -#: common/models.py:1598 +#: common/models.py:1612 msgid "Group on signup" msgstr "Gruppe bei Registrierung" -#: common/models.py:1599 +#: common/models.py:1613 msgid "Group to which new users are assigned on registration" msgstr "Gruppe der neue Benutzer bei der Registrierung zugewiesen werden" -#: common/models.py:1605 +#: common/models.py:1619 msgid "Enforce MFA" msgstr "MFA erzwingen" -#: common/models.py:1606 +#: common/models.py:1620 msgid "Users must use multifactor security." msgstr "Benutzer müssen Multifaktor-Authentifizierung verwenden." -#: common/models.py:1612 +#: common/models.py:1626 msgid "Check plugins on startup" msgstr "Plugins beim Start prüfen" -#: common/models.py:1613 +#: common/models.py:1627 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:1620 -msgid "Check plugin signatures" -msgstr "Plugin-Signaturen überprüfen" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "Signaturen für Plugins prüfen und anzeigen" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "URL-Integration aktivieren" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "Plugins zum Hinzufügen von URLs aktivieren" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "Navigations-Integration aktivieren" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "Plugins zur Integration in die Navigation aktivieren" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "App-Integration aktivieren" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "Plugins zum Hinzufügen von Apps aktivieren" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "Terminplan-Integration aktivieren" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "Geplante Aufgaben aktivieren" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "Ereignis-Integration aktivieren" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "Plugins ermöglichen auf interne Ereignisse zu reagieren" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "Projektcodes aktivieren" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "Inventurfunktionen" -#: common/models.py:1676 +#: common/models.py:1683 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:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "Automatische Inventur-Periode" -#: common/models.py:1683 +#: common/models.py:1690 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:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "Löschintervall für Berichte" -#: common/models.py:1693 +#: common/models.py:1700 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:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "Einstellungs-Schlüssel (muss einzigartig sein, Groß-/ Kleinschreibung wird nicht beachtet)" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "Kein Drucker (Exportieren als PDF)" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" -msgstr "" +msgstr "Inaktive Teile ausblenden" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "Abonnierte Teile anzeigen" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "Zeige abonnierte Teile auf der Startseite" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "Abonnierte Kategorien anzeigen" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "Zeige abonnierte Teilkategorien auf der Startseite" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Neueste Teile anzeigen" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "Zeige neueste Teile auf der Startseite" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "Aktuelle Teile-Stände" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "Anzahl der neusten Teile auf der Startseite" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "Nicht validierte Stücklisten anzeigen" @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "Zeige zuletzt geänderte Lagerbestände auf der Startseite" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "aktueller Bestand" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "Anzahl des geänderten Bestands auf der Startseite" - -#: common/models.py:1807 msgid "Show low stock" msgstr "Niedrigen Bestand anzeigen" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "Zeige geringen Bestand auf der Startseite" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "Lerren Bestand anzeigen" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "Zeige aufgebrauchte Lagerartikel auf der Startseite" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "Benötigten Bestand anzeigen" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "Zeige Bestand für Bauaufträge auf der Startseite" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "Abgelaufenen Bestand anzeigen" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "Zeige abgelaufene Lagerbestände auf der Startseite" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "Alten Bestand anzeigen" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "Zeige überfällige Lagerartikel auf der Startseite" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "Ausstehende Bauaufträge anzeigen" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "Zeige ausstehende Bauaufträge auf der Startseite" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "Zeige überfällige Bauaufträge" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "Zeige überfällige Bauaufträge auf der Startseite" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "Ausstehende POs anzeigen" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "Zeige ausstehende POs auf der Startseite" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "Überfällige POs anzeigen" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "Zeige überfällige POs auf der Startseite" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "Ausstehende SOs anzeigen" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "Zeige ausstehende SOs auf der Startseite" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "Überfällige SOs anzeigen" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "Zeige überfällige SOs auf der Startseite" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "Zeige Neuigkeiten" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "Neuigkeiten auf der Startseite anzeigen" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "Label inline anzeigen" -#: common/models.py:1899 +#: common/models.py:1892 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:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "Standard-Etikettendrucker" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "Einen standardmäßig ausgewählten Etikettendrucker konfigurieren" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "Berichte inline anzeigen" -#: common/models.py:1913 +#: common/models.py:1906 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:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "Teile suchen" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "Teile in der Suchvorschau anzeigen" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "Zulieferteile durchsuchen" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "Zuliefererteile in der Suchvorschau anzeigen" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "Herstellerteile durchsuchen" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "Herstellerteile in der Suchvorschau anzeigen" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "Inaktive Teile ausblenden" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "Inaktive Teile in der Suchvorschau ausblenden" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "Kategorien durchsuchen" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "Teilekategorien in der Suchvorschau anzeigen" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "Bestand durchsuchen" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "Lagerartikel in Suchvorschau anzeigen" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "Nicht verfügbare Artikel ausblenden" -#: common/models.py:1962 +#: common/models.py:1955 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:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "Lagerorte durchsuchen" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "Lagerorte in Suchvorschau anzeigen" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "Firmen durchsuchen" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "Firmen in der Suchvorschau anzeigen" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "Bauaufträge durchsuchen" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "Bauaufträge in der Suchvorschau anzeigen" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "Bestellungen durchsuchen" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "Bestellungen in der Suchvorschau anzeigen" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "Inaktive Bestellungen ausblenden" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inaktive Bestellungen in der Suchvorschau ausblenden" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "Aufträge durchsuchen" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "Aufträge in der Suchvorschau anzeigen" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "Inaktive Aufträge ausblenden" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "Inaktive Aufträge in der Suchvorschau ausblenden" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "Anzahl Suchergebnisse" -#: common/models.py:2032 +#: common/models.py:2025 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:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "Regex Suche" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "zeige Bestand in Eingabemasken" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "Zeige den verfügbaren Bestand in einigen Eingabemasken" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "Esc-Taste schließt Formulare" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "Benutze die Esc-Taste, um Formulare zu schließen" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "Fixierter Navigationsleiste" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "Position der Navigationsleiste am oberen Bildschirmrand fixieren" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "Datumsformat" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "Bevorzugtes Format für die Anzeige von Daten" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Teilzeitplanung" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "Zeige Zeitplanung für Teile" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventur" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Zeigt Inventur-Informationen an (falls die Inventurfunktion aktiviert ist)" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "Zeichenkettenlänge in Tabellen" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "Maximale Länge der Zeichenketten, die in Tabellenansichten angezeigt werden" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "Preisstaffelungs Anzahl" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Preis" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "Stückpreis für die angegebene Anzahl" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "Endpunkt" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "Endpunkt, an dem dieser Webhook empfangen wird" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "Name für diesen Webhook" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "Aktiv" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "Ist dieser Webhook aktiv" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "Token" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "Token für Zugang" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "Geheimnis" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "Shared Secret für HMAC" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "Nachrichten-ID" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "Eindeutige Kennung für diese Nachricht" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "Host" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "Host von dem diese Nachricht empfangen wurde" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "Kopfzeile" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "Header dieser Nachricht" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "Body" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "Body dieser Nachricht" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "Endpunkt, über den diese Nachricht empfangen wurde" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "Bearbeitet" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "Wurde die Arbeit an dieser Nachricht abgeschlossen?" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "ID" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "Titel" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "Veröffentlicht" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "Autor" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "Zusammenfassung" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "Gelesen" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "Wurde diese Nachricht gelesen?" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "Wurde diese Nachricht gelesen?" msgid "Image" msgstr "Bild" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "Bilddatei" @@ -3497,7 +3487,7 @@ msgstr "Firmenbeschreibung" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Website" @@ -3505,303 +3495,388 @@ msgstr "Website" msgid "Company website URL" msgstr "Firmenwebsite Adresse/URL" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Adresse" - -#: company/models.py:119 -msgid "Company address" -msgstr "Firmenadresse" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Kontakt-Tel." -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Kontakt-Telefon" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "Email" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Kontakt-Email" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Kontakt" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Anlaufstelle" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "Link auf externe Firmeninformation" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "ist Kunde" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "Verkaufen Sie Teile an diese Firma?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "ist Zulieferer" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "Kaufen Sie Teile von dieser Firma?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "ist Hersteller" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "Produziert diese Firma Teile?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "Standard-Währung für diese Firma" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Firma" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "Firma auswählen" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "Postleitzahl" + +#: company/models.py:356 +msgid "City/Region" +msgstr "Stadt/Region" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "Bundesland" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "Land" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "Notizen für Versandkurier" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "Interne Versandnotizen" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "Versandnotizen für interne Verwendung" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Basisteil" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Teil auswählen" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Hersteller" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Hersteller auswählen" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "MPN" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "Hersteller-Teilenummer" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "Externe URL für das Herstellerteil" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "Teilbeschreibung des Herstellers" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Herstellerteil" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Parametername" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Wert" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Parameterwert" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Einheiten" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "Parametereinheit" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "Verlinktes Herstellerteil muss dasselbe Basisteil referenzieren" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Zulieferer" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Zulieferer auswählen" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "SKU (Lagerbestandseinheit)" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "Lagerbestandseinheit (SKU) des Zulieferers" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "Herstellerteil auswählen" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "Teil-URL des Zulieferers" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "Zuliefererbeschreibung des Teils" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Notiz" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "Basiskosten" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "Mindestpreis" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "Verpackungen" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "Teile-Verpackungen" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "Packmenge" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "Vielfache" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "Mehrere bestellen" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "Verfügbar" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "Verfügbare Menge von Lieferanten" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "Verfügbarkeit aktualisiert" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "Datum des letzten Updates der Verfügbarkeitsdaten" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "Standard-Währung für diesen Zulieferer" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Bestellung anlegen" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "Firmeninformation bearbeiten" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Firma bearbeiten" @@ -3854,17 +3929,17 @@ msgstr "Bild von URL herunterladen" msgid "Delete image" msgstr "Bild löschen" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Kunde" @@ -3872,6 +3947,13 @@ msgstr "Kunde" msgid "Uses default currency" msgstr "verwendet Standard-Währung" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Adresse" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Telefon" @@ -3904,7 +3986,7 @@ msgstr "Bild herunterladen" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Zuliefererteile" @@ -3914,128 +3996,120 @@ msgstr "Neues Zuliefererteil anlegen" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Neues Zuliefererteil" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Teile bestellen" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Teile löschen" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Teile löschen" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 msgid "Manufacturer Parts" msgstr "Herstellerteile" -#: company/templates/company/detail.html:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Neues Herstellerteil anlegen" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Neues Herstellerteil" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Zulieferer-Bestand" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Bestellungen" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Neue Bestellung anlegen" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Neue Bestellung" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "Aufträge" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Neuen Auftrag anlegen" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "Neuer Auftrag" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "Zugeordneter Bestand" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" -msgstr "" +msgstr "Rücksendeaufträge" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" -msgstr "" +msgstr "Neuen Rücksendeauftrag hinzufügen" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" -msgstr "" +msgstr "Neuer Rücksendeauftrag" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Firmenbemerkungen" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" -msgstr "" +msgstr "Unternehmenskontakte" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: company/templates/company/detail.html:187 +#: company/templates/company/detail.html:188 msgid "Add Contact" -msgstr "" +msgstr "Kontakt hinzufügen" + +#: company/templates/company/detail.html:206 +msgid "Company addresses" +msgstr "Geschäftsadressen" + +#: company/templates/company/detail.html:210 +#: company/templates/company/detail.html:211 +msgid "Add Address" +msgstr "Adresse hinzufügen" #: company/templates/company/index.html:8 msgid "Supplier List" @@ -4048,17 +4122,17 @@ msgstr "Hersteller" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "Teil bestellen" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "Herstellerteil bearbeiten" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "Herstellerteil löschen" @@ -4078,40 +4152,22 @@ msgstr "Keine Herstellerdaten verfügbar" msgid "Suppliers" msgstr "Zulieferer" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "Zuliefererteil entfernen" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Löschen" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Parameter" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "Neuer Parameter" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Parameter löschen" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "Parameter hinzufügen" @@ -4133,25 +4189,30 @@ msgstr "Zugewiesene Lagerartikel" #: company/templates/company/sidebar.html:33 msgid "Contacts" -msgstr "" +msgstr "Kontakte" + +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Adressen" #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "Zuliefererteil" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "Zulieferer-Teil Aktionen" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "Teil bestellen" @@ -4162,13 +4223,13 @@ msgstr "Verfügbarkeit aktualisieren" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "Zuliefererteil bearbeiten" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "Zulieferer-Teil duplizieren" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "Zulieferer-Bestand" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "Neuen Lagerartikel hinzufügen" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "Neuer Lagerartikel" @@ -4203,37 +4264,37 @@ msgstr "Neuer Lagerartikel" msgid "Supplier Part Orders" msgstr "Zulieferer-Bestellungen" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Preisinformationen ansehen" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "Preisstaffel hinzufügen" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "Zuliefererteil QR-Code" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "Barcode mit Zuliefererteil verknüpfen" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "Teilverfügbarkeit aktualisieren" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Lagerartikel" @@ -4259,7 +4320,7 @@ msgstr "Kunden" msgid "New Customer" msgstr "Neuer Kunde" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Firmen" @@ -4267,648 +4328,645 @@ msgstr "Firmen" msgid "New Company" msgstr "Neue Firma" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "Label Name" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "Label Beschreibung" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "Label" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "Label-Vorlage-Datei" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "Aktiviert" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "Label-Vorlage ist aktiviert" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Breite [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "Label-Breite in mm" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Höhe [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "Label-Höhe in mm" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "Dateinamen-Muster" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "Muster für die Erstellung von Label-Dateinamen" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," -msgstr "Abfragefilter (kommagetrennte Liste mit Schlüssel=Wert-Paaren)" +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" +msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Filter" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "Abfragefilter (kommagetrennte Liste mit Schlüssel=Wert-Paaren)" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "Teile-Abfragefilter (kommagetrennte Liste mit Schlüssel=Wert-Paaren)" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" -msgstr "" +msgid "QR Code" +msgstr "QR-Code" #: label/templates/label/part/part_label_code128.html:31 #: label/templates/label/stocklocation/qr_and_text.html:31 #: templates/qr_code.html:7 msgid "QR code" -msgstr "" +msgstr "QR-Code" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "Gesamtpreis" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "Keine passende Bestellung gefunden" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Bestellung" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" -msgstr "" +msgstr "Rücksendeauftrag" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "Unbekannt" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "Gesamtpreis für diese Bestellung" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "Link auf externe Seite" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Geplantes Lieferdatum für Auftrag." -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "Erstellt von" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "Nutzer oder Gruppe der/die für diesen Auftrag zuständig ist/sind" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "Bestell-Referenz" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "Bestellungs-Status" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "Firma bei der die Teile bestellt werden" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "Zulieferer-Referenz" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "Zulieferer Bestellreferenz" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "Empfangen von" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "Aufgabedatum" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "Datum an dem die Bestellung aufgegeben wurde" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "Datum an dem der Auftrag fertigstellt wurde" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "Teile-Zulieferer muss dem Zulieferer der Bestellung entsprechen" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "Anzahl muss eine positive Zahl sein" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "Firma an die die Teile verkauft werden" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "Kundenreferenz" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "Bestellreferenz" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "Versanddatum" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "Versand von" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "Auftrag kann nicht abgeschlossen werden, da keine Teile zugewiesen wurden" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Auftrag kann nicht abgeschlossen werden, da unvollständige Sendungen vorhanden sind" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "Auftrag kann nicht abgeschlossen werden, da es unvollständige Positionen gibt" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "Anzahl" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "Position - Referenz" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "Position - Notizen" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Zieldatum für diesen Einzelposten (leer lassen, um das Zieldatum des Auftrags zu verwenden)" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "Kontext" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "Zusätzlicher Kontext für diese Zeile" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "Stückpreis" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "Lieferantenteil muss mit Lieferant übereinstimmen" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "gelöscht" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "Bestellung" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "Zuliefererteil" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "Empfangen" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "Empfangene Objekt-Anzahl" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Preis" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "Preis pro Einheit" -#: order/models.py:1222 +#: order/models.py:1238 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:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "Ein virtuelles Teil kann nicht einem Auftrag zugeordnet werden" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "Nur verkaufbare Teile können einem Auftrag zugewiesen werden" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "Verkaufspreis" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "Stückverkaufspreis" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "Versendete Menge" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "Versanddatum" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" -msgstr "" +msgstr "Lieferdatum" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "Kontrolliert von" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "Benutzer, der diese Sendung kontrolliert hat" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "Sendung" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "Sendungsnummer" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "Sendungsverfolgungsnummer" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "Informationen zur Sendungsverfolgung" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "Rechnungsnummer" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "Referenznummer für zugehörige Rechnung" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "Sendung wurde bereits versandt" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "Sendung hat keine zugewiesene Lagerartikel" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "Lagerartikel wurde nicht zugewiesen" -#: order/models.py:1589 +#: order/models.py:1605 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:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "Kann Lagerartikel keiner Zeile ohne Teil hinzufügen" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Die zugeordnete Anzahl darf nicht die verfügbare Anzahl überschreiten" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "Anzahl für serialisierte Lagerartikel muss 1 sein" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "Auftrag gehört nicht zu Sendung" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "Sendung gehört nicht zu Auftrag" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "Position" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "Sendungsnummer-Referenz" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "Position" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "Lagerartikel für Zuordnung auswählen" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "Anzahl für Bestandszuordnung eingeben" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" -msgstr "" +msgstr "Empfangsdatum" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "Bestellung kann nicht verworfen werden" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "Erlaube das Schließen des Auftrags mit unvollständigen Positionen" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "Auftrag hat unvollständige Positionen" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "Der Auftrag ist nicht offen" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "Kaufpreiswährung" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "Zuliefererteil muss ausgewählt werden" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "Bestellung muss angegeben sein" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "Lieferant muss mit der Bestellung übereinstimmen" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "Die Bestellung muss mit dem Lieferant übereinstimmen" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "Position" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "Position stimmt nicht mit Kaufauftrag überein" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "Zielort für empfangene Teile auswählen" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "Losnummer für eingehende Lagerartikel" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "Seriennummern für eingehende Lagerartikel" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Barcode" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "Barcode ist bereits in Verwendung" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "Ganzzahl für verfolgbare Teile erforderlich" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "Positionen müssen angegeben werden" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "Ziel-Lagerort muss angegeben werden" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "Barcode muss eindeutig sein" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "Verkaufspreis-Währung" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "Keine Sendungsdetails angegeben" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "Position ist nicht diesem Auftrag zugeordnet" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "Anzahl muss positiv sein" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "Seriennummern zum Zuweisen eingeben" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "Sendung wurde bereits versandt" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "Sendung ist nicht diesem Auftrag zugeordnet" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "Folgende Serienummern konnten nicht gefunden werden" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "Folgende Seriennummern sind bereits zugewiesen" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "Überfällige Bestellung" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "Bestellung {po} ist jetzt überfällig" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "Überfälliger Auftrag" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "Auftrag {so} ist jetzt überfällig" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "Elemente empfangen" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "Teile empfangen" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "Bestellung als vollständig markieren" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "Auftrag fertigstellen" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "Bestellreferenz" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "Bestellungsbeschreibung" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "Bestellstatus" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "Keine Lieferanteninformationen verfügbar" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "Abgeschlossene Positionen" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "Unvollständig" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "Aufgegeben" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "Gesamtsumme" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "Gesamtkosten konnten nicht berechnet werden" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "Auswahl duplizieren" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "Zeile entfernen" @@ -5150,9 +5200,9 @@ msgstr "Bestellungs-Positionen" #: 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "Position hinzufügen" @@ -5163,30 +5213,25 @@ msgstr "Position hinzufügen" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "Positionen löschen" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: order/templates/order/return_order_detail.html:45 +#: order/templates/order/sales_order_detail.html:41 msgid "Extra Lines" msgstr "Zusätzliche Positionen" -#: order/templates/order/purchase_order_detail.html:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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 "Extra Zeile anzeigen" -#: order/templates/order/purchase_order_detail.html:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "Empfangene Teile" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "Notizen zur Bestellung" @@ -5206,29 +5251,29 @@ msgstr "Paketliste drucken" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "Kundenreferenz" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "Gesamtkosten" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "Auftrag abschließen" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "Dieser Auftrag ist nicht vollständig zugeordnet" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: order/templates/order/sales_order_detail.html:99 #: order/templates/order/so_sidebar.html:11 msgid "Completed Shipments" msgstr "Abgeschlossene Sendungen" -#: order/templates/order/sales_order_base.html:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "Auftrags-Positionen" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 msgid "Pending Shipments" msgstr "Ausstehende Sendungen" -#: order/templates/order/sales_order_detail.html:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "Aktionen" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "Neue Sendung" @@ -5309,12 +5353,12 @@ 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:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "Teil-ID" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "Name des Teils" @@ -5323,19 +5367,20 @@ msgstr "Name des Teils" msgid "Part Description" msgstr "Beschreibung des Teils" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "IPN (Interne Produktnummer)" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "Version" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "Schlüsselwörter" @@ -5356,24 +5401,24 @@ msgstr "Standard-Standortnummer" msgid "Default Supplier ID" msgstr "Standard-Lieferantennummer" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "Variante von" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "Minimaler Bestand" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "Auf Lager" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "Bestellt" @@ -5381,23 +5426,16 @@ msgstr "Bestellt" msgid "Used In" msgstr "Benutzt in" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "Zugeordnet" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "Im Bau" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "Minimale Kosten" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "Maximale Kosten" @@ -5414,13 +5452,13 @@ msgstr "Name des übergeordneten Teils" msgid "Category Path" msgstr "Pfad zur Kategorie" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Teile" @@ -5437,7 +5475,7 @@ msgstr "Stücklisten-Position ID" msgid "Parent IPN" msgstr "Übergeordnete IPN" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "Teil IPN" @@ -5451,35 +5489,35 @@ msgstr "Niedrigster Preis" msgid "Maximum Price" msgstr "Höchster Preis" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "Eingehende Bestellung" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "Ausgehender Auftrag" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "Lagerartikel produziert von Bauauftrag" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "Lagerartikel für Bauauftrag benötigt" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "Gültig" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "Gesamte Stückliste validieren" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "Diese Option muss ausgewählt werden" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "Standard-Lagerort" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "Gesamtbestand" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "Verfügbarer Bestand" @@ -5497,917 +5535,913 @@ msgstr "Verfügbarer Bestand" msgid "Input quantity for price calculation" msgstr "Menge für die Preisberechnung" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Teil-Kategorie" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "Teil-Kategorien" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "Standard-Lagerort für Teile dieser Kategorie" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "Strukturell" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Teile können nicht direkt einer strukturellen Kategorie zugeordnet werden, können aber untergeordneten Kategorien zugeordnet werden." -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "Standard Stichwörter" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "Standard-Stichworte für Teile dieser Kategorie" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "Symbol" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "Symbol (optional)" -#: part/models.py:163 +#: part/models.py:165 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:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "Ungültige Auswahl für übergeordnetes Teil" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "Teil '{p1}' wird in Stückliste für Teil '{p2}' benutzt (rekursiv)" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN muss zu Regex-Muster {pat} passen" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "Ein Lagerartikel mit dieser Seriennummer existiert bereits" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "Doppelte IPN in den Teil-Einstellungen nicht erlaubt" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "Teil mit diesem Namen, IPN und Revision existiert bereits." -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "Strukturellen Teilekategorien können keine Teile zugewiesen werden!" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "Name des Teils" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "Ist eine Vorlage" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "Ist dieses Teil eine Vorlage?" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "Ist dieses Teil eine Variante eines anderen Teils?" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "Schlüsselworte um die Sichtbarkeit in Suchergebnissen zu verbessern" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "Kategorie" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "Teile-Kategorie" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "Interne Teilenummer" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "Revisions- oder Versionsnummer" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "Wo wird dieses Teil normalerweise gelagert?" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "Standard Zulieferer" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "Standard Zuliefererteil" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "Standard Ablaufzeit" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "Ablauf-Zeit (in Tagen) für Bestand dieses Teils" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "Minimal zulässiger Bestand" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "Maßeinheit für diesen Teil" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "Kann dieses Teil aus anderen Teilen angefertigt werden?" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "Kann dieses Teil zum Bauauftrag von anderen genutzt werden?" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "Hat dieses Teil Tracking für einzelne Objekte?" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "Kann dieses Teil von externen Zulieferern gekauft werden?" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "Kann dieses Teil an Kunden verkauft werden?" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "Ist dieses Teil aktiv?" -#: part/models.py:1028 +#: part/models.py:1033 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:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "Prüfsumme der Stückliste" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "Prüfsumme der Stückliste gespeichert" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "Stückliste kontrolliert von" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "BOM Kontrolldatum" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "Erstellungs-Nutzer" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "Benutzer, der für diesen Teil verantwortlich ist" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "Letzte Inventur" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "Mehrere verkaufen" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "Währung für die Berechnung der Preise im Cache" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "Minimale Stücklisten Kosten" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "Minimale Kosten für Teile" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "Maximale Stücklisten Kosten" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "Maximale Kosten für Teile" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "Minimale Einkaufskosten" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "Minimale historische Kaufkosten" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "Maximale Einkaufskosten" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "Maximale historische Einkaufskosten" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "Minimaler interner Preis" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "Minimale Kosten basierend auf den internen Staffelpreisen" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "Maximaler interner Preis" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "Maximale Kosten basierend auf internen Preisstaffeln" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "Minimaler Lieferantenpreis" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "Mindestpreis für Teil von externen Lieferanten" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "Maximaler Lieferantenpreis" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "Maximaler Preis für Teil von externen Lieferanten" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "Minimale Variantenkosten" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "Berechnete minimale Kosten für Variantenteile" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "Maximale Variantenkosten" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "Berechnete maximale Kosten für Variantenteile" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "Berechnete Mindestkosten" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "Berechnete Maximalkosten" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "Mindestverkaufspreis" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "Mindestverkaufspreis basierend auf Staffelpreisen" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "Maximaler Verkaufspreis" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "Maximalverkaufspreis basierend auf Staffelpreisen" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "Mindestverkaufskosten" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "Minimaler historischer Verkaufspreis" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "Maximale Verkaufskosten" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "Maximaler historischer Verkaufspreis" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "Teil für die Inventur" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "Stückzahl" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "Anzahl einzelner Bestandseinträge zum Zeitpunkt der Inventur" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "Insgesamt verfügbarer Lagerbestand zum Zeitpunkt der Inventur" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "Datum" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "Datum der Inventur" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "Zusätzliche Notizen" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "Benutzer, der diese Inventur durchgeführt hat" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "Mindestbestandswert" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "Geschätzter Mindestwert des vorhandenen Bestands" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "Maximaler Bestandswert" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "Geschätzter Maximalwert des vorhandenen Bestands" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "Bericht" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "Inventur-Berichtsdatei (intern generiert)" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "Anzahl der Teile" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "Anzahl der Teile, die von der Inventur abgedeckt werden" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "Benutzer, der diesen Inventurbericht angefordert hat" -#: part/models.py:3232 +#: part/models.py:3275 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:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "Ein Test mit diesem Namen besteht bereits für dieses Teil" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "Test-Name" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "Namen für diesen Test eingeben" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "Test-Beschreibung" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "Beschreibung für diesen Test eingeben" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "Benötigt" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "Muss dieser Test erfolgreich sein?" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "Erfordert Wert" -#: part/models.py:3288 +#: part/models.py:3331 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:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "Anhang muss eingegeben werden" -#: part/models.py:3294 +#: part/models.py:3337 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:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "Vorlagen-Name des Parameters muss eindeutig sein" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "Name des Parameters" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "Parameter-Beschreibung" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "Ausgangsteil" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "Parameter Vorlage" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "Wert" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "Parameter Wert" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "Standard-Wert" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "Standard Parameter Wert" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "Teilnummer oder Teilname" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "Eindeutige Teil-ID" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "IPN-Wert des Teils" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "Stufe" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "Stücklistenebene" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "Stücklisten-Position" + +#: part/models.py:3812 msgid "Select parent part" msgstr "Ausgangsteil auswählen" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "Untergeordnetes Teil" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "Teil für die Nutzung in der Stückliste auswählen" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "Stücklisten-Anzahl für dieses Stücklisten-Teil" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "Optional" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "Diese Stücklisten-Position ist optional" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "Verbrauchsmaterial" - -#: part/models.py:3784 +#: part/models.py:3838 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:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Überschuss" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Geschätzter Ausschuss (absolut oder prozentual)" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "Referenz der Postion auf der Stückliste" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "Notizen zur Stücklisten-Position" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "Prüfsumme" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "Prüfsumme der Stückliste" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "überprüft" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "Diese Stücklistenposition wurde validiert" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "Wird vererbt" -#: part/models.py:3811 +#: part/models.py:3865 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:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "Varianten zulassen" -#: part/models.py:3817 +#: part/models.py:3871 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:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "Menge muss eine Ganzzahl sein" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "Zuliefererteil muss festgelegt sein" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "Stücklisten Ersatzteile" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "Ersatzteil kann nicht identisch mit dem Hauptteil sein" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "Übergeordnete Stücklisten Position" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "Ersatzteil" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "Teil 1" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "Teil 2" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "verknüpftes Teil auswählen" -#: part/models.py:4109 +#: part/models.py:4163 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:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "Doppelte Beziehung existiert bereits" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "Kaufwährung dieses Lagerartikels" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "Originalteil" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "Originalteil zum Duplizieren auswählen" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "Bild kopieren" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "Bild vom Originalteil kopieren" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Stückliste kopieren" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "Stückliste vom Originalteil kopieren" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "Parameter kopieren" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "Parameterdaten vom Originalteil kopieren" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "Start-Bestandsmenge" -#: part/serializers.py:327 +#: part/serializers.py:388 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:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "Initialer Lagerort" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "Lagerstandort für dieses Teil angeben" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "Lieferant auswählen (oder leer lassen, um zu überspringen)" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "Hersteller auswählen (oder leer lassen, um zu überspringen)" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "Hersteller-Teilenummer" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "Ausgewählte Firma ist kein gültiger Lieferant" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "Ausgewählte Firma ist kein gültiger Hersteller" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "Herstellerteil mit dieser MPN existiert bereits" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "Lieferantenteil mit dieser SKU existiert bereits" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "Teil duplizieren" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "Initiale Daten von anderem Teil kopieren" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Initialer Lagerbestand" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "Erstelle Teil mit Ausgangsbestand" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "Lieferanteninformationen" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "Lieferanteninformationen zu diesem Teil hinzufügen" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "Kategorieparameter kopieren" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "Parametervorlagen aus der ausgewählten Teilkategorie kopieren" -#: part/serializers.py:842 +#: part/serializers.py:920 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:848 +#: part/serializers.py:926 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:854 +#: part/serializers.py:932 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:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "Bericht generieren" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "Erstelle Berichtsdatei mit berechneten Inventurdaten" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "Teile aktualisieren" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "Angegebene Teile mit berechneten Inventurdaten aktualisieren" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "Inventur-Funktionalität ist nicht aktiviert" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "Aktualisieren" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "Preis für dieses Teil aktualisieren" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "Teil auswählen, von dem Stückliste kopiert wird" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "Bestehende Daten entfernen" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "Bestehende Stücklisten-Positionen vor dem Kopieren entfernen" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "Vererbtes einschließen" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "Stücklisten-Positionen einbeziehen, die von Vorlage-Teilen geerbt werden" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "Ungültige Zeilen überspringen" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "Aktiviere diese Option, um ungültige Zeilen zu überspringen" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "Ersatzteile kopieren" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "Ersatzteile beim Duplizieren von Stücklisten-Positionen kopieren" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "Bestehende Stückliste löschen" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "Bestehende Stücklisten-Positionen vor dem Importieren entfernen" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "Keine Teilspalte angegeben" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "Mehrere übereinstimmende Teile gefunden" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "Keine passenden Teile gefunden" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "Teil ist nicht als Komponente angelegt" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "Menge nicht angegeben" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "Ungültige Menge" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "Mindestens eine Stückliste-Position ist erforderlich" @@ -6420,9 +6454,9 @@ msgstr "Benachrichtigungen über geringen Bestand" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "Der verfügbare Bestand für {part.name} ist unter das konfigurierte Mindestniveau gefallen" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "Gesamtstückzahl" @@ -6460,14 +6494,6 @@ msgstr "Die Stückliste für %(part)s wurde zuletzt von %(checker)s am msgid "The BOM for %(part)s has not been validated." msgstr "Die Stückliste für %(part)s wurde noch nicht kontrolliert." -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "Stücklisten-Aktionen" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "Einträge löschen" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "Inventur für diese Teilekategorie durchführen" @@ -6504,7 +6530,7 @@ msgstr "Kategorie löschen" msgid "Top level part category" msgstr "Oberste Teil-Kategorie" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Unter-Kategorien" @@ -6517,33 +6543,21 @@ msgstr "Teile (inklusive Unter-Kategorien)" msgid "Create new part" msgstr "Neues Teil anlegen" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "Neues Teil" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "Optionen" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "Teil-Kategorie auswählen" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "Teil-Kategorie auswählen" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "Teilparameter" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "Teil-Kategorie anlegen" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "Neue Kategorie" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "Terminierungsdaten aktualisieren" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "Neu laden" @@ -6591,7 +6605,7 @@ msgstr "Inventurinformationen hinzufügen" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "Inventur" @@ -6603,101 +6617,101 @@ msgstr "Teil Test-Vorlagen" msgid "Add Test Template" msgstr "Test Vorlage hinzufügen" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "Verkaufsauftragszuweisungen" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "Teile-Notizen" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "Teil Varianten" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "Neue Variante anlegen" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "neue Variante anlegen" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "Parameter hinzufügen" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "Verknüpfte Teile" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "Verknüpftes Teil hinzufügen" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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 "Stückliste" -#: part/templates/part/detail.html:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "Export-Aktionen" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "Stückliste exportieren" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "Stücklisten-Bericht drucken" -#: part/templates/part/detail.html:295 +#: part/templates/part/detail.html:272 +msgid "BOM actions" +msgstr "Stücklisten-Aktionen" + +#: part/templates/part/detail.html:276 msgid "Upload BOM" msgstr "Stückliste hochladen" -#: part/templates/part/detail.html:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "Stückliste überprüfen" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "Stücklisten-Position hinzufügen" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "Baugruppen" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "Gefertigte Teile" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "Bauauftragszuweisungen" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "Zulieferer" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "Teil-Hersteller" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "Herstellerteile löschen" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "verknüpftes Teil" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "verknüpftes Teil hinzufügen" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "Testergebnis-Vorlage hinzufügen" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "Teile-Importvorlage herunterladen" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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 "Format" #: part/templates/part/import_wizard/part_upload.html:93 -#: templates/js/translated/bom.js:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "Dateiformat auswählen" @@ -6766,7 +6780,7 @@ msgstr "Kosteninformationen ansehen" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "Bestands-Aktionen" @@ -6778,7 +6792,7 @@ msgstr "Bestand zählen" msgid "Transfer part stock" msgstr "Teilbestand verschieben" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "Teile Aktionen" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "Inaktiv" @@ -6849,7 +6863,7 @@ msgstr "Zu Bauaufträgen zugeordnet" msgid "Allocated to Sales Orders" msgstr "Zur Bestellung zugeordnet" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "Herstellbar" @@ -6857,8 +6871,8 @@ msgstr "Herstellbar" msgid "Minimum stock level" msgstr "Minimaler Bestand" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "Teil-QR-Code" msgid "Link Barcode to Part" msgstr "Barcode mit Teil verknüpfen" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "Varianten" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Bestand" @@ -6988,9 +7002,9 @@ msgstr "Preis aktualisieren" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "Zuletzt aktualisiert" @@ -7053,12 +7067,12 @@ msgstr "Verkaufspreise" msgid "Add Sell Price Break" msgstr "Verkaufspreisstaffel hinzufügen" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "Kein Bestand" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "niedriger Bestand" @@ -7141,10 +7155,6 @@ msgstr "Teilbild nicht gefunden" msgid "Part Pricing" msgstr "Teilbepreisung" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "Ihre Umgebung verwendet eine veraltete Git-Version. Dies hindert InvenTree daran, Plugin-Details zu laden." - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Keine Aktion angegeben" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "Treffer für Barcode gefunden" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "Barcode entspricht einem bereits vorhandenen Artikel" @@ -7229,47 +7239,43 @@ msgstr "URL, die verwendet wird, um Nachrichten an einen Slack-Kanal zu senden" msgid "Open link" msgstr "Link öffnen" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "Plugin-Konfiguration" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "Plugin-Konfigurationen" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "Schlüssel" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "Schlüssel des Plugins" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "Name des Plugins" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "Ist das Plugin aktiv" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "Nicht verfügbar" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "Beispiel-Plugin" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "Integriertes Plugin" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "Plugin" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "Methode" @@ -7277,21 +7283,17 @@ msgstr "Methode" msgid "No author found" msgstr "Kein Autor gefunden" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "Kein Datum gefunden" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "Auswahleinstellungen" msgid "A setting with multiple choices" msgstr "Eine Einstellung mit mehreren Optionen" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "Quell-URL" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "Quelle für das Paket - dies kann eine eigene Registry oder ein VCS-Pfad sein" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "Paket-Name" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "Name für das Plugin-Paket - kann auch einen Versionstext enthalten" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "Plugin-Installation bestätigen" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "Dies wird dieses Plugin sofort in die aktuelle Instanz installieren. Die Instanz wird sofort in Wartung gehen." -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "Installation nicht bestätigt" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "Entweder Paketname oder URL muss angegeben werden" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "Keine korrekten Objekte für Vorlage gegeben" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "Vorlagendatei '{template}' fehlt oder existiert nicht" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "Testbericht" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "Vorlagen Name" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "Bericht-Vorlage Datei" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "Bericht-Vorlage Beschreibung" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "Bericht Revisionsnummer (autom. erhöht)" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "Muster für die Erstellung von Berichtsdateinamen" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "Bericht-Vorlage ist ein" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "Lagerartikel-Abfragefilter (kommagetrennte Liste mit Schlüssel=Wert-Paaren)" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "einfügen Installiert in Tests" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "Test-Ergebnisse für Lagerartikel in Baugruppen einschließen" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "Bauauftrag Filter" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "Bau-Abfragefilter (kommagetrennte Liste mit Schlüssel=Wert-Paaren)" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "Teil Filter" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "Teile-Abfragefilter (kommagetrennte Liste mit Schlüssel=Wert-Paaren)" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "Bestellungs-Abfragefilter" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "Auftrags-Abfragefilter" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "Snippet" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "Berichts-Snippet" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "Snippet-Beschreibung" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "Ressource" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "Berichts-Ressource" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "Ressource-Beschreibung" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "Benötigte Materialien" @@ -7478,8 +7492,8 @@ msgstr "Lieferant gelöscht" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "Stück-Preis" @@ -7491,26 +7505,30 @@ msgstr "Zusätzliche Positionen" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "Summe" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Seriennummer" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "Lagerartikel Test-Bericht" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "Testergebnisse" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "Test" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "Ergebnis" @@ -7543,7 +7561,7 @@ msgstr "" #: report/templates/report/inventree_test_report_base.html:141 msgid "No result" -msgstr "" +msgstr "Kein Ergebnis" #: report/templates/report/inventree_test_report_base.html:154 #: stock/templates/stock/stock_sidebar.html:16 @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "Verbaute Objekte" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "Seriennummer" @@ -7564,8 +7582,8 @@ msgstr "Standort-ID" msgid "Location Name" msgstr "Ortsname" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "Lagerortpfad" @@ -7620,31 +7638,31 @@ msgstr "Löschen wenn leer" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "Ablaufdatum" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "Externer Standort" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "Menge ist erforderlich" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "Gültiges Teil muss angegeben werden" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" -msgstr "" +msgstr "Der angegebene Lieferantenartikel existiert nicht" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "Seriennummern können für nicht verfolgbare Teile nicht angegeben werden" @@ -7654,8 +7672,8 @@ msgstr "Seriennummern können für nicht verfolgbare Teile nicht angegeben werde msgid "Stock Location" msgstr "Bestand-Lagerort" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "Bestand-Lagerorte" @@ -7673,8 +7691,8 @@ msgstr "Besitzer auswählen" 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:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "Extern" @@ -7690,7 +7708,7 @@ msgstr "Sie können diesen Lagerort nicht als strukturell markieren, da sich ber msgid "Stock items cannot be located into structural stock locations!" msgstr "Lagerartikel können nicht in strukturelle Lagerorte abgelegt werden!" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "Für virtuelle Teile können keine Lagerartikel erstellt werden" @@ -7803,233 +7821,242 @@ msgstr "Preis für eine Einheit bei Einkauf" msgid "Converted to part" msgstr "In Teil umgewandelt" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "Teil ist nicht verfolgbar" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "Anzahl muss eine Ganzzahl sein" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "Anzahl darf nicht die verfügbare Anzahl überschreiten ({n})" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "Seriennummern muss eine Liste von Ganzzahlen sein" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "Anzahl stimmt nicht mit den Seriennummern überein" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "Seriennummern existieren bereits" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "Artikel wurde einem Kundenauftrag zugewiesen" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "Lagerartikel ist in anderem Element verbaut" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "Lagerartikel enthält andere Artikel" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "Artikel wurde einem Kunden zugewiesen" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "Lagerartikel wird aktuell produziert" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "Nachverfolgbare Lagerartikel können nicht zusammengeführt werden" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "Artikel duplizeren" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "Lagerartikel müssen auf dasselbe Teil verweisen" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "Lagerartikel müssen auf dasselbe Lieferantenteil verweisen" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "Status-Codes müssen zusammenpassen" -#: stock/models.py:1678 +#: stock/models.py:1679 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:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "Eintrags-Notizen" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "Wert muss für diesen Test angegeben werden" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "Anhang muss für diesen Test hochgeladen werden" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "Name des Tests" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "Testergebnis" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "Test Ausgabe Wert" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "Test Ergebnis Anhang" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "Test Notizen" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "Seriennummer ist zu lang" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "Anzahl der zu serialisierenden Lagerartikel eingeben" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, 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:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "Seriennummern für neue Teile eingeben" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "Ziel-Bestand" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "Optionales Notizfeld" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "Seriennummern können diesem Teil nicht zugewiesen werden" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "Lagerartikel für Installation auswählen" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "Lagerartikel ist nicht verfügbar" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "Ausgewähltes Teil ist nicht in der Stückliste" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "Ziel Lagerort für unverbautes Objekt" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr " Transaktionsnotizen hinzufügen (optional)" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "Lagerartikel ist nicht verfügbar" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "Ausgewähltes Teil ist nicht in der Stückliste" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "Ziel Lagerort für unverbautes Objekt" + +#: stock/serializers.py:577 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:521 +#: stock/serializers.py:588 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:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "Ziel Lagerort für zurückgegebene Artikel" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "Teil muss verkaufbar sein" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "Artikel ist einem Kundenauftrag zugeordnet" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "Artikel ist einem Fertigungsauftrag zugeordnet" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "Kunde zum Zuweisen von Lagerartikel" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "Ausgewählte Firma ist kein Kunde" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "Notizen zur Lagerzuordnung" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "Eine Liste der Lagerbestände muss angegeben werden" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "Notizen zur Lagerartikelzusammenführung" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "Unterschiedliche Lieferanten erlauben" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "Zusammenführen von Lagerartikeln mit unterschiedlichen Lieferanten erlauben" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "Unterschiedliche Status erlauben" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "Zusammenführen von Lagerartikeln mit unterschiedlichen Status-Codes erlauben" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "Mindestens zwei Lagerartikel müssen angegeben werden" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "Primärschlüssel Lagerelement" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "Bestandsbewegungsnotizen" @@ -8037,48 +8064,48 @@ msgstr "Bestandsbewegungsnotizen" msgid "Stock Tracking Information" msgstr "Informationen zur Bestand-Verfolgung" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "Kind-Lagerartikel" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "Dieser Lagerartikel hat keine Kinder" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "Testdaten" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "Test-Bericht" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "Testdaten löschen" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "Testdaten hinzufügen" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "Lagerartikel-Notizen" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "Installierte Lagerartikel" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "Lagerartikel installieren" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "Alle Testergebnisse für diesen Lagerartikel löschen" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "Testergebnis hinzufügen" @@ -8086,13 +8113,13 @@ msgstr "Testergebnis hinzufügen" msgid "Locate stock item" msgstr "Lagerbestand lokalisieren" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "zu Lagerort einscannen" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "Druck Aktionen" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "Bestands-Anpassungs Aktionen" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "Bestand zählen" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "Bestand hinzufügen" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "Bestand entfernen" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "Bestand serialisieren" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "Bestand verschieben" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "Kunden zuweisen" @@ -8162,6 +8192,11 @@ msgstr "Lagerartikel bearbeiten" msgid "Delete stock item" msgstr "Lagerartikel löschen" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Bauauftrag" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "Elternposition" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "Sie gehören nicht zu den Eigentümern dieses Objekts und können es nicht ändern." #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "Nur Leserechte" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "Verfügbare Menge" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "Kein Lagerort gesetzt" @@ -8242,7 +8277,7 @@ 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:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "abgelaufen" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "Dieser Lagerartikel läuft am %(item.expiry_date)s ab" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "überfällig" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "Keine Inventur ausgeführt" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "Lagerort hierher einscannen" msgid "Scan In Container" msgstr "Lagerort scannen" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "Lagerort-Aktionen" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "Lagerort bearbeiten" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "Lagerort löschen" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "Oberster Lagerstandort" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "Standortbesitzer" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "Sie sind nicht auf der Liste der Besitzer dieses Lagerorts. Der Bestands-Lagerort kann nicht verändert werden." -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Unter-Lagerorte" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "Neuen Lagerort anlegen" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "Neuer Lagerort" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "Lagerort an diesen Ort eingescannt" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "QR-Code für diesen Lagerort" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "Barcode mit Lagerort verknüpfen" @@ -8454,71 +8493,71 @@ msgstr "Die Seite ist derzeit in Wartung und sollte bald wieder verfügbar sein! msgid "Index" msgstr "Index" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "Abonnierte Teile" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "Abonnierte Kategorien" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "neueste Teile" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "Stücklisten erwarten Kontrolle" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "kürzlich aktualisiert" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "Verbrauchter Bestand" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "Für Bauaufträge benötigt" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "abgelaufener Bestand" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "Bestand überfällig" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "laufende Bauaufträge" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "überfällige Bauaufträge" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "ausstehende Bestellungen" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "überfällige Bestellungen" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "ausstehende Aufträge" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "überfällige Aufträge" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "InvenTree Neuigkeiten" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "Aktuelle Neuigkeiten" @@ -8654,7 +8693,7 @@ msgstr "Teileimport" msgid "Import Part" msgstr "Teil importieren" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "Teil-Parametervorlage" @@ -8675,63 +8714,42 @@ msgstr "Plugin-Einstellungen" msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." msgstr "Wenn Sie die folgenden Einstellungen ändern, müssen Sie InvenTree sofort neu starten. Ändern Sie dies nicht während der aktiven Nutzung." -#: templates/InvenTree/settings/plugin.html:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "Plugins" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "Plugin installieren" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "Externe Plugins sind für diese InvenTree-Installation nicht aktiviert" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "Version" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "Aktive Plugins" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "Inaktive Plugins" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "Plugin-Fehlerstapel" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "Stufe" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "Meldung" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "Integriert" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "Beispiel" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "Plugin-Informationen" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "Version" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "keine Versionsinformation angegeben" @@ -8764,6 +8782,11 @@ msgstr "Dieses Plugin wurde in einem lokalen Serverpfad gefunden" msgid "Installation path" msgstr "Installationspfad" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "Integriert" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "Dies ist ein integriertes Plugin, das nicht deaktiviert werden kann" @@ -8786,14 +8809,6 @@ msgstr "Commit-Hash" msgid "Commit Message" msgstr "Commit-Nachricht" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "Signaturstatus" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "Signatur Schlüssel" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "Bestellungs-Einstellungen" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "Keine Kategorie-Parametervorlagen gefunden" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "Vorlage bearbeiten" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "Vorlage löschen" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "Startseite" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "Nicht verifiziert" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "Primär" @@ -9223,44 +9239,48 @@ msgstr "Aktuell" msgid "Update Available" msgstr "Aktualisierung verfügbar" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "InvenTree-Dokumentation" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "API-Version" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "Python-Version" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "Django-Version" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "Code auf GitHub ansehen" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "Danksagung" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "Mobile App" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "Fehlerbericht senden" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "In die Zwischenablage kopieren" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "Versionsinformationen kopieren" @@ -9454,14 +9474,6 @@ msgstr "Link hinzufügen" msgid "Add Attachment" msgstr "Anhang hinzufügen" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "Markierte Anhänge löschen" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "Anhänge entfernen" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "Barcode-Bezeichner" @@ -9506,7 +9518,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:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "Benötigte Menge" @@ -9520,7 +9532,7 @@ 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:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "Mindestmenge" @@ -9592,23 +9604,35 @@ msgstr "Fehler-Code" msgid "All selected attachments will be deleted" msgstr "Alle ausgewählten anhänge werden gelöscht" -#: templates/js/translated/attachment.js:255 +#: templates/js/translated/attachment.js:129 +msgid "Delete Attachments" +msgstr "Anhänge entfernen" + +#: templates/js/translated/attachment.js:205 +msgid "Delete attachments" +msgstr "" + +#: templates/js/translated/attachment.js:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "Keine Anhänge gefunden" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "Anhang bearbeiten" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "Hochladedatum" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "Anhang bearbeiten" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "Anhang löschen" @@ -9665,7 +9689,7 @@ msgstr "Dadurch wird der Link zu dem zugehörigen Barcode entfernt" msgid "Unlink" msgstr "Entfernen" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "Lagerartikel entfernen" @@ -9723,743 +9747,837 @@ msgstr "In Lagerorten buchen" msgid "Barcode does not match a valid location" msgstr "Barcode entspricht keinem Lagerort" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "Stücklisten-Position anlegen" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "Zeilendaten anzeigen" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "Zeilendaten" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "Schliessen" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "Vorlage einer Stückliste herunterladen" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "Multilevel Stückliste" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "Stücklisten-Daten für Untergruppen einbeziehen" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "Ebenen" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "Maximale Anzahl an Ebenen für Stückliste-Export auswählen (0 = alle Ebenen)" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "Alternative Teile einbeziehen" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "Alternative Teile in exportierte Stückliste einbeziehen" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "Parameter-Daten einschließen" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "Teile-Parameter in Stücklisten-Export einschließen" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "Bestand einschließen" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "Teil-Bestand in Stückliste-Export einschließen" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "Herstellerdaten einschließen" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "Teil-Herstellerdaten in Stückliste-Export einschließen" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "Zulieferer einschließen" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "Zulieferer-Daten in Stückliste-Export einschließen" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "Preisdaten einschließen" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "Preisinformationen in Stücklisten-Export einschließen" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "Ersatzteil entfernen" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "Wählen Sie ein neues Ersatzteil aus und fügen Sie sie mit den folgenden Eingaben hinzu" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "Sind Sie sicher, dass Sie dieses Ersatzteil entfernen möchten?" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "Ersatzteil entfernen" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "Ersatzteil hinzufügen" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "Stücklisten Ersatzteile bearbeiten" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "Alle ausgewählte Stücklistenpositionen werden gelöscht" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "Ausgewählte Stücklistenpositionen löschen?" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "Stückliste für Bauteile laden" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "Ersatzteile verfügbar" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "Varianten erlaubt" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "Ersatzteile" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "Stücklisten-Bepreisung ist vollständig" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "Stücklisten-Bepreisung ist unvollständig" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "Keine Preisinformation verfügbar" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "Kein Lagerbestand verfügbar" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "Beinhaltet Variante und Ersatzbestand" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "Beinhaltet Variantenbestand" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "Enthält Ersatzbestand" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "Verbrauchsartikel" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "Stücklisten-Position kontrollieren" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "Diese Position wurde kontrolliert" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "Ersatzteile bearbeiten" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "Stücklisten-Position bearbeiten" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "Stücklisten-Position löschen" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "Stückliste anzeigen" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "Keine Stücklisten-Position(en) gefunden" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "benötigtes Teil" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "Geerbt von übergeordneter Stückliste" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "Bauauftrag bearbeiten" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "Bauauftrag erstellen" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "Bauauftrag abbrechen" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "Sind Sie sicher, dass sie diesen Bauauftrag abbrechen möchten?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "Lagerbestand wurde zu diesem Bauauftrag hinzugefügt" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "Für diesen Bau-Auftrag sind noch unvollständige Endprodukte vorhanden" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "Bauauftrag ist bereit abgeschlossen zu werden" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "Dieser Bauauftrag kann nicht abgeschlossen werden, da es unfertige Endprodukte gibt" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "Bauauftrag ist unvollständig" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "Bauauftrag fertigstellen" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "Nächste verfügbare Seriennummer" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "Letzte Seriennummer" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "Die Stückliste enthält verfolgbare Teile" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "Endprodukte müssen individuell angelegt werden" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "Nachverfolgbare Teile können Seriennummern haben" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "Seriennummeren für mehrere einzelne Endprodukte angeben" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "Endprodukt anlegen" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "Lagerartikel zu diesem Endprodukt zuweisen" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" -msgstr "Bestand von Endpordukt zurücknehmen" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" +msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "Endprodukt fertigstellen" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "Endprodukt entfernen" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" -msgstr "Sind Sie sicher, dass sie alle Lagerartikel von diesem Bauauftrag entfernen möchten?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" +msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" -msgstr "Lagerartikel zurücknehmen" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" +msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "Endprodukte auswählen" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "Mindestens ein Endprodukt muss ausgewählt werden" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "Endprodukt" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "Endprodukte fertigstellen" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "Endprodukte entfernen" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "Keine Allokationen für Bauauftrag gefunden" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "Standort nicht angegeben" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "Endprodukte fertigstellen" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "Endprodukte löschen" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "Keine aktiven Endprodukte gefunden" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" -msgstr "Bestand zuteilen" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" +msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" -msgstr "Keine nachverfolgten Stücklisten-Einträge für diesen Bauauftrag" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" +msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "Abgeschlossene Tests" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "Keine erforderlichen Tests für diesen Bauauftrag" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "Bestands-Zuordnung bearbeiten" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "Bestands-Zuordnung löschen" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "Zuordnung bearbeiten" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "Zuordnung entfernen" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "Ersatzteile verfügbar" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "Anzahl pro" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "Unzureichender Bestand verfügbar" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "Ausreichender Bestand verfügbar" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "Bestand bauen" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "Bestand bestellen" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "Bestand zuweisen" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "Teile auswählen" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "Sie müssen mindestens ein Teil auswählen" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "Anzahl für Bestandszuordnung eingeben" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "Alle Teile zugeordnet" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "Alle ausgewählten Teile wurden vollständig zugeordnet" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "Wählen Sie den Quellort aus (leer lassen um von allen Standorten zu nehmen)" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "Lagerartikel für Bauauftrag zuweisen" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "Keine passenden Lagerstandorte" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "Keine passenden Lagerbestände" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "Automatische Lagerzuordnung" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "Lagerartikel werden automatisch diesem Bauauftrag zugewiesen, entsprechend den angegebenen Richtlinien" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "Wenn ein Lagerort angegeben ist, wird der Lagerbestand nur von diesem Ort zugewiesen" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "Wenn der Lagerbestand als austauschbar gilt, wird er vom ersten Standort zugewiesen, an dem er gefunden wird" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 msgid "If substitute stock is allowed, it will be used where stock of the primary part cannot be found" msgstr "Wenn ein Ersatzbestand erlaubt ist, wird es dort verwendet, wo kein Vorrat des Primärteils gefunden werden kann" -#: templates/js/translated/build.js:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "Lagerartikel zuordnen" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "Keine Bauaufträge passen zur Anfrage" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "Auswählen" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "Bauauftrag ist überfällig" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "Fortschritt" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "Keine Benutzerinformation" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "Gruppe" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" -msgstr "Keine Teile zugeordnet zu" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" +msgstr "Bestands-Zuordnung bearbeiten" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "Bestands-Zuordnung löschen" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "Zuordnung bearbeiten" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "Zuordnung entfernen" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "Nachverfolgbares Teil" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "Unzureichender Bestand verfügbar" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "Ausreichender Bestand verfügbar" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "Bestand bauen" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "Bestand bestellen" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "Bestand zuweisen" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "Hersteller hinzufügen" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "Herstellerteil hinzufügen" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "Herstellerteil ändern" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "Zulieferer hinzufügen" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "Zuliefererteil hinzufügen" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "Alle ausgewählten Zulieferteile werden gelöscht" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "Zuliefererteil entfernen" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "Neue Firma hinzufügen" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "Teile geliefert" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "Hersteller-Teile" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "Keine Firmeninformation gefunden" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "Alle ausgewählten Herstellerrteile werden gelöscht" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "Herstellerteile löschen" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "Alle ausgewählten Parameter werden gelöscht" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "Parameter löschen" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Teile bestellen" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "Herstellerteile löschen" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "Keine Herstellerteile gefunden" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "Vorlagenteil" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "Baugruppe" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "Keine Parameter gefunden" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "Parameter bearbeiten" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "Parameter löschen" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "Parameter bearbeiten" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "Parameter löschen" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "Zuliefererteil entfernen" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "Keine Zuliefererteile gefunden" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "Verfügbarkeit" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "Zuliefererteil bearbeiten" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "Zuliefererteil entfernen" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "Preisstaffel löschen" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "Preisstaffel bearbeiten" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "Keine Informationen zur Preisstaffel gefunden" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "Zuletzt aktualisiert" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "Preisstaffel bearbeiten" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "Preisstaffel löschen" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "ja" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "nein" @@ -10467,31 +10585,31 @@ msgstr "nein" msgid "Select filter" msgstr "Filter auswählen" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "Filter hinzufügen" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "Filter entfernen" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "Filter anlegen" @@ -10516,6 +10634,12 @@ msgstr "Löschvorgang nicht erlaubt" msgid "View operation not allowed" msgstr "Anzeigevorgang nicht erlaubt" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Löschen" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "Dieses Formular offen lassen" @@ -10533,23 +10657,23 @@ msgstr "Fehler in Formular" msgid "No results found" msgstr "Keine Ergebnisse gefunden" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "Suche" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "Eingabe leeren" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "Dateispalte" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "Feldname" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "Spalten auswählen" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "Drucker auswählen" @@ -10670,7 +10802,7 @@ msgstr "Keine Nachrichten gefunden" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "ID" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "Zeile löschen" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "Keine Positionen gefunden" @@ -10735,370 +10867,410 @@ msgstr "Zeile bearbeiten" msgid "Delete line" msgstr "Zeile löschen" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "Teileigenschaften" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "Erstellungsoptionen für Teile" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "Einstellungen für Teilkopien" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "Teil-Kategorie hinzufügen" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "Übergeordnete Teilkategorie" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "Icon (optional) - alle verfügbaren Icons einsehbar auf" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "Teil-Kategorie hinzufügen" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "Teil-Kategorie bearbeiten" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "Möchten Sie diese Kategorie wirklich löschen?" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "In übergeordnete Kategorie verschieben" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "Teil-Kategorie löschen" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "Aktion für Teile in dieser Kategorie" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "Aktion für Unterkategorien" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "Teil hinzufügen" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "Ein weiteres Teil anlegen" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "Teil erfolgreich angelegt" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "Teil bearbeiten" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "Teil bearbeitet" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "Teil-Variante anlegen" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "Aktives Teil" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 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:524 +#: templates/js/translated/part.js:523 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:526 +#: templates/js/translated/part.js:525 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:527 +#: templates/js/translated/part.js:526 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:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "Alle Hersteller- und Zuliefererinformationen für dieses Teil werden gelöscht" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "Teil löschen" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "Sie haben Benachrichtigungen für dieses Teil abonniert" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "Sie haben Benachrichtigungen für dieses Teil abonniert" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "Benachrichtigungen für dieses Teil abonnieren" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "Sie haben Benachrichtigungen für dieses Teil abgemeldet" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "Die Stückliste zu validieren markiert jede Zeile als gültig" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "Stückliste prüfen" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "überprüfte Stückliste" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "Stückliste kopieren" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "Bestand niedrig" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "Kein Lagerbestand verfügbar" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "Bedarf" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "Einheit" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "Nachverfolgbares Teil" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "virtuelles Teil" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "Abonnierter Teil" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "Verkäufliches Teil" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "Die Erstellung eines neuen Inventurberichtes planen." -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 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:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "Inventurbericht generieren" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "Inventurbericht geplant" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "Keine Inventurinformationen verfügbar" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "Inventureintrag bearbeiten" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "Inventureintrag löschen" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "Keine Varianten gefunden" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "Keine Teilparametervorlagen gefunden" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "Teilparametervorlage bearbeiten" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "Alle Parameter, die diese Vorlage referenzieren, werden ebenfalls gelöscht" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "Teilparametervorlage löschen" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "Keine Bestellungen gefunden" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "Diese Position ist überfällig" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "Position empfangen" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "Teile-Beziehung löschen" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "Teile-Beziehung löschen" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "Keine Teile gefunden" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "Keine Kategorie" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "Listenansicht" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "Rasteransicht" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "Legen Sie die Teilkategorie für die ausgewählten Teile fest" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "Teil-Kategorie auswählen" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" -msgstr "Teil-Kategorie wählen" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "Teil-Kategorie auswählen" -#: templates/js/translated/part.js:2495 -msgid "Category is required" -msgstr "Kategorie erforderlich" +#: templates/js/translated/part.js:2253 +msgid "parts" +msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "Keine Kategorie" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "Listenansicht" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "Rasteransicht" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "Baumansicht" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "Unterkategorien laden" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "Abonnierte Kategorie" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "Keine zur Anfrage passenden Testvorlagen" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "Testergebnis bearbeiten" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "Testergebnis löschen" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "Dieses Testergebnis ist für ein Hauptteil" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "Testergebnis-Vorlage bearbeiten" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "Testergebnis-Vorlage löschen" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "Kein Datum angegeben" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "Das angegebene Datum liegt in der Vergangenheit" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "Spekulativ" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "Keine Zeitplanung für dieses Teil vorhanden" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "Fehler beim Abrufen der Zeitplanungsinformationen für dieses Teil" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "Geplante Lagermengen" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "Maximale Anzahl" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "Minimaler Lagerbestand" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "Beispiel" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "Das Plugin wurde installiert" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "Fehler beim Abrufen der Währungsdaten" @@ -11139,234 +11311,234 @@ msgstr "Keine Variantendaten verfügbar" msgid "Variant Part" msgstr "Variantenteil" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "Bestellung zum Duplizieren auswählen" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "Positionen duplizieren" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "Alle Positionen der ausgewählten Bestellung duplizieren" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "Zusätzliche Zeilen duplizieren" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "Zusätzliche Positionen der ausgewählten Bestellung duplizieren" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "Bestellung bearbeiten" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "Duplizierungsoptionen" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "Bestellung vervollständigen" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "Diese Bestellung als vollständig markieren?" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "Alle Einträge wurden erhalten" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "Diese Bestellung enthält Positionen, die nicht als empfangen markiert wurden." -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "Fertigstellen dieser Bestellung bedeutet, dass sie und ihre Positionen nicht länger bearbeitbar sind." -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "Bestellung abbrechen" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "Sind Sie sicher, dass Sie diese Bestellung abbrechen möchten?" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "Diese Bestellung kann nicht storniert werden" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "Bestellung aufgeben" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "Mindestens ein kaufbares Teil muss ausgewählt werden" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "Zu bestellende Menge" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "Neues Zuliefererteil" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "Neue Bestellung" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "Zur Bestellung hinzufügen" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "Keine passenden Lieferantenteile" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "Keine passenden Bestellungen" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "Positionen auswählen" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "Mindestens eine Position muss ausgewählt werden" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "Gelieferte Menge" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "Zu erhaltende Menge" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "Status" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "Losnummer hinzufügen" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "Seriennummern hinzufügen" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "Bestellnummer" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "Zu erhaltende Menge" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "Empfang der Teile bestätigen" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "Bestellpositionen erhalten" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "Bestellung überfällig" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "Positionen" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "Alle ausgewählten Positionen werden gelöscht" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "Ausgewählte Positionen löschen?" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "Position duplizieren" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "Position bearbeiten" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "Position löschen" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "Position duplizieren" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "Position bearbeiten" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "Position löschen" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "Kunden hinzufügen" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "Ungültiger Kunde" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "Keine passenden Positionen gefunden" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "Auftrag anlegen" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "Auftrag bearbeiten" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "Dieser Sendung wurden keine Artikel zugewiesen" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "Die folgenden Artikel werden verschickt" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "Sendung fertigstellen" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "Sendung bestätigen" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "Keine ausstehenden Sendungen gefunden" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "Keine Lagerartikel für offene Sendungen zugewiesen" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "Abgeschlossene Sendungen" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "Überspringen" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "Dieser Auftrag enthält Positionen, die noch nicht abgeschlossen sind." -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "Auftrag stornieren" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "Abbruch dieser Bestellung bedeutet, dass sie nicht länger bearbeitbar ist." -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "Sendung anlegen" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "Keine Aufträge gefunden" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "Sendung bearbeiten" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "Sendung fertigstellen" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "Sendung löschen" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "Sendung bearbeiten" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "Sendung löschen" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "Keine passenden Sendungen gefunden" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "Sendungsreferenz" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "Nicht versandt" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "Nachverfolgen" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "Rechnung" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "Sendung hinzufügen" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "Bestandszuordnung bestätigen" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "Artikel zu Kundenauftrag zuweisen" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "Keine Allokationen für Verkaufsaufträge gefunden" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "Bestandszuordnung bearbeiten" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "Löschvorgang bestätigen" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "Bestands-Zuordnung löschen" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "an Kunde versand" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "Lagerstandort nicht angegeben" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "Seriennummern zuweisen" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "Bestand kaufen" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "Preis berechnen" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "Kann nicht gelöscht werden, da Artikel versandt wurden" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "Kann nicht gelöscht werden, da Artikel zugewiesen sind" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "Seriennummern zuweisen" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "Stückpreis aktualisieren" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "Keine Ergebnisse" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "Suchbegriff eingeben" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "Ergebnisse minimieren" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "Ergebnisse entfernen" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "Lagerartikel serialisieren" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "Lager-Serialisierung bestätigen" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "Übergeordneter Lagerort" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "Lagerartikel-Ort bearbeiten" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "Neuer Lagerstandort" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "Sind Sie sicher, dass Sie diesen Lagerort löschen wollen?" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "Zum übergeordneten Lagerbestand verschieben" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "Bestand-Lagerort löschen" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "Aktion für Lagerartikel in diesem Lagerort" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "Aktion für Unter-Lagerorte" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "Dieser Teil kann nicht serialisiert werden" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "Ausgangsmenge für diesen Lagerartikel eingeben" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Seriennummern für neue Lagerartikel eingeben (oder leer lassen)" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "Lagerartikel dupliziert" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "Bestand duplizieren" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "Sind Sie sicher, dass Sie diesen Lagerartikel löschen wollen?" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "Lagerartikel löschen" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "Lagerartikel bearbeiten" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "Neuer Lagerartikel erstellt" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "Mehrere Lagerartikel erstellt" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "Seriennummer finden" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "Seriennummer eingeben" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "Eine Seriennummer eingeben" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "Keine passende Seriennummer" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "Mehrere Ergebnisse gefunden" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "Bestand Zuweisung bestätigen" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "Einem Kunden zuordnen" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "Achtung: Das Zusammenführen kann nicht rückgängig gemacht werden" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "Einige Informationen gehen verloren, wenn Artikel zusammengeführt werden" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "Lagerartikelverlauf wird für zusammengeführte Lagerartikel gelöscht" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "Lieferantenteil-Informationen werden für zusammengeführte Artikel gelöscht" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "Zusammenführung der Artikel bestätigen" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "Artikel zusammenführen" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "Bestand verschieben" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "Verschieben" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "Bestand zählen" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "Anzahl" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "Bestand entfernen" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "Entfernen" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "Bestand hinzufügen" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "Hinzufügen" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "Bestand löschen" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "Menge von serialisiertem Bestand kann nicht bearbeitet werden" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "Bestandsanzahl angeben" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "Lagerartikel auswählen" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" -msgstr "Sie müssen mindestens einen Lagerartikel auswählen" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" +msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "Bestands-Anpassung bestätigen" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "ERFOLGREICH" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "FEHLGESCHLAGEN" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "KEIN ERGEBNIS" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "Test bestanden" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "Testergebnis hinzufügen" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "Keine Testergebnisse gefunden" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "Testdatum" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "Testergebnis bearbeiten" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "Testergebnis löschen" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "In Arbeit" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "In Lagerartikel installiert" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "Auftrag zugewiesen" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "Kein Lagerort gesetzt" -#: templates/js/translated/stock.js:1746 +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" +msgstr "" + +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" +msgstr "Bestand zusammenführen" + +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" +msgstr "Bestand löschen" + +#: templates/js/translated/stock.js:1885 msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1850 +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 msgid "Stock item is in production" msgstr "Lagerartikel wird produziert" -#: templates/js/translated/stock.js:1855 +#: templates/js/translated/stock.js:2028 msgid "Stock item assigned to sales order" msgstr "Lagerartikel wurde Auftrag zugewiesen" -#: templates/js/translated/stock.js:1858 +#: templates/js/translated/stock.js:2031 msgid "Stock item assigned to customer" msgstr "Lagerartikel wurde Kunden zugewiesen" -#: templates/js/translated/stock.js:1861 +#: templates/js/translated/stock.js:2034 msgid "Serialized stock item has been allocated" msgstr "Serialisierter Lagerartikel wurde zugewiesen" -#: templates/js/translated/stock.js:1863 +#: templates/js/translated/stock.js:2036 msgid "Stock item has been fully allocated" msgstr "Lagerartikel wurde vollständig zugewiesen" -#: templates/js/translated/stock.js:1865 +#: templates/js/translated/stock.js:2038 msgid "Stock item has been partially allocated" msgstr "Lagerartikel wurde teilweise zugewiesen" -#: templates/js/translated/stock.js:1868 +#: templates/js/translated/stock.js:2041 msgid "Stock item has been installed in another item" msgstr "Lagerartikel in anderem Element verbaut" -#: templates/js/translated/stock.js:1870 +#: templates/js/translated/stock.js:2043 msgid "Stock item has been consumed by a build order" msgstr "" -#: templates/js/translated/stock.js:1874 +#: templates/js/translated/stock.js:2047 msgid "Stock item has expired" msgstr "Lagerartikel ist abgelaufen" -#: templates/js/translated/stock.js:1876 +#: templates/js/translated/stock.js:2049 msgid "Stock item will expire soon" msgstr "Lagerartikel läuft demnächst ab" -#: templates/js/translated/stock.js:1881 +#: templates/js/translated/stock.js:2054 msgid "Stock item has been rejected" msgstr "Lagerartikel abgewiesen" -#: templates/js/translated/stock.js:1883 +#: templates/js/translated/stock.js:2056 msgid "Stock item is lost" msgstr "Lagerartikel verloren" -#: templates/js/translated/stock.js:1885 +#: templates/js/translated/stock.js:2058 msgid "Stock item is destroyed" msgstr "Lagerartikel zerstört" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 msgid "Depleted" msgstr "gelöscht" -#: templates/js/translated/stock.js:2031 +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "Zuliefererteil nicht angegeben" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "Bestandswert" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "Keine zur Anfrage passenden Lagerartikel" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "Untergeordnete Lagerorte laden" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "Details" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "Artikelinformationen nicht verfügbar" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "Standort nicht mehr vorhanden" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "Bestellung existiert nicht mehr" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "Kunde existiert nicht mehr" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "Lagerartikel existiert nicht mehr" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "Hinzugefügt" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "Entfernt" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "Keine installierten Elemente" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "Lagerartikel entfernen" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "Zu deinstallierende Lagerartikel auswählen" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "Einen weiteren Lagerartikel in dieses Teil installiert" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "Lagerartikel können nur installiert werden wenn folgende Kriterien erfüllt werden" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "Der Lagerartikel ist auf ein Teil verknüpft das in der Stückliste für diesen Lagerartikel ist" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "Dieser Lagerartikel ist aktuell vorhanden" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "Der Lagerbestand ist nicht bereits in einem anderen Bestand installiert" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "Der Lagerbestand wird entweder mit einem Batch-Code oder mit Seriennummer verfolgt" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "Teil zur Installation auswählen" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "Bestellstatus" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "ausstehend" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "Mir zugewiesen" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "Nachverfolgbares Teil" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "Baugruppe" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "Hat verfügbaren Bestand" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "Bestand an Varianten zulassen" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "Hat Preis" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "Unter-Lagerorte einschließen" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "Lagerorte einschließen" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "Unterkategorien einschließen" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "Abonniert" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "Hat Seriennummer" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "Seriennummer >=" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "Seriennummer größer oder gleich" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "Seriennummer <=" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "Seriennummern kleiner oder gleich" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "Seriennummer" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "Losnummer" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "Aktive Teile" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "Bestand aktiver Teile anzeigen" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "Teil ist eine Baugruppe" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "Ist zugeordnet" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "Teil wurde zugeordnet" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "Lagerartikel ist zur Verwendung verfügbar" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "Bestand in Unter-Lagerorten einschließen" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "Zeige aufgebrauchte Lagerartikel" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "Zeige Objekte welche im Lager sind" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "In Arbeit" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "Elemente, die in Produktion sind, anzeigen" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "Varianten einschließen" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "Lagerartikel für Teil-Varianten einschließen" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "Installiert" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "Lagerartikel, die in anderen Elementen verbaut sind, anzeigen" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "zeige zu Kunden zugeordnete Einträge" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "Status" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "Hat Batch-Code" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "Nachverfolgt" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "Lagerbestand wird entweder per Batch-Code oder Seriennummer verfolgt" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "Hat Einkaufspreis" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "Bestand mit Einkaufspreis anzeigen" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "Ablaufdatum vor" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "Ablaufdatum nach" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "Zeige abgelaufene Lagerartikel" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "Bestand, der bald ablaufen, anzeigen" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "Test bestanden" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "Installierte Elemente einschließen" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "Bauauftrags-Status" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "Teile in Unterkategorien einschließen" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "Aktive Teile anzeigen" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "Verfügbarer Lagerbestand" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "Hat IPN" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "Teil hat Interne Teilenummer" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "Auf Lager" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "Käuflich" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "Hat Inventureinträge" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "Tabellendaten exportieren" msgid "Select File Format" msgstr "Dateiformat wählen" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "Lade Daten" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "Zeilen pro Seite" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "Alle Zeilen anzeigen" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "zeige" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "bis" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "von" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "Zeilen" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "Keine passenden Ergebnisse gefunden" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "Zeige/Verstecke Pagination" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "umschalten" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "Spalten" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "Alle" @@ -12588,50 +12792,6 @@ msgstr "E-Mail-Einstellungen" msgid "Email settings not configured" msgstr "E-Mail-Einstellungen nicht konfiguriert" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "Barcode Aktionen" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "Bestands-Einstellungen " - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "Zu ausgewählten Lagerartikeln hinzufügen" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "Von ausgewählten Lagerartikeln entfernen" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "Inventur für gewählte Lagerartikel" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "Ausgewählte Lagerartikel verschieben" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "Ausgewählte Artikel zusammenführen" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "Bestand zusammenführen" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "Ausgewählte Positionen bestellen" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "Ausgewählte Positionen löschen" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "Bestand löschen" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "Ja" @@ -12664,35 +12824,35 @@ msgstr "Berechtigungen" msgid "Important dates" msgstr "wichtige Daten" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "Berechtigung geändert" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "Gruppe" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "Ansicht" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "Berechtigung Einträge anzuzeigen" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "Berechtigung Einträge zu erstellen" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "Ändern" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "Berechtigungen Einträge zu ändern" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "Berechtigung Einträge zu löschen" diff --git a/InvenTree/locale/el/LC_MESSAGES/django.po b/InvenTree/locale/el/LC_MESSAGES/django.po index f7ac6d4db6..ead0c505a7 100644 --- a/InvenTree/locale/el/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:43\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -25,19 +25,19 @@ msgstr "Το API endpoint δε βρέθηκε" msgid "User does not have permission to view this model" msgstr "Δεν έχετε δικαιώματα να το δείτε αυτό" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "Μπορείτε να βρείτε λεπτομέρειες σφάλμα msgid "Enter date" msgstr "Εισάγετε ημερομηνία" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Σημειώσεις" @@ -81,47 +81,51 @@ msgstr "Η τιμή '{name}' δεν εμφανίζεται σε μορφή μο msgid "Provided value does not match required pattern: " msgstr "Η παρεχόμενη τιμή δεν ταιριάζει με το απαιτούμενο απαραραίητη μοτίβο: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Εισάγετε κωδικό" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Εισάγετε νέο κωδικό πρόσβασης" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Επιβεβαιώστε τον κωδικό πρόσβασης" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Επιβεβαιώστε τον νέο κωδικό πρόσβασης" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Παλιός κωδικός πρόσβασης" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "E-mail (ξανά)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Επιβεβαίωση διεύθυνσης email" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Πρέπει να πληκτρολογήσετε το ίδιο email κάθε φορά." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Η παρεχόμενη κύρια διεύθυνση ηλεκτρονικού ταχυδρομείου δεν είναι έγκυρη." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Ο παρεχόμενος τομέας ηλεκτρονικού ταχυδρομείου δεν έχει εγκριθεί." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Μη έγκυρη ποσότητα" @@ -237,9 +241,9 @@ msgstr "Το αρχείο λείπει" msgid "Missing external link" msgstr "Λείπει ο εξωτερικός σύνδεσμος" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Συνημμένο" @@ -247,29 +251,30 @@ msgstr "Συνημμένο" msgid "Select file to attach" msgstr "Επιλέξτε αρχείο για επισύναψη" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Σύνδεσμος" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Σύνδεσμος προς εξωτερική διεύθυνση URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Σχόλιο" @@ -277,13 +282,13 @@ msgstr "Σχόλιο" msgid "File comment" msgstr "Σχόλιο αρχείου" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Χρήστης" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "Μη έγκυρη επιλογή" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Όνομα" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Περιγραφή" @@ -384,7 +389,7 @@ msgid "parent" msgstr "γονέας" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Μονοπάτι" @@ -420,12 +425,12 @@ msgstr "Σφάλμα διακομιστή" msgid "An error has been logged by the server." msgstr "Ένα σφάλμα έχει καταγραφεί από το διακομιστή." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Πρέπει να είναι αριθμός" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "Διεύθυνση URL του αρχείου απομακρυσμένη msgid "Downloading images from remote URL is not enabled" msgstr "Η λήψη εικόνων από απομακρυσμένο URL δεν είναι ενεργοποιημένη" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Τσέχικα" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Γερμανικά" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Ελληνικά" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Αγγλικά" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Ισπανικά" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Ισπανικά (Μεξικό)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Φαρσί / Περσικά" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Γαλλικά" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Εβραϊκά" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Ούγγρικα" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Ιταλικά" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Ιαπωνικά" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Κορεάτικα" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Dutch" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Νορβηγικά" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Πολωνικά" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Πορτογαλικά" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Πορτογαλικά (Βραζιλίας)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Ρωσικά" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Σουηδικά" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Ταϊλανδέζικα" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Τούρκικα" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Βιετναμέζικα" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Κινέζικα" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Ο έλεγχος εργασίας στο παρασκήνιο απέτυχε" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "Δεν έχει ρυθμιστεί διεύθυνση ηλεκτρονικού ταχυδρομείου" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "Ο έλεγχος συστήματος για το Inventree απέτυχε" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Σε εκκρεμότητα" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Τοποθετήθηκε" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Ολοκληρώθηκε" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Ακυρώθηκε" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Χάθηκε" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Επιστράφηκε" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Αποστάλθηκε" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "ΟΚ" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Απαιτείται προσοχή" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Κατεστραμμένο" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Καταστράφηκε" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Απορρίφθηκε" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "Σε Καραντίνα" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Καταχώρηση παλαιού αποθέματος" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Το αντικείμενο αποθεμάτων δημιουργήθηκε" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Έγινε συγχώνευση αποθεμάτων" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Εκχωρημένος σειριακός κωδικός" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Απόθεμα που μετρήθηκε" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Προστέθηκε απόθεμα χειροκίνητα" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Αφαιρέθηκε απόθεμα χειροκίνητα" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Η τοποθεσία τροποποιήθηκε" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Εγκαταστάθηκε στη συναρμολόγηση" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Αφαιρέθηκε από τη συναρμολόγηση" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Εγκαταστάθηκε αντικείμενο" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Αφαιρέθηκε αντικείμενο" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Έγινε διαχωρισμός από το γονεϊκό αρχείο" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Διαχωρίστηκε θυγατρικό στοιχείο" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Έγινε συγχώνευση αποθεμάτων" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Μετατράπηκε σε παραλλαγή" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Απεστάλη στον πελάτη" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Επιστράφηκε από πελάτη" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Δημιουργήθηκε η έξοδος παραγγελίας" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Η έξοδος της σειράς κατασκευής ολοκληρώθηκε" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Κατανάλωση με εντολή κατασκευής" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Απεστάλη στον πελάτη" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Επιστράφηκε από πελάτη" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Παραγωγή" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "Η μέση τιμή δεν πρέπει να υπερβαίνει το msgid "Invalid value for overage" msgstr "Μη έγκυρη τιμή για υπέρβαση" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Τροποποίηση πληροφοριών χρήστη" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Ορισμός Κωδικού Πρόσβασης" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Τα πεδία κωδικού πρόσβασης πρέπει να ταιριάζουν" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Δόθηκε λάθος κωδικός πρόσβασης" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Πληροφορίες συστήματος" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Σχετικά με το InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Η έκδοση πρέπει να ακυρωθεί πριν διαγραφεί" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Σειρά Κατασκευής" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Δημιουργία Παραγγελιών" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Μη έγκυρη επιλογή για γονική κατασκευή" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Αναφορά Παραγγελίας Κατασκευής" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Αναφορά" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Γονική Κατασκευή" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "BuildOrder στην οποία έχει δοθεί αυτή η κατασκευή" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "BuildOrder στην οποία έχει δοθεί αυτή η κατα #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Εξάρτημα" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Επιλέξτε τμήμα για κατασκευή" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Κωδικός Παραγγελίας Πωλήσεων" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "SalesOrder στην οποία έχει διατεθεί αυτό το build" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Τοποθεσία Προέλευσης" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Επιλέξτε τοποθεσία από την οποία θα γίνει απόθεμα, για αυτή την κατασκευή (αφήστε κενό για να πάρετε από οποιαδήποτε θέση αποθήκευσης)" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Τοποθεσία Προορισμού" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Επιλέξτε την τοποθεσία όπου θα αποθηκευτούν τα ολοκληρωμένα στοιχεία" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Ποσότητα Κατασκευής" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Αριθμός αντικειμένων για κατασκευή" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Ολοκληρωμένα αντικείμενα" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Αριθμός αντικειμένων αποθέματος που έχουν ολοκληρωθεί" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Κατάσταση Κατασκευής" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Κωδικός κατάστασης κατασκευής" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Κωδικός Παρτίδας" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Κωδικός παρτίδας για αυτήν την κατασκευή" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Ημερομηνία Δημιουργίας" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Ημερομηνία ολοκλήρωσης στόχου" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Ημερομηνία ολοκλήρωσης της κατασκευής. Η κατασκευή θα καθυστερήσει μετά από αυτή την ημερομηνία." -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Ημερομηνία ολοκλήρωσης" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "ολοκληρώθηκε από" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Εκδόθηκε από" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Χρήστης που εξέδωσε αυτήν την παραγγελία κατασκευής" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Υπεύθυνος" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Εξωτερικοί σύνδεσμοι" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Η παραγγελία κατασκευής {build} έχει ολοκληρωθεί" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθεί" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Δεν καθορίστηκε έξοδος κατασκευής" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθεί" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Η έξοδος κατασκευής δεν ταιριάζει με την παραγγελία κατασκευής" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "Η ποσότητα πρέπει να είναι μεγαλύτερη από 0" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" -msgstr "Το στοιχείο κατασκευής πρέπει να ορίζει μια έξοδο κατασκευής, καθώς το κύριο τμήμα επισημαίνεται ως ανιχνεύσιμο" +#: build/models.py:1265 +msgid "Build object" +msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "Η καταχωρημένη ποσότητα ({q}) δεν πρέπει να υπερβαίνει τη διαθέσιμη ποσότητα αποθέματος ({a})" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Στοιχείο αποθέματος είναι υπερ-κατανεμημένο" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Η ποσότητα πρέπει να είναι μεγαλύτερη από 0" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Η ποσότητα πρέπει να είναι 1 για σειριακό απόθεμα" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Το επιλεγμένο αντικείμενο αποθέματος δεν βρέθηκε στο BOM" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Κατασκευή" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Κατασκευή για εκχώρηση τμημάτων" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Στοιχείο Αποθέματος" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Στοιχείο πηγαίου αποθέματος" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Ποσότητα" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "Το στοιχείο κατασκευής πρέπει να ορίζει μια έξοδο κατασκευής, καθώς το κύριο τμήμα επισημαίνεται ως ανιχνεύσιμο" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "Η καταχωρημένη ποσότητα ({q}) δεν πρέπει να υπερβαίνει τη διαθέσιμη ποσότητα αποθέματος ({a})" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Στοιχείο αποθέματος είναι υπερ-κατανεμημένο" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Η ποσότητα πρέπει να είναι μεγαλύτερη από 0" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Η ποσότητα πρέπει να είναι 1 για σειριακό απόθεμα" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Στοιχείο Αποθέματος" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Στοιχείο πηγαίου αποθέματος" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Ποσότητα αποθέματος για διάθεση για κατασκευή" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Εγκατάσταση σε" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Αποθήκη προορισμού" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Κατασκευή Εξόδου" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "Η έξοδος κατασκευής δεν ταιριάζει με την παραγγελία κατασκευής" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "Το εξερχόμενο μέρος δεν ταιριάζει με το μέρος BuildOrder" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθεί" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "Αυτή η έξοδος κατασκευής δεν έχει εκχωρηθεί πλήρως" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Εισάγετε ποσότητα για την έξοδο κατασκευής" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "Ακέραιη ποσότητα που απαιτείται για ανιχνεύσιμα μέρη" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Ακέραιη ποσότητα που απαιτείται, καθώς ο λογαριασμός των υλικών περιέχει ανιχνεύσιμα μέρη" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Σειριακοί αριθμοί" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Εισάγετε ποσότητα για την έξοδο κατασκευής" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "Αυτόματη Κατανομή Σειριακών Αριθμών" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2297,8 +2294,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,10 +2303,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2317,10 +2314,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3872,6 +3947,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "Το IPN πρέπει να ταιριάζει με το μοτίβο regex {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Κατασκευή" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/en/LC_MESSAGES/django.po b/InvenTree/locale/en/LC_MESSAGES/django.po index f86f89811d..64c21eac96 100644 --- a/InvenTree/locale/en/LC_MESSAGES/django.po +++ b/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: 2023-06-01 21:56+0000\n" +"POT-Creation-Date: 2023-07-04 21:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,19 +26,19 @@ msgstr "" msgid "User does not have permission to view this model" msgstr "" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -50,26 +50,26 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "" @@ -82,47 +82,51 @@ msgstr "" msgid "Provided value does not match required pattern: " msgstr "" -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "" -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "" -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "" @@ -238,9 +242,9 @@ msgstr "" msgid "Missing external link" msgstr "" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "" @@ -248,29 +252,30 @@ msgstr "" msgid "Select file to attach" msgstr "" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2681 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "" @@ -278,13 +283,13 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2140 +#: common/models.py:2141 common/models.py:2354 common/models.py:2355 +#: common/models.py:2611 common/models.py:2612 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "" @@ -325,54 +330,54 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2340 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:159 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:172 +#: report/models.py:575 report/models.py:619 #: report/templates/report/inventree_build_order_base.html:117 #: stock/admin.py:41 stock/templates/stock/location.html:123 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "" @@ -385,7 +390,7 @@ msgid "parent" msgstr "" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "" @@ -421,12 +426,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3873 +#: InvenTree/serializers.py:60 part/models.py:3935 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -499,316 +504,319 @@ msgstr "" msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -832,99 +840,127 @@ msgstr "" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3827 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3821 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3774 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3836 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3531 -#: part/models.py:3639 part/models.py:3739 part/models.py:4053 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3583 +#: part/models.py:3706 part/models.py:3801 part/models.py:4115 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -934,266 +970,229 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2162 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3755 +#: part/forms.py:47 part/models.py:3029 part/models.py:3817 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1202,315 +1201,367 @@ msgstr "" #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:668 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3662 -#: part/models.py:4045 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1539,6 +1590,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1617,69 +1669,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1687,32 +1737,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1728,8 +1778,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1743,21 +1793,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1765,147 +1815,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1913,14 +1922,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1967,16 +1972,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2260,9 +2255,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3536 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3588 +#: report/models.py:165 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2270,10 +2265,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2281,8 +2276,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2290,7 +2285,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2298,8 +2293,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2307,10 +2302,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2318,10 +2313,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2353,7 +2348,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2602,179 +2597,179 @@ msgid "Stock location default icon (empty means no icon)" msgstr "" #: common/models.py:1471 -msgid "Build Order Reference Pattern" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Required pattern for generating Purchase Order reference field" +msgstr "" + +#: common/models.py:1534 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" -msgstr "" - -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1542 -msgid "Enable registration" +msgid "Enable password forgot" msgstr "" #: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable registration" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable SSO" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Email required" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Mail twice" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Password twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Allowed domains" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Group on signup" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Group to which new users are assigned on registration" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Enforce MFA" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Users must use multifactor security." +msgstr "" + +#: common/models.py:1619 +msgid "Check plugins on startup" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" -msgstr "" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" #: common/models.py:1628 @@ -2849,7 +2844,7 @@ msgstr "" msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1710 common/models.py:2133 msgid "Settings key (must be unique - case insensitive" msgstr "" @@ -2890,528 +2885,513 @@ msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "" - -#: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1787 +#: common/models.py:1780 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1793 +#: common/models.py:1786 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1794 +#: common/models.py:1787 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 +#: common/models.py:1793 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1794 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1800 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1801 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1807 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1808 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1814 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1815 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1821 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1822 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1828 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1829 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1835 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1836 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1842 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1843 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1849 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1850 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1856 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1857 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1863 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1864 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1870 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1871 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1877 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1878 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1884 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1885 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1891 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1892 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1898 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1899 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1905 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1906 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1912 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1913 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1919 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1920 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1926 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1927 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1933 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1934 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1940 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1941 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1947 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1948 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1954 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1955 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1961 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1962 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1968 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1969 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1975 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1976 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1982 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1983 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1989 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1990 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:1996 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:1997 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2003 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2004 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2010 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2011 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2017 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2018 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2024 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2025 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2031 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2032 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2038 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2039 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2045 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2046 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2052 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2053 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2059 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2060 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2074 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2075 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2081 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2082 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2088 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2089 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2098 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2099 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2107 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2108 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2116 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2117 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2163 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2170 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2171 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2331 common/models.py:2509 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2332 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2341 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2346 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2347 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2361 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2362 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2369 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2370 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2476 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2477 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2485 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2486 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2493 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2494 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2500 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2501 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2510 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2515 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2516 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2670 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2676 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2686 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2691 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2696 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2701 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2702 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2722 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3421,7 +3401,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2723 msgid "Image file" msgstr "" @@ -3498,7 +3478,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3506,303 +3486,387 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3777 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3839 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3815,7 +3879,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3855,17 +3919,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3873,6 +3937,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3905,7 +3976,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3915,129 +3986,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4049,17 +4112,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4079,40 +4142,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4136,23 +4181,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4163,13 +4213,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4196,7 +4246,7 @@ msgstr "" #: company/templates/company/supplier_part.html:211 #: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4204,37 +4254,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 +#: stock/serializers.py:662 stock/templates/stock/location.html:168 #: stock/templates/stock/location.html:182 #: stock/templates/stock/location.html:194 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4260,7 +4310,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4268,77 +4318,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:272 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:265 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:293 report/models.py:440 +#: report/models.py:478 report/models.py:516 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4347,569 +4390,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4956,82 +5003,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5084,13 +5123,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5151,9 +5190,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5164,30 +5203,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5207,29 +5241,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5247,7 +5281,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5256,16 +5290,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5273,18 +5307,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5310,12 +5343,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3643 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3710 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3647 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3714 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5324,19 +5357,19 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:178 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5357,24 +5390,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5382,23 +5415,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5415,13 +5441,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5438,7 +5464,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3651 +#: part/admin.py:274 part/models.py:3718 msgid "Part IPN" msgstr "" @@ -5452,35 +5478,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5490,7 +5516,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5498,917 +5524,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3592 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3659 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3648 +#: part/models.py:850 part/models.py:3715 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3591 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3658 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3539 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3531 +#: part/models.py:3583 msgid "Parent Part" msgstr "" -#: part/models.py:3536 part/models.py:3597 part/models.py:3598 +#: part/models.py:3588 part/models.py:3664 part/models.py:3665 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3541 +#: part/models.py:3593 msgid "Data" msgstr "" -#: part/models.py:3541 +#: part/models.py:3593 msgid "Parameter Value" msgstr "" -#: part/models.py:3602 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3669 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3603 +#: part/models.py:3670 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3640 +#: part/models.py:3707 msgid "Part ID or part name" msgstr "" -#: part/models.py:3644 +#: part/models.py:3711 msgid "Unique part ID value" msgstr "" -#: part/models.py:3652 +#: part/models.py:3719 msgid "Part IPN value" msgstr "" -#: part/models.py:3655 +#: part/models.py:3722 msgid "Level" msgstr "" -#: part/models.py:3656 +#: part/models.py:3723 msgid "BOM level" msgstr "" -#: part/models.py:3740 +#: part/models.py:3729 part/models.py:4107 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3802 msgid "Select parent part" msgstr "" -#: part/models.py:3748 +#: part/models.py:3810 msgid "Sub part" msgstr "" -#: part/models.py:3749 +#: part/models.py:3811 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3755 +#: part/models.py:3817 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3759 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3760 +#: part/models.py:3822 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3765 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3766 +#: part/models.py:3828 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3770 part/templates/part/upload_bom.html:55 +#: part/models.py:3832 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3771 +#: part/models.py:3833 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3774 +#: part/models.py:3836 msgid "BOM item reference" msgstr "" -#: part/models.py:3777 +#: part/models.py:3839 msgid "BOM item notes" msgstr "" -#: part/models.py:3781 +#: part/models.py:3843 msgid "Checksum" msgstr "" -#: part/models.py:3781 +#: part/models.py:3843 msgid "BOM line checksum" msgstr "" -#: part/models.py:3786 templates/js/translated/table_filters.js:144 +#: part/models.py:3848 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3787 +#: part/models.py:3849 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3792 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3854 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3793 +#: part/models.py:3855 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3798 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3860 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3799 +#: part/models.py:3861 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3885 stock/models.py:577 +#: part/models.py:3947 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3894 part/models.py:3896 +#: part/models.py:3956 part/models.py:3958 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4012 +#: part/models.py:4074 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4033 +#: part/models.py:4095 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4046 +#: part/models.py:4108 msgid "Parent BOM item" msgstr "" -#: part/models.py:4054 +#: part/models.py:4116 msgid "Substitute part" msgstr "" -#: part/models.py:4069 +#: part/models.py:4131 msgid "Part 1" msgstr "" -#: part/models.py:4073 +#: part/models.py:4135 msgid "Part 2" msgstr "" -#: part/models.py:4073 +#: part/models.py:4135 msgid "Select Related Part" msgstr "" -#: part/models.py:4091 +#: part/models.py:4153 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4095 +#: part/models.py:4157 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6421,9 +6443,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6461,14 +6483,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6505,7 +6519,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6518,33 +6532,20 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6581,7 +6582,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6592,7 +6593,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6604,101 +6605,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6732,13 +6733,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6779,7 +6780,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6824,10 +6825,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6850,7 +6851,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6858,8 +6859,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6882,7 +6883,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6956,9 +6957,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6989,9 +6990,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7054,12 +7055,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7142,10 +7143,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "" @@ -7167,7 +7164,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7197,7 +7194,7 @@ msgid "InvenTree Notifications" msgstr "" #: plugin/builtin/integration/core_notifications.py:35 -msgid "Integrated outgoing notificaton methods" +msgid "Integrated outgoing notification methods" msgstr "" #: plugin/builtin/integration/core_notifications.py:40 @@ -7230,47 +7227,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 templates/InvenTree/settings/plugin_details.html:47 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7278,21 +7271,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7329,38 +7318,46 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + #: report/api.py:171 msgid "No valid objects provided to template" msgstr "" @@ -7374,91 +7371,91 @@ msgstr "" msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:160 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:166 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:173 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:179 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:266 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:273 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:294 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:302 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:303 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:364 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:365 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:406 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:407 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:441 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:479 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:517 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:570 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:571 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:575 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:612 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:613 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:620 msgid "Asset file description" msgstr "" @@ -7479,8 +7476,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7492,23 +7489,23 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" @@ -7521,12 +7518,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7552,8 +7549,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7621,31 +7618,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:580 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:587 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:613 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:622 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:640 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7656,7 +7653,7 @@ msgid "Stock Location" msgstr "" #: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7674,8 +7671,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7691,7 +7688,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7804,233 +7801,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8038,48 +8044,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8087,13 +8093,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8102,15 +8108,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:88 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8119,11 +8127,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:94 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8163,6 +8172,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8225,7 +8239,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8243,7 +8257,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8253,7 +8267,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8262,7 +8276,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8368,20 +8382,20 @@ msgstr "" msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:278 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:295 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:368 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:379 msgid "Link Barcode to Stock Location" msgstr "" @@ -8455,71 +8469,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8676,59 +8690,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8761,6 +8758,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8783,14 +8785,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8886,12 +8880,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8929,7 +8923,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9006,6 +9000,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9153,7 +9148,7 @@ msgid "Some languages are not complete" msgstr "" #: templates/InvenTree/settings/user_display.html:97 -msgid "Show only sufficent" +msgid "Show only sufficient" msgstr "" #: templates/InvenTree/settings/user_display.html:99 @@ -9220,44 +9215,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9451,14 +9450,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9503,7 +9494,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9517,7 +9508,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9589,23 +9580,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9662,7 +9665,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9720,743 +9723,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10464,31 +10561,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10513,6 +10610,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:253 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10530,23 +10633,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10566,6 +10669,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10667,7 +10778,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10716,7 +10827,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10732,370 +10843,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11136,234 +11287,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11392,941 +11543,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:249 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12358,51 +12541,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12585,50 +12768,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12661,34 +12800,34 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:236 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:244 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:247 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:247 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:249 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:251 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:251 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:253 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/es/LC_MESSAGES/django.po b/InvenTree/locale/es/LC_MESSAGES/django.po index c2d10cddf6..4a0ac859d8 100644 --- a/InvenTree/locale/es/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-04 23:49\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Spanish, Mexico\n" "Language: es_MX\n" @@ -25,19 +25,19 @@ msgstr "endpoint API no encontrado" msgid "User does not have permission to view this model" msgstr "El usuario no tiene permiso para ver este modelo" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "Ningún valor proporcionado" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "El valor proporcionado no es un número válido" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "El valor proporcionado tiene una unidad inválida" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "El valor proporcionado no puede ser convertido a la unidad especificada" @@ -49,26 +49,26 @@ msgstr "Detalles del error pueden encontrarse en el panel de administración" msgid "Enter date" msgstr "Ingrese la fecha" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Notas" @@ -81,47 +81,51 @@ msgstr "El valor '{name}' no aparece en formato de patrón" msgid "Provided value does not match required pattern: " msgstr "El valor proporcionado no coincide con el patrón requerido: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Introduzca contraseña" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Ingrese su nueva contraseña" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Confirmar la contraseña" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Confirmar contraseña nueva" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Contraseña anterior" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Email (de nuevo)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Confirmación de dirección de email" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Debe escribir el mismo correo electrónico cada vez." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "La dirección de correo electrónico principal proporcionada no es válida." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "El dominio de correo electrónico proporcionado no está aprobado." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "Registro deshabilitado." + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Cantidad proporcionada no válida" @@ -237,9 +241,9 @@ msgstr "Archivo no encontrado" msgid "Missing external link" msgstr "Falta enlace externo" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Archivo adjunto" @@ -247,29 +251,30 @@ msgstr "Archivo adjunto" msgid "Select file to attach" msgstr "Seleccionar archivo para adjuntar" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Enlace" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Enlace a URL externa" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Comentario" @@ -277,13 +282,13 @@ msgstr "Comentario" msgid "File comment" msgstr "Comentario del archivo" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Usuario" @@ -324,54 +329,54 @@ msgstr "Los nombres duplicados no pueden existir bajo el mismo padre" msgid "Invalid choice" msgstr "Selección no válida" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Nombre" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Descripción" @@ -384,7 +389,7 @@ msgid "parent" msgstr "padre" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Ruta" @@ -420,12 +425,12 @@ msgstr "Error de servidor" msgid "An error has been logged by the server." msgstr "Se ha registrado un error por el servidor." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" -msgstr "Debe ser un numero valido" +msgstr "Debe ser un número válido" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "URL de imagen remota" msgid "Downloading images from remote URL is not enabled" msgstr "La descarga de imágenes desde la URL remota no está habilitada" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Checo" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Danés" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Alemán" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Griego" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Inglés" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Español" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Español (México)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Farsi / Persa" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "Finlandés" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Francés" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hebreo" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Húngaro" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italiano" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japonés" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Coreano" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Holandés" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Noruego" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polaco" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugués" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugués (Brasileño)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Ruso" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Esloveno" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Sueco" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Tailandés" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Turco" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamita" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Chino" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Falló la comprobación en segundo plano del worker" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "No se ha configurado el backend de correo" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "Las comprobaciones de estado del sistema InvenTree fallaron" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Pendiente" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Colocado" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Terminado" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Cancelado" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Perdida" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Devuelto" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "En progreso" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Enviado" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Atención necesaria" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Dañado" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Destruido" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Rechazado" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "En cuarentena" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Entrada antigua de rastreo de stock" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Artículo de stock creado" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" -msgstr "Elemento de stock editado" +msgstr "Artículo de almacén editado" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Número de serie asignado" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Stock contado" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Stock añadido manualmente" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Stock eliminado manualmente" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Ubicación cambiada" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "Existencia actualizada" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Instalado en el ensamblaje" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Retirado del ensamblaje" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Artículo del componente instalado" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Elemento de componente eliminado" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Separar del artículo principal" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Dividir artículo secundario" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Artículos de stock combinados" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Convertir a variante" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Enviar al cliente" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Devolución del cliente" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Trabajo de ensamblaje creado" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Construir orden de salida completado" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" -msgstr "" +msgstr "Orden de ensamble rechazada" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Consumido por orden de construcción" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "Enviado contra orden de venta" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "Recibido contra la orden de compra" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "Devuelto contra orden de devolución" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Enviar al cliente" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Devolución del cliente" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Producción" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "Devolución" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "Reparación" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "Reembolso" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "Reemplazo" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "Reembolso" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "Rechazo" @@ -831,99 +839,127 @@ msgstr "El excedente no debe superar el 100%" msgid "Invalid value for overage" msgstr "Valor no válido para sobrecarga" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Editar datos del usuario" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Configurar Contraseña" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Los campos de contraseña deben coincidir" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Contraseña incorrecta proporcionada" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Información del sistema" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Acerca de InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "La compilación debe cancelarse antes de poder ser eliminada" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "Consumible" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "Opcional" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "Rastreado" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "Asignadas" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Construir órden" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Construir órdenes" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Opción no válida para la construcción padre" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Número de orden de construcción o armado" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Referencia" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "Breve descripción de la construcción (opcional)" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Construcción o Armado Superior" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Orden de Construcción o Armado a la que se asigna" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Orden de Construcción o Armado a la que se asigna" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Parte" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Seleccionar parte a construir o armar" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Referencia de orden de venta" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Orden de Venta a la que se asigna" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Ubicación de la fuente" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Seleccione la ubicación de donde tomar stock para esta construcción o armado (deje en blanco para tomar desde cualquier ubicación)" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Ubicación de destino" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Seleccione la ubicación donde se almacenarán los artículos completados" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Cantidad a crear" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Número de objetos existentes a construir" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Elementos completados" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Número de productos en stock que se han completado" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Estado de la construcción" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Código de estado de construcción" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Numero de lote" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Número de lote de este producto final" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Fecha de Creación" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Fecha límite de finalización" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Fecha límite para la finalización de la construcción. La construcción estará vencida después de esta fecha." -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Fecha de finalización" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "terminado por" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Emitido por" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "El usuario que emitió esta orden" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Responsable" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "Usuario o grupo responsable de esta orden de construcción" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Link externo" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "Prioridad de construcción" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "Prioridad de esta orden de construcción" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "Código del proyecto" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "Código de proyecto para esta orden de ensamble" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "El pedido {build} ha sido procesado" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Pedido #[order] ha sido procesado" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "No se ha especificado salida de construcción" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "La construcción de la salida ya está completa" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "La salida de la construcción no coincide con el orden de construcción" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "La cantidad debe ser mayor que cero" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "La cantidad no puede ser mayor que la cantidad de salida" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" -msgstr "Item de construcción o armado debe especificar un resultado o salida, ya que la parte maestra está marcada como rastreable" +#: build/models.py:1265 +msgid "Build object" +msgstr "Ensamblar equipo" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "Cantidad asignada ({q}) no debe exceder la cantidad disponible de stock ({a})" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Artículo de stock sobreasignado" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Cantidad asignada debe ser mayor que cero" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "La cantidad debe ser 1 para el stock serializado" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Artículo de stock seleccionado no encontrado en BOM" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Construcción o Armado" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Armar para asignar partes" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Artículo de stock" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Producto original de stock" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Cantidad" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "Cantidad requerida para orden de ensamble" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "Item de construcción o armado debe especificar un resultado o salida, ya que la parte maestra está marcada como rastreable" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "Cantidad asignada ({q}) no debe exceder la cantidad disponible de stock ({a})" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Artículo de stock sobreasignado" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Cantidad asignada debe ser mayor que cero" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "La cantidad debe ser 1 para el stock serializado" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "El artículo de almacén selelccionado no coincide con la linea BOM" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Artículo de stock" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Producto original de stock" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Cantidad de stock a asignar para construir" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Instalar en" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Artículo de stock de destino" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Resultado de la construcción o armado" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "La salida de construcción no coincide con la construcción padre" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "La parte de salida no coincide con la parte de la Orden de Construcción" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Esta salida de construcción ya ha sido completada" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "Esta salida de construcción no está completamente asignada" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Ingrese la cantidad para la producción de la construcción" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "Cantidad entera requerida para partes rastreables" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Cantidad entera requerida, ya que la factura de materiales contiene partes rastreables" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Números de serie" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Introduzca los números de serie de salidas de construcción" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "Autoasignar Números de Serie" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "Asignar automáticamente los artículos requeridos con números de serie coincidentes" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "Los siguientes números seriales ya existen o son inválidos" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "Debe proporcionarse una lista de salidas de construcción" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Ubicación" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" -msgstr "" +msgstr "Ubicación de almacén para salidas descartadas" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" -msgstr "" +msgstr "Descartar asignaciones" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" -msgstr "" +msgstr "Descartar cualquier asignación de existencias para las salidas descartadas" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" -msgstr "" +msgstr "Razón para descartar la salida de ensamble(s)" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "Ubicación para las salidas de construcción completadas" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Estado" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "Aceptar Asignación Incompleta" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "Completar salidas si el inventario no se ha asignado completamente" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "Quitar inventario asignado" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "Resta cualquier existencia que ya ha sido asignado a esta versión" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "Eliminar salidas incompletas" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "Eliminar cualquier salida de construcción que no se haya completado" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "No permitido" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "Aceptar como consumido por este pedido de construcción" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "Liberar antes de completar esta orden de construcción" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "Stock sobreasignado" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Cómo quieres manejar los artículos extra de inventario asignados a la orden de construcción" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "Algunos artículos de inventario han sido sobreasignados" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "Aceptar no asignado" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Aceptar que los artículos de stock no se han asignado completamente a este pedido de construcción" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "El stock requerido no ha sido completamente asignado" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Aceptar incompleto" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "Aceptar que el número requerido de salidas de construcción no se han completado" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "La cantidad de construcción requerida aún no se ha completado" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "El orden de construcción tiene salidas incompletas" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "Item de Lista de Materiales" +#: build/serializers.py:722 +msgid "Build Line" +msgstr "Linea de ensamble" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "Resultado de la construcción o armado" -#: build/serializers.py:732 +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "La salida de la construcción debe apuntar a la misma construcción" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part debe apuntar a la misma parte que la orden de construcción" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "El artículo debe estar en stock" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Cantidad disponible ({q}) excedida" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "La salida de la construcción debe especificarse para la asignación de partes rastreadas" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "La salida de construcción no se puede especificar para la asignación de partes no rastreadas" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "Este artículo de stock ya ha sido asignado a esta salida de construcción" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "Debe proporcionarse la adjudicación de artículos" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Ubicación de inventario donde las partes deben ser obtenidas (dejar en blanco para tomar de cualquier ubicación)" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "Excluir ubicación" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "Excluir artículos de stock de esta ubicación seleccionada" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "Stock intercambiable" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Los artículos de inventario en múltiples ubicaciones se pueden utilizar de forma intercambiable" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "Sustituir stock" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "Permitir la asignación de partes sustitutas" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "Elementos opcionales" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "Asignar artículos de la BOM opcionales para construir la orden" @@ -1538,6 +1591,7 @@ msgstr "Miniatura de parte" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Acciones para código de barras" @@ -1616,69 +1670,67 @@ msgstr "Completar construcción" msgid "Build Description" msgstr "Descripción de Construcción" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "No se han creado salidas para esta orden de construcción" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "Orden de construcción está lista para marcar como completada" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "La orden de construcción no se puede completar ya que existen salidas pendientes" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "La cantidad de construcción requerida aún no se ha completado" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 msgid "Stock has not been fully allocated to this Build Order" msgstr "Stock no ha sido asignado completamente a este pedido de construcción" -#: build/templates/build/build_base.html:160 -#: build/templates/build/detail.html:138 order/models.py:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Fecha objetivo" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "Esta construcción vence el %(target)s" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "Vencido" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Completados" +#: build/templates/build/build_base.html:178 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" +msgstr "Salidas completadas" -#: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "Completados" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Orden de Venta" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Emitido por" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "Prioridad" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "Eliminar Orden de Trabajo" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "Código QR del pedido de contrucción" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "Enlazar código de barras a orden de construcción" @@ -1727,8 +1779,8 @@ msgstr "Fuente de stock" msgid "Stock can be taken from any available location." msgstr "Las existencias se pueden tomar desde cualquier ubicación disponible." -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Destinación" @@ -1742,21 +1794,21 @@ msgstr "Partes asignadas" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Lote" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Creado" @@ -1764,147 +1816,106 @@ msgstr "Creado" msgid "No target date set" msgstr "Sin fecha objetivo" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Completados" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "Trabajo incompleto" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "Órdenes de Trabajo herederas" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "Asignar Stock a Trabajo" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" -msgstr "Desasignar stock" +#: 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 "Unallocate Stock" -msgstr "Desasignar stock" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "Asignar existencias automáticamente a contrucción" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "Auto asignar" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "Asignar existencias manualmente a construcción" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "Asignar stock" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Pedir partes necesarias" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Partes del pedido" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "Stock no ha sido asignado completamente a esta Orden de Trabajo" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "El stock sin rastrear no ha sido asignado completamente para esta Orden de Trabajo" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "Asignar partes seleccionadas" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "Esta Orden de Trabajo no tiene ningún objeto BOM sin seguimiento asociados" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "Salidas de Trabajo incompletas" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "Crear nueva salida de trabajo" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "Nueva Salida de Trabajo" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "Acciones de salida" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "Completa las salidas seleccionadas" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "Completar salidas" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "Eliminar salidas seleccionadas" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "Eliminar salidas" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "Salidas de Trabajo Completadas" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Adjuntos" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Notas del Trabajo" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "Asignación completa" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" -msgstr "Todos los artículos de stock no rastreados han sido asignados" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" +msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Nueva Orden de Trabajo" @@ -1912,14 +1923,10 @@ msgstr "Nueva Orden de Trabajo" msgid "Build Order Details" msgstr "Configuración de Pedido de Trabajo" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "Salidas incompletas" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "Salidas completadas" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "Actualizado" msgid "Timestamp of last update" msgstr "Fecha y hora de la última actualización" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "Código del proyecto" - #: common/models.py:105 msgid "Unique project code" msgstr "Código único del proyecto" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "Con qué frecuencia comprobar actualizaciones (establecer a cero para desactivar)" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "días" @@ -2259,9 +2256,9 @@ msgstr "Copiar plantillas de parámetros de categoría" msgid "Copy category parameter templates when creating a part" msgstr "Copiar plantillas de parámetros de categoría al crear una parte" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Plantilla" @@ -2269,10 +2266,10 @@ msgstr "Plantilla" msgid "Parts are templates by default" msgstr "Las partes son plantillas por defecto" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Montaje" @@ -2280,8 +2277,8 @@ msgstr "Montaje" msgid "Parts can be assembled from other components by default" msgstr "Las partes pueden ser ensambladas desde otros componentes por defecto" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Componente" @@ -2289,7 +2286,7 @@ msgstr "Componente" msgid "Parts can be used as sub-components by default" msgstr "Las partes pueden ser usadas como subcomponentes por defecto" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Comprable" @@ -2297,8 +2294,8 @@ msgstr "Comprable" msgid "Parts are purchaseable by default" msgstr "Las partes son comprables por defecto" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Vendible" @@ -2306,10 +2303,10 @@ msgstr "Vendible" msgid "Parts are salable by default" msgstr "Las partes se pueden vender por defecto" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Rastreable" @@ -2317,10 +2314,10 @@ msgstr "Rastreable" msgid "Parts are trackable by default" msgstr "Las partes son rastreables por defecto" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Virtual" @@ -2352,7 +2349,7 @@ msgstr "Datos iniciales de existencias" msgid "Allow creation of initial stock when adding a new part" msgstr "Permitir la creación del stock inicial al añadir una nueva parte" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Datos iniciales del proveedor" @@ -2377,525 +2374,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "Icono por defecto de la categoría de parte (vacío significa que no hay icono)" #: common/models.py:1253 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 msgid "Minimum Pricing Decimal Places" msgstr "Mínimo de lugares decimales en el precio" -#: common/models.py:1254 +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Número mínimo de decimales a mostrar al procesar los datos de precios" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "Máximo de lugares decimales en el precio" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Número máximo de decimales a mostrar al procesar los datos de precios" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "Usar precios de proveedor" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Incluir descuentos de precios del proveedor en los cálculos generales de precios" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "Anulación del historial de compra" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "El precio histórico de compra anula los descuentos de precios del proveedor" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "Usar precio del artículo de almacén" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Usar los precios de los datos de inventario introducidos manualmente para los cálculos de precios" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "Edad del precio del artículo de almacén" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Excluir artículos de almacén anteriores a este número de días de los cálculos de precios" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "Usar precios variantes" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "Incluir variantes de precios en los cálculos generales de precios" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "Solo variantes activas" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "Usar solo partes de variantes activas para calcular los precios de variantes" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "Intervalo de reconstrucción de precios" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "Número de días antes de que el precio de la parte se actualice automáticamente" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "Precios internos" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "Habilitar precios internos para partes" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "Anulación del precio interno" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "Si está disponible, los precios internos anulan los cálculos del rango de precios" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "Habilitar impresión de etiquetas" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "Habilitar impresión de etiquetas desde la interfaz web" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "PPP de la imagen de etiqueta" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Resolución DPI al generar archivos de imagen que suministrar para etiquetar complementos de impresión" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "Habilitar informes" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "Habilitar generación de informes" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Modo de depuración" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "Generar informes en modo de depuración (salida HTML)" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Tamaño de página" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Tamaño de página predeterminado para informes PDF" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "Habilitar informes de prueba" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "Habilitar generación de informes de prueba" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "Adjuntar informes de prueba" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Al imprimir un informe de prueba, adjuntar una copia del informe de prueba al artículo de almacén asociado" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "Seriales únicos globalmente" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "Los números de serie para los artículos de inventario deben ser únicos globalmente" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "Autollenar números de serie" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "Autorellenar números de serie en formularios" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "Determina el comportamiento predeterminado cuando un artículo de almacén es agotado" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "Plantilla de código de lote" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "Plantilla para generar códigos de lote por defecto para artículos de almacén" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "Expiración de stock" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "Habilitar la funcionalidad de expiración de stock" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "Vender existencias caducadas" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "Permitir venta de existencias caducadas" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "Tiempo histórico de Stock" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "Número de días de artículos de stock se consideran obsoletos antes de caducar" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "Crear Stock Caducado" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "Permitir crear con stock caducado" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "Control de Stock" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "Habilitar control de propiedad sobre ubicaciones de stock y artículos" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "Icono por defecto de ubicación de almacén" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "Icono por defecto de ubicación de almacén (vacío significa que no hay icono)" -#: common/models.py:1471 +#: common/models.py:1478 +msgid "Show Installed Stock Items" +msgstr "" + +#: common/models.py:1479 +msgid "Display installed stock items in stock tables" +msgstr "" + +#: common/models.py:1485 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1472 +#: common/models.py:1486 msgid "Required pattern for generating Build Order reference field" msgstr "Patrón requerido para generar el campo de referencia de la Orden de Ensamblado" -#: common/models.py:1478 +#: common/models.py:1492 msgid "Enable Return Orders" msgstr "Habilitar órdenes de devolución" -#: common/models.py:1479 +#: common/models.py:1493 msgid "Enable return order functionality in the user interface" msgstr "Habilitar la funcionalidad de orden de devolución en la interfaz de usuario" -#: common/models.py:1485 +#: common/models.py:1499 msgid "Return Order Reference Pattern" msgstr "Patrón de referencia de orden de devolución" -#: common/models.py:1486 +#: common/models.py:1500 msgid "Required pattern for generating Return Order reference field" msgstr "Patrón requerido para generar el campo de referencia de la orden de devolución" -#: common/models.py:1492 +#: common/models.py:1506 msgid "Edit Completed Return Orders" msgstr "Editar ordenes de devolución completadas" -#: common/models.py:1493 +#: common/models.py:1507 msgid "Allow editing of return orders after they have been completed" msgstr "Permitir la edición de ordenes de devolución después de que hayan sido completados" -#: common/models.py:1499 +#: common/models.py:1513 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1500 +#: common/models.py:1514 msgid "Required pattern for generating Sales Order reference field" msgstr "Patrón requerido para generar el campo de referencia de la orden de venta" -#: common/models.py:1506 +#: common/models.py:1520 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1507 +#: common/models.py:1521 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1513 +#: common/models.py:1527 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1514 +#: common/models.py:1528 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1520 +#: common/models.py:1534 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1521 +#: common/models.py:1535 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1527 +#: common/models.py:1541 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1528 +#: common/models.py:1542 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1535 +#: common/models.py:1549 msgid "Enable password forgot" msgstr "Habilitar función de contraseña olvidada" -#: common/models.py:1536 +#: common/models.py:1550 msgid "Enable password forgot function on the login pages" msgstr "Activar la función olvido de contraseña en las páginas de inicio de sesión" -#: common/models.py:1542 +#: common/models.py:1556 msgid "Enable registration" msgstr "Habilitar registro" -#: common/models.py:1543 +#: common/models.py:1557 msgid "Enable self-registration for users on the login pages" msgstr "Activar auto-registro para usuarios en las páginas de inicio de sesión" -#: common/models.py:1549 +#: common/models.py:1563 msgid "Enable SSO" msgstr "Habilitar SSO" -#: common/models.py:1550 +#: common/models.py:1564 msgid "Enable SSO on the login pages" msgstr "Habilitar SSO en las páginas de inicio de sesión" -#: common/models.py:1556 +#: common/models.py:1570 msgid "Enable SSO registration" msgstr "Habilitar registro SSO" -#: common/models.py:1557 +#: common/models.py:1571 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Activar autoregistro a través de SSO para usuarios en las páginas de inicio de sesión" -#: common/models.py:1563 +#: common/models.py:1577 msgid "Email required" msgstr "Email requerido" -#: common/models.py:1564 +#: common/models.py:1578 msgid "Require user to supply mail on signup" msgstr "Requiere usuario para suministrar correo al registrarse" -#: common/models.py:1570 +#: common/models.py:1584 msgid "Auto-fill SSO users" msgstr "Auto-rellenar usuarios SSO" -#: common/models.py:1571 +#: common/models.py:1585 msgid "Automatically fill out user-details from SSO account-data" msgstr "Rellenar automáticamente los datos de usuario de la cuenta SSO" -#: common/models.py:1577 +#: common/models.py:1591 msgid "Mail twice" msgstr "Correo dos veces" -#: common/models.py:1578 +#: common/models.py:1592 msgid "On signup ask users twice for their mail" msgstr "Al registrarse pregunte dos veces a los usuarios por su correo" -#: common/models.py:1584 +#: common/models.py:1598 msgid "Password twice" msgstr "Contraseña dos veces" -#: common/models.py:1585 +#: common/models.py:1599 msgid "On signup ask users twice for their password" msgstr "Al registrarse, preguntar dos veces a los usuarios por su contraseña" -#: common/models.py:1591 +#: common/models.py:1605 msgid "Allowed domains" msgstr "Dominios permitidos" -#: common/models.py:1592 +#: common/models.py:1606 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:1598 +#: common/models.py:1612 msgid "Group on signup" msgstr "Grupo al registrarse" -#: common/models.py:1599 +#: common/models.py:1613 msgid "Group to which new users are assigned on registration" msgstr "Grupo al que se asignan nuevos usuarios al registrarse" -#: common/models.py:1605 +#: common/models.py:1619 msgid "Enforce MFA" msgstr "Forzar MFA" -#: common/models.py:1606 +#: common/models.py:1620 msgid "Users must use multifactor security." msgstr "Los usuarios deben utilizar seguridad multifactor." -#: common/models.py:1612 +#: common/models.py:1626 msgid "Check plugins on startup" msgstr "Comprobar complementos al iniciar" -#: common/models.py:1613 +#: common/models.py:1627 msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "Comprobar que todos los complementos están instalados en el arranque - habilitar en entornos de contenedores" -#: common/models.py:1620 -msgid "Check plugin signatures" -msgstr "Comprobar las firmas del complemento" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "Comprobar y mostrar firmas de complementos" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "Habilitar integración de URL" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "Habilitar plugins para añadir rutas de URL" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "Habilitar integración de navegación" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "Habilitar plugins para integrar en la navegación" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "Habilitar integración de la aplicación" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "Habilitar plugins para añadir aplicaciones" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "Habilitar integración de programación" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "Habilitar plugins para ejecutar tareas programadas" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "Habilitar integración de eventos" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "Habilitar plugins para responder a eventos internos" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "Habilitar códigos de proyecto" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "Habilitar códigos de proyecto para rastrear proyectos" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "Intervalo de borrado de informe" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "Tecla de ajustes (debe ser única - mayúsculas y minúsculas" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "No hay impresora (Exportar a PDF)" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "Ocultar partes inactivas" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Ocultar partes inactivas en los resultados mostrados en la página de inicio" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "Mostrar partes suscritas" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "Mostrar las partes suscritas en la página principal" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "Mostrar categorías suscritas" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "Mostrar categorías de partes suscritas en la página de inicio" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Mostrar últimas partes" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "Mostrar las últimas partes en la página de inicio" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "Conteo de Partes Recientes" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "Número de partes recientes a mostrar en la página de índice" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "Mostrar BOMs no validadas" @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "Mostrar artículos de stock recientemente modificados en la página de inicio" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "Conteo Reciente de Stock" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "Número de artículos de stock recientes a mostrar en la página de índice" - -#: common/models.py:1807 msgid "Show low stock" msgstr "Mostrar stock bajo" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "Mostrar artículos de stock bajo en la página de inicio" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "Mostrar stock agotado" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "Mostrar artículos agotados en la página de inicio" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "Mostrar stock necesario" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "Mostrar artículos de stock necesarios para trabajos en la página de inicio" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "Mostrar stock caducado" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "Mostrar artículos de stock caducados en la página de inicio" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "Mostrar stock obsoleto" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "Mostrar artículos de stock obsoletos en la página de inicio" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "Mostrar trabajos pendientes" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "Mostrar trabajos pendientes en la página de inicio" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "Mostrar trabajos vencidos" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "Mostrar trabajos pendientes en la página de inicio" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "Mostrar Órdenes de Compra Pendientes" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "Mostrar las OC destacadas en la página de inicio" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "Mostrar OC atrasadas" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "Mostrar las OC vencidas en la página de inicio" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "Mostrar OV pendiemtes" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "Mostrar OV pendientes en la página de inicio" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "Mostrar OV atrasadas" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "Mostrar OV atrasadas en la página de inicio" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "Mostrar noticias" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "Mostrar las últimas novedades de InvenTree en la página de inicio" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "Mostrar etiqueta interior" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Mostrar etiquetas PDF en el navegador, en lugar de descargar como un archivo" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "Impresora predeterminada" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "Mostrar informe en línea" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Mostrar informes PDF en el navegador, en lugar de descargar como un archivo" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "Buscar partes" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "Buscar partes de proveedor" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "Ocultar Partes Inactivas" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "Buscar categorías" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "Buscar inventario" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "Buscar ubicaciones" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "Mostrar ubicaciones de almacén en la ventana de vista previa de búsqueda" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "Buscar empresas" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "Mostrar empresas en la ventana de vista previa de búsqueda" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "Buscar órdenes de compra" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "Buscar órdenes de venta" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "Buscar órdenes de devolución" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "Resultados de la vista previa" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "Búsqueda Regex" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "Habilitar expresiones regulares en las consultas de búsqueda" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "Búsqueda por palabra completa" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "Las consultas de búsqueda devuelven resultados para palabras enteras coincidentes" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "Mostrar cantidad en formularios" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "Mostrar la cantidad de partes disponibles en algunos formularios" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "Formularios de cierre de teclas de escape" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "Usa la clave de escape para cerrar formularios modales" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "Barra de navegación fija" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "La posición de la barra de navegación se fija en la parte superior de la pantalla" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "Formato de Fecha" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "Formato preferido para mostrar fechas" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Planificación de partes" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "Cantidad de salto de precio" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Precio" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "Precio unitario a la cantidad especificada" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "Punto final en el que se recibe este webhook" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "Nombre para este webhook" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "Activo" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "Está activo este webhook" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "Token" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "Token para el acceso" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "Clave" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "Secreto compartido para HMAC" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "ID de mensaje" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "Identificador único para este mensaje" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "Host" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "Servidor desde el cual se recibió este mensaje" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "Encabezado" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "Encabezado del mensaje" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "Cuerpo" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "Cuerpo de este mensaje" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "Endpoint en el que se recibió este mensaje" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "Trabajado en" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "¿El trabajo en este mensaje ha terminado?" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "Id" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "Titulo" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "Publicado" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "Autor" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "Resumen" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "Leer" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "¿Esta noticia fue leída?" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "¿Esta noticia fue leída?" msgid "Image" msgstr "Imágen" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "Archivo de imagen" @@ -3497,7 +3487,7 @@ msgstr "Descripción de la empresa" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Página web" @@ -3505,303 +3495,388 @@ msgstr "Página web" msgid "Company website URL" msgstr "URL del sitio web de la empresa" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Dirección" - -#: company/models.py:119 -msgid "Company address" -msgstr "Dirección de la empresa" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Teléfono" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Teléfono de contacto" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "Correo electrónico" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Correo electrónico de contacto" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Contacto" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Punto de contacto" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "Enlace a información externa de la empresa" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "es cliente" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "¿Vendes artículos a esta empresa?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "es proveedor" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "¿Compras artículos de esta empresa?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "es fabricante" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "¿Esta empresa fabrica partes?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "Moneda predeterminada utilizada para esta empresa" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Empresa" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Parte base" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Seleccionar parte" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Fabricante" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Seleccionar fabricante" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "MPN" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" -msgstr "Número de Parte del Fabricante" +msgstr "Número de parte de fabricante" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "URL para el enlace de parte del fabricante externo" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "Descripción de la parte del fabricante" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Parte del fabricante" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Nombre del parámetro" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Valor" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Valor del parámetro" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Unidades" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "Unidades de parámetro" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" -msgstr "Las unidades de paquete deben ser compatibles con las unidades de piezas de base" +msgstr "Las unidades de paquete deben ser compatibles con las unidades de partes de base" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "Las unidades de paquete deben ser mayor que cero" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "La parte vinculada del fabricante debe hacer referencia a la misma parte base" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Proveedor" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Seleccionar proveedor" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "SKU" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "Unidad de mantenimiento de stock de proveedores" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "Seleccionar parte del fabricante" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "URL del enlace de parte del proveedor externo" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "Descripción de la parte del proveedor" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Nota" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "costo base" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "Cargo mínimo (p. ej., cuota de almacenamiento)" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "Paquetes" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "Embalaje de partes" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "Cantidad de paquete" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Cantidad total suministrada en un solo paquete. Dejar vacío para artículos individuales." -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "múltiple" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "Pedido múltiple" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "Disponible" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "Cantidad disponible del proveedor" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "Disponibilidad actualizada" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "Fecha de última actualización de los datos de disponibilidad" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "Moneda predeterminada utilizada para este proveedor" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Crear orden de compra" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "Editar datos de la empresa" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Modificar Empresa" @@ -3854,17 +3929,17 @@ msgstr "Descargar desde URL" msgid "Delete image" msgstr "Borrar imagen" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Cliente" @@ -3872,6 +3947,13 @@ msgstr "Cliente" msgid "Uses default currency" msgstr "Usa la moneda predeterminada" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Dirección" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Teléfono" @@ -3904,7 +3986,7 @@ msgstr "Descargar imagen" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Partes de Proveedor" @@ -3914,129 +3996,121 @@ msgstr "Crear nueva parte del proveedor" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Nueva Parte de Proveedor" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Partes de pedido" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Eliminar partes" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Eliminar Partes" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 msgid "Manufacturer Parts" msgstr "Partes del fabricante" -#: company/templates/company/detail.html:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Crear nueva parte de fabricante" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Nueva parte de fabricante" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Stock del Proveedor" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Ordenes de compra" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Crear nueva orden de compra" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Nueva orden de compra" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "Órdenes de venta" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Crear Orden de Venta" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "Nueva orden de venta" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "Stock asignado" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "Ordenes de devolución" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "Crear nueva orden de devolución" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "Nueva orden de devolución" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Notas de la empresa" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "Contactos de la empresa" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: company/templates/company/detail.html:187 +#: company/templates/company/detail.html:188 msgid "Add Contact" msgstr "Añadir contacto" +#: 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/index.html:8 msgid "Supplier List" msgstr "Listado de proveedores" @@ -4048,17 +4122,17 @@ msgstr "Fabricantes" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "Pedir ítem" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "Editar fabricante de la parte" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "Eliminar fabricante de la parte" @@ -4078,40 +4152,22 @@ msgstr "No hay información del fabricante disponible" msgid "Suppliers" msgstr "Proveedores" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "Eliminar partes del proveedor" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Eliminar" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Parámetros" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "Nuevo parámetro" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Eliminar parámetro" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "Añadir parámetro" @@ -4135,23 +4191,28 @@ msgstr "Elementos de Stock Asignados" msgid "Contacts" msgstr "Contactos" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "Parte del proveedor" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "Acciones de partes del proveedor" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "Pedir ítem" @@ -4162,13 +4223,13 @@ msgstr "Actualizar disponibilidad" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "Editar Parte del Proveedor" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "Duplicar parte del proveedor" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "Stock del Proveedor" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "Crear nuevo artículo de stock" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "Nuevo artículo de stock" @@ -4203,37 +4264,37 @@ msgstr "Nuevo artículo de stock" msgid "Supplier Part Orders" msgstr "Pedidos de partes al proveedor" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Información de precios" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "Agregar descuento de precio" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "Código QR de parte del proveedor" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "Enlazar código de barras a la parte del proveedor" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "Actualizar disponibilidad de parte" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Elementos de stock" @@ -4259,7 +4320,7 @@ msgstr "Clientes" msgid "New Customer" msgstr "Nuevo Cliente" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Empresas" @@ -4267,78 +4328,71 @@ msgstr "Empresas" msgid "New Company" msgstr "Nueva Compañía" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "Nombre etiqueta" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "Descripción de etiqueta" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "Etiqueta" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "Archivo de plantilla de etiqueta" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "Habilitado" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "Plantilla de etiqueta habilitada" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Ancho [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "Ancho de la etiqueta, especificado en mm" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Altura [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "Altura de la etiqueta, especificada en mm" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "Patrón de Nombre de archivo" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "Patrón para generar nombres de archivo de etiquetas" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," -msgstr "Crear filtros de consulta (lista separada por comas de pares clave=valor)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" +msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Filtros" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "Crear filtros de consulta (lista separada por comas de pares clave=valor" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "Filtros de búsqueda de partes (valor separado por comas de pares clave=valor)" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" -msgstr "Código QC" +msgid "QR Code" +msgstr "" #: label/templates/label/part/part_label_code128.html:31 #: label/templates/label/stocklocation/qr_and_text.html:31 @@ -4346,569 +4400,573 @@ msgstr "Código QC" msgid "QR code" msgstr "Código QR" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "Precio Total" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "No se encontró ninguna orden de compra coincidente" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Orden de compra" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "Orden de devolución" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "Desconocido" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "Precio total para este pedido" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "Moneda de pedido" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "Moneda para este pedido (dejar en blanco para utilizar el valor predeterminado de la empresa)" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "El contacto no coincide con la empresa seleccionada" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "Descripción del pedido (opcional)" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "Seleccione el código del proyecto para este pedido" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "Enlace a Url externa" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Fecha esperada para la entrega del pedido. El pedido se retrasará después de esta fecha." -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "Creado por" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "Usuario o grupo responsable de este pedido" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "Punto de contacto para este pedido" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "Referencia del pedido" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "Estado de la orden de compra" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "Compañía de la que se están encargando los artículos" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "Referencia del proveedor" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "Código de referencia de pedido del proveedor" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "recibido por" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "Fecha de emisión" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "Fecha de expedición del pedido" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "La fecha de pedido fue completada" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "El proveedor de la parte debe coincidir con el proveedor de PO" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "La cantidad debe ser un número positivo" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "Empresa a la que se venden los artículos" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "Referencia del cliente " -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "Código de referencia de pedido del cliente" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "Fecha de envío" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "enviado por" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "El pedido no se puede completar porque no se han asignado partes" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "Sólo una orden abierta puede ser marcada como completa" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "El pedido no se puede completar porque hay envíos incompletos" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "El pedido no se puede completar porque hay artículos de línea incompletos" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "Cantidad del artículo" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "Referencia de línea en la orden" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "Notas del artículo de línea" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Fecha objetivo para este artículo de línea (dejar en blanco para usar la fecha de destino de la orden)" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "Descripción del artículo de línea (opcional)" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "Contexto" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "Contexto adicional para esta línea" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "Precio unitario" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "La parte del proveedor debe coincidir con el proveedor" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "eliminado" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "Orden" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "Parte del proveedor" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "Recibido" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "Número de artículos recibidos" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Precio de Compra" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "Precio de compra unitario" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "¿Dónde quiere el comprador almacenar este objeto?" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "Una parte virtual no puede ser asignada a un pedido de venta" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "Sólo las partes vendibles pueden ser asignadas a un pedido de venta" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "Precio de Venta" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "Precio de venta unitario" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "Cantidad enviada" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "Fecha del envío" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "Fecha de entrega" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "Fecha de entrega del envío" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "Revisado por" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "Usuario que revisó este envío" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "Envío" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "Número de envío" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "Número de Seguimiento" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "Información de seguimiento del envío" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "Número de factura" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "Número de referencia para la factura asociada" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "El envío ya ha sido enviado" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "El envío no tiene artículos de stock asignados" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "El artículo de stock no ha sido asignado" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "No se puede asignar el artículo de stock a una línea con una parte diferente" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "No se puede asignar stock a una línea sin una parte" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "La cantidad de asignación no puede exceder la cantidad de stock" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "La cantidad debe ser 1 para el stock serializado" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "La orden de venta no coincide con el envío" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "El envío no coincide con el pedido de venta" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "Línea" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "Referencia del envío del pedido de venta" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "Ítem" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "Seleccionar artículo de stock para asignar" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "Especificar la cantidad de asignación de stock" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "Referencia de la orden de devolución" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "Compañía de la que se están devolviendo los artículos" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "Estado de la orden de devolución" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "Sólo los artículos serializados pueden ser asignados a una orden de devolución" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "Seleccionar el artículo a devolver del cliente" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "Fecha de recepción" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "La fecha en la que se recibió este artículo de devolución" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "Resultado" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "Salida para este artículo de línea" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "Costo asociado con la devolución o reparación para este artículo de línea" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "El pedido no puede ser cancelado" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "Permitir cerrar el pedido con artículos de línea incompletos" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "El pedido tiene artículos de línea incompletos" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "El pedido no está abierto" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "Moneda del precio de compra" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "Debe especificar la parte del proveedor" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "La orden de compra debe especificarse" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "El proveedor debe coincidir con la orden de compra" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "La orden de compra debe coincidir con el proveedor" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "Artículo en línea" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "La línea del artículo no coincide con la orden de compra" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "Seleccione la ubicación de destino para los artículos recibidos" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "Introduzca el código de lote para los artículos de almacén entrantes" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "Introduzca números de serie para artículos de almacén entrantes" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Código de barras" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "Código de barras escaneado" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "Código de barras en uso" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "Debe proporcionarse una cantidad entera para las partes rastreables" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "Se deben proporcionar artículos de línea" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "Se requiere ubicación de destino" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "Los valores del código de barras deben ser únicos" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "Moneda del precio de venta" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "No se proporcionaron detalles de envío" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "Artículo en línea no está asociado con este pedido" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "La cantidad debe ser positiva" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "Introduzca números de serie para asignar" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "El envío ya ha sido enviado" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "El envío no está asociado con este pedido" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "No se han encontrado coincidencias para los siguientes números de serie" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "Los siguientes números de serie ya están asignados" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "Artículo de línea de orden de devolución" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "El artículo de línea no coincide con la orden de devolución" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "El artículo de línea ya ha sido recibido" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "Los artículos sólo pueden ser recibidos contra pedidos en curso" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "Moneda de precio de línea" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "Orden de compra atrasada" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "La orden de compra {po} está atrasada" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "Orden de venta atrasada" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "La orden de venta {so} está atrasada" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "Emitir pedido" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "Recibir artículos" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "Recibir artículos" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "Marcar pedido como completado" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "Completar pedido" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "Miniatura de la parte del proveedor" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "Referencia del pedido" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "Descripción del pedido" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "Estado del pedido" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "No hay información disponible sobre el proveedor" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "Artículos de línea completados" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "Incompleto" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "Emitido" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "Costo total" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "No se ha podido calcular el costo total" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "Código QR de la orden de compra" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "Vincular código de barras a la orden de compra" @@ -5083,13 +5133,13 @@ msgstr "Duplicar selección" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "Eliminar fila" @@ -5150,9 +5200,9 @@ msgstr "Comprar artículos de orden" #: 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "Añadir artículo de línea" @@ -5163,30 +5213,25 @@ msgstr "Añadir artículo de línea" msgid "Receive Line Items" msgstr "Recibir artículos de línea" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "Eliminar artículos de línea" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: order/templates/order/return_order_detail.html:45 +#: order/templates/order/sales_order_detail.html:41 msgid "Extra Lines" msgstr "Líneas Adicionales" -#: order/templates/order/purchase_order_detail.html:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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 "Añadir línea adicional" -#: order/templates/order/purchase_order_detail.html:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "Articulos Recibidos" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "Notas del pedido" @@ -5206,29 +5251,29 @@ msgstr "Imprimir lista de empaquetado" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "Referencia del cliente" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "Costo Total" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "Devolver código QR del pedido" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "Enlazar código de barras al pedido de devolución" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "Enviar artículos" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "Ordenes de venta completas" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "Esta orden de venta no ha sido completamente asignada" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: order/templates/order/sales_order_detail.html:99 #: order/templates/order/so_sidebar.html:11 msgid "Completed Shipments" msgstr "Envíos completados" -#: order/templates/order/sales_order_base.html:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "Código QR del pedido de ventas" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "Enlazar código de barras al pedido de venta" @@ -5272,18 +5317,17 @@ msgstr "Enlazar código de barras al pedido de venta" msgid "Sales Order Items" msgstr "Artículos de Pedidos de Venta" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 msgid "Pending Shipments" msgstr "Envíos pendientes" -#: order/templates/order/sales_order_detail.html:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "Acciones" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "Nuevo Envío" @@ -5309,12 +5353,12 @@ msgstr "Actualizado el precio unitario de {part} a {price}" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "Actualizado el precio unitario de {part} a {price} y la cantidad a {qty}" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "ID de Parte" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "Nombre de parte" @@ -5323,19 +5367,20 @@ msgstr "Nombre de parte" msgid "Part Description" msgstr "Descripción de parte" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "IPN" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "Revisión" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "Palabras claves" @@ -5356,24 +5401,24 @@ msgstr "ID de ubicación predeterminada" msgid "Default Supplier ID" msgstr "ID de proveedor predeterminado" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "Variante de" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "Stock mínimo" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "En Stock" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "En pedido" @@ -5381,23 +5426,16 @@ msgstr "En pedido" msgid "Used In" msgstr "Usado en" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "Asignadas" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "En construcción" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "Costo mínimo" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "Costo máximo" @@ -5414,13 +5452,13 @@ msgstr "Nombre del padre" msgid "Category Path" msgstr "Ruta de Categoría" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Partes" @@ -5437,7 +5475,7 @@ msgstr "ID de artículo de BOM" msgid "Parent IPN" msgstr "IPN del padre" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "IPN de la parte" @@ -5451,35 +5489,35 @@ msgstr "Precio mínimo" msgid "Maximum Price" msgstr "Precio máximo" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "Orden de compra entrante" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "Orden de venta saliente" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "Válido" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "Validación de Lista de Materiales" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "Esta opción debe ser seleccionada" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "Ubicación Predeterminada" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "Inventario Total" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "Stock Disponible" @@ -5497,917 +5535,913 @@ msgstr "Stock Disponible" msgid "Input quantity for price calculation" msgstr "Cantidad de entrada para el cálculo del precio" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Categoría de parte" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "Categorías de parte" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "Ubicación predeterminada para partes de esta categoría" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "Estructural" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Las partes no pueden asignarse directamente a una categoría estructural, pero pueden asignarse a categorías hijas." -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "Palabras clave predeterminadas" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "Palabras clave por defecto para partes en esta categoría" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "Icono" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "Icono (opcional)" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "¡No puedes hacer que esta categoría de partes sea estructural porque algunas partes ya están asignadas!" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "Opción no válida para la parte principal" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "La parte '{p1}' se utiliza en BOM para '{p2}' (recursivo)" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "El IPN debe coincidir con la expresión regular {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "Ya existe un artículo de almacén con este número de serie" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "IPN duplicado no permitido en la configuración de partes" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "Parte con este nombre, IPN y revisión ya existe." -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "¡No se pueden asignar partes a las categorías de partes estructurales!" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "Nombre de la parte" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "Es plantilla" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "¿Es esta parte una parte de la plantilla?" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "¿Es esta parte una variante de otra parte?" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "Descripción de parte (opcional)" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "Palabras clave para mejorar la visibilidad en los resultados de búsqueda" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "Categoría" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "Categoría de parte" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "Número de parte interna" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "Revisión de parte o número de versión" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "¿Dónde se almacena este artículo normalmente?" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "Proveedor por defecto" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "Parte de proveedor predeterminada" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "Expiración por defecto" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "Tiempo de expiración (en días) para los artículos de stock de esta parte" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "Nivel mínimo de stock permitido" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "Unidades de medida para esta parte" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "¿Se puede construir esta parte a partir de otras partes?" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "¿Se puede utilizar esta parte para construir otras partes?" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "¿Esta parte tiene seguimiento de objetos únicos?" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "¿Se puede comprar esta parte a proveedores externos?" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "¿Se puede vender esta parte a los clientes?" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "¿Está activa esta parte?" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "¿Es ésta una parte virtual, como un producto de software o una licencia?" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "Suma de verificación de BOM" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "Suma de verificación de BOM almacenada" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "BOM comprobado por" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "Fecha BOM comprobada" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "Creación de Usuario" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "Usuario responsable de esta parte" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "Último inventario" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "Vender múltiples" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "Moneda utilizada para almacenar en caché los cálculos de precios" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "Costo mínimo de BOM" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "Costo mínimo de partes de componentes" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "Costo máximo de BOM" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "Costo máximo de partes de componentes" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "Costo mínimo de compra" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "Costo histórico mínimo de compra" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "Costo máximo de compra" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "Costo histórico máximo de compra" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "Precio interno mínimo" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "Precio interno máximo" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "Costo máximo basado en precios reducidos internos" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "Precio mínimo de proveedor" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "Precio mínimo de la parte de proveedores externos" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "Precio máximo de proveedor" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "Precio máximo de la parte de proveedores externos" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "Costo mínimo de variante" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "Costo mínimo calculado de las partes variantes" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "Costo máximo de variante" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "Costo máximo calculado de las partes variantes" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "Precio de venta mínimo" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "Precio de venta mínimo basado en precios reducidos" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "Precio de venta máximo" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "Precio de venta máximo basado en precios reducidos" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "Costo de venta mínimo" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "Precio de venta mínimo histórico" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "Número de artículos" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "Fecha" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "Notas adicionales" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "Informe" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "Número de partes" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "Las plantillas de prueba sólo pueden ser creadas para partes rastreables" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "Ya existe una prueba con este nombre para esta parte" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "Nombre de prueba" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "Introduzca un nombre para la prueba" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "Descripción de prueba" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "Introduce la descripción para esta prueba" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "Requerido" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "¿Es necesario pasar esta prueba?" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "Requiere valor" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "¿Esta prueba requiere un valor al agregar un resultado de la prueba?" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "Adjunto obligatorio" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "¿Esta prueba requiere un archivo adjunto al agregar un resultado de la prueba?" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "El nombre de parámetro en la plantilla tiene que ser único" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "Nombre de Parámetro" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "Parte principal" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "Plantilla de parámetro" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "Datos" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "Valor del parámetro" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "Valor predeterminado" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "Valor de parámetro por defecto" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "ID de parte o nombre de parte" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "Nivel" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "Nivel de BOM" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "Item de Lista de Materiales" + +#: part/models.py:3812 msgid "Select parent part" msgstr "Seleccionar parte principal" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "Sub parte" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "Seleccionar parte a utilizar en BOM" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "Cantidad del artículo en BOM" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "Opcional" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "Este artículo BOM es opcional" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "Consumible" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Exceso" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Cantidad estimada de desperdicio de construcción (absoluta o porcentaje)" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "Referencia de artículo de BOM" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "Notas del artículo de BOM" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "Suma de verificación" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "Suma de verificación de línea de BOM" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "Validado" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Este artículo BOM es heredado por BOMs para partes variantes" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "Permitir variantes" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Artículos de stock para partes variantes pueden ser usados para este artículo BOM" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "La cantidad debe ser un valor entero para las partes rastreables" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "Debe especificar la subparte" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "Ítem de BOM sustituto" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "La parte sustituta no puede ser la misma que la parte principal" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "Artículo BOM superior" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "Sustituir parte" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "Parte 1" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "Parte 2" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "Seleccionar parte relacionada" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "Moneda de compra de ítem de stock" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "Parte original" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "Seleccione la parte original a duplicar" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "Copiar Imagen" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "Copiar imagen desde la parte original" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Copiar BOM" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "Copiar la factura de materiales de la parte original" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "Copiar Parámetros" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "Copiar datos del parámetro de la parte original" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "Cantidad Inicial de Stock" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "Seleccione proveedor (o déjelo en blanco para saltar)" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "Seleccionar fabricante (o dejar en blanco para saltar)" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "Número de parte del fabricante" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "La empresa seleccionada no es un proveedor válido" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "La empresa seleccionada no es un fabricante válido" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "Duplicar Parte" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "Información del proveedor" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "Añadir información inicial del proveedor para esta parte" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "Copiar Parámetros de Categoría" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "Copiar plantillas de parámetro de la categoría de partes seleccionada" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "Generar informe" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "Actualizar partes" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "Actualizar" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "Seleccionar parte de la que copiar BOM" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "Eliminar Datos Existentes" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "Eliminar artículos BOM existentes antes de copiar" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "Incluye Heredado" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "Incluye artículos BOM que son heredados de partes con plantillas" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "Omitir filas no válidas" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "Activar esta opción para omitir filas inválidas" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "Copiar partes sustitutas" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "Limpiar BOM Existente" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "Varios resultados encontrados" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "No se encontraron partes coincidentes" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "La parte no está designada como componente" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "Cantidad no proporcionada" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "Cantidad no válida" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "Se requiere al menos un artículo BOM" @@ -6420,9 +6454,9 @@ msgstr "Notificación por bajo stock" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "Cantidad Total" @@ -6460,14 +6494,6 @@ msgstr "El BOM para %(part)s fue revisado por última vez por %(checker msgid "The BOM for %(part)s has not been validated." msgstr "El BOM para %(part)s no ha sido validada." -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "Acciones BOM" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "Eliminar artículos" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "Eliminar Categoría" msgid "Top level part category" msgstr "Categoría de partes de nivel superior" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Subcategorías" @@ -6517,33 +6543,21 @@ msgstr "Partes (incluyendo subcategorías)" msgid "Create new part" msgstr "Crear nueva parte" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "Nueva Parte" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "Opciones" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "Definir categoría" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "Definir Categoría" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "Parámetros de Parte" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "Crear nueva categoría de partes" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "Nueva Categoría" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "Actualizar" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "Inventario" @@ -6603,101 +6617,101 @@ msgstr "Plantillas de prueba de parte" msgid "Add Test Template" msgstr "Añadir Plantilla de Prueba" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "Asignaciones de órdenes de venta" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "Notas de parte" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "Variantes de Parte" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "Crear nueva variante" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "Nueva Variante" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "Añadir nuevo parámetro" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "Partes relacionadas" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "Añadir Relacionado" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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 "Lista de Materiales" -#: part/templates/part/detail.html:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "Exportar acciones" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "Exportar BOM" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "Imprimir informe BOM" -#: part/templates/part/detail.html:295 +#: part/templates/part/detail.html:272 +msgid "BOM actions" +msgstr "Acciones BOM" + +#: part/templates/part/detail.html:276 msgid "Upload BOM" msgstr "Subir BOM" -#: part/templates/part/detail.html:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "Validar BOM" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "Añadir artículo al BOM" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "Ensamblajes" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "Construcción de partes" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "Construir adjudicaciones de pedidos" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "Proveedores de partes" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "Fabricantes de partes" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "Eliminar partes del fabricante" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "Partes relacionadas" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "Añadir artículos relacionados" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "Añadir plantilla de resultados de prueba" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "Descargar plantilla de importación de parte" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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 "Formato" #: part/templates/part/import_wizard/part_upload.html:93 -#: templates/js/translated/bom.js:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "Seleccionar formato de archivo" @@ -6766,7 +6780,7 @@ msgstr "Mostrar información de precios" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "Acciones de stock" @@ -6778,7 +6792,7 @@ msgstr "Contar stock de partes" msgid "Transfer part stock" msgstr "Transferir stock de partes" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "Acciones para partes" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "Inactivo" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "Puede construir" @@ -6857,8 +6871,8 @@ msgstr "Puede construir" msgid "Minimum stock level" msgstr "Nivel mínimo de stock" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6866,7 +6880,7 @@ msgstr "Rango de precios" #: part/templates/part/part_base.html:354 msgid "Latest Serial Number" -msgstr "Último Número Serial" +msgstr "Último número de serie" #: part/templates/part/part_base.html:358 #: stock/templates/stock/item_base.html:323 @@ -6881,7 +6895,7 @@ msgstr "Código QR de Parte" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "parte" @@ -6955,9 +6969,9 @@ msgstr "Variantes" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Inventario" @@ -6988,9 +7002,9 @@ msgstr "Actualizar precio de partes" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "Última actualización" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "Sin Stock" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "Bajo Stock" @@ -7141,10 +7155,6 @@ msgstr "Imagen de parte no encontrada" msgid "Part Pricing" msgstr "Precio de parte" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "Su entorno tiene una versión desactualizada de git. Esto evita que InvenTree cargue los detalles del complemento." - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "No se especificó ninguna acción" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "Coincidencia encontrada para datos de códigos de barras" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "El código de barras coincide con artículo existente" @@ -7229,47 +7239,43 @@ msgstr "URL que se utiliza para enviar mensajes a un canal de slack" msgid "Open link" msgstr "Abrir enlace" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "Configuración del complemento" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "Configuraciones del Plug-in" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "Clave" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "Clave del complemento" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "Nombre del complemento" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "Está activo el complemento" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "No disponible" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "Complemento de ejemplo" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "Complemento integrado" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "Complemento" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "Método" @@ -7277,21 +7283,17 @@ msgstr "Método" msgid "No author found" msgstr "No se encontró autor" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "No se encontró fecha" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "Configuración de Elección" msgid "A setting with multiple choices" msgstr "Un ajuste con múltiples opciones" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "URL de origen" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "Fuente del paquete - puede ser un registro personalizado o una ruta VCS" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "Nombre de Paquete" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "Nombre del paquete Plug-in - también puede contener un indicador de versión" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "Confirmar instalación del complemento" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "Esto instalará este plug-in en la instancia actual. La instancia entrará en mantenimiento." -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "Instalación no confirmada" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "Debe proporcionar cualquier nombre de paquete de la URL" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "No se han proporcionado objetos válidos a la plantilla" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "Informe de la prueba" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "Nombre de la plantilla" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "Plantilla de informe" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "Descripción de la plantilla de informe" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "Número de revisión del informe (autoincremental)" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "Patrón para generar nombres de archivo" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "Plantilla de informe está habilitada" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "Filtros de consulta de Stock (lista separada por comas de pares clave=valor)" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "Incluye Pruebas Instaladas" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "Incluye resultados de prueba para artículos de stock instalados dentro del artículo ensamblado" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "Crear filtros" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "Crear filtros de consulta (lista separada por comas de pares clave=valor" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "Filtros de partes" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "Filtros de búsqueda de partes (lista separada por comas de pares clave=valor" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "Filtros de búsqueda de orden de compra" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "Filtros de búsqueda de pedidos de ventas" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "Filtros de búsqueda de orden de devolución" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "Fragmento" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "Archivo fragmento de informe" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "Descripción de archivo de fragmento" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "Activo" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "Reportar archivo de activos" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "Descripción del archivo de activos" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "Materiales necesarios" @@ -7478,8 +7492,8 @@ msgstr "El proveedor ha sido eliminado" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "Precio Unitario" @@ -7491,26 +7505,30 @@ msgstr "Elementos de línea extra" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "Total" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Número de serie" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "Artículo Stock Informe de prueba" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "Resultados de la Prueba" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "Prueba" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "Resultado" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "Elementos instalados" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "Serial" @@ -7564,8 +7582,8 @@ msgstr "ID de Ubicación" msgid "Location Name" msgstr "Nombre de localización" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "Ruta de Ubicación" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "Fecha de Expiración" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "Ubicación externa" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "Cantidad requerida" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "Debe suministrarse una parte válida" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "Ubicación de Stock" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "Ubicaciones de Stock" @@ -7673,8 +7691,8 @@ msgstr "Seleccionar Propietario" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "Externo" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "Precio de compra único en el momento de la compra" msgid "Converted to part" msgstr "Convertido a parte" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "La parte no está establecida como rastreable" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "Cantidad debe ser un entero" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "La cantidad no debe exceder la cantidad disponible de existencias ({n})" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "Los números de serie deben ser una lista de enteros" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "La cantidad no coincide con los números de serie" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "Números de serie ya existen" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "Artículo de stock ha sido asignado a un pedido de venta" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "Artículo de stock está instalado en otro artículo" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "Artículo de stock contiene otros artículos" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "Artículo de stock ha sido asignado a un cliente" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "El artículo de stock está en producción" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "Stock serializado no puede ser combinado" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "Artículos de Stock Duplicados" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "Los artículos de stock deben referirse a la misma parte" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "Los artículos de stock deben referirse a la misma parte del proveedor" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "Los códigos de estado del stock deben coincidir" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "Stock no se puede mover porque no está en stock" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "Notas de entrada" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "Debe proporcionarse un valor para esta prueba" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "El archivo adjunto debe ser subido para esta prueba" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "Nombre del test" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "Resultado de la prueba" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "Valor de salida de prueba" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "Adjunto de resultados de prueba" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "Notas de prueba" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "El número de serie es demasiado grande" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "Introduzca el número de artículos de stock para serializar" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "La cantidad no debe exceder la cantidad disponible de stock ({q})" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "Introduzca números de serie para nuevos artículos" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "Ubicación de stock de destino" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "Campo de nota opcional" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "Los números de serie no se pueden asignar a esta parte" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "Añadir nota de transacción (opcional)" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "La parte debe ser vendible" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "El artículo está asignado a una orden de venta" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "El artículo está asignado a una orden de creación" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "Cliente para asignar artículos de stock" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "La empresa seleccionada no es un cliente" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "Notas de asignación de stock" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "Debe proporcionarse una lista de artículos de stock" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "Notas de fusión de stock" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "Permitir proveedores no coincidentes" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "Permitir fusionar artículos de stock con diferentes partes de proveedor" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "Permitir estado no coincidente" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "Permitir fusionar artículos de stock con diferentes códigos de estado" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "Debe proporcionar al menos dos artículos de stock" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "Valor de clave primaria de Stock" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "Notas de transacción de stock" @@ -8037,48 +8064,48 @@ msgstr "Notas de transacción de stock" msgid "Stock Tracking Information" msgstr "Información de Seguimiento de Stock" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "Elementos de Stock Hijos" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "Este artículo de stock no tiene ningún artículo secundario" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "Datos de Prueba" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "Informe de Prueba" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "Eliminar Datos de Prueba" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "Añadir Datos de Prueba" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "Notas del artículo de stock" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "Elementos de Stock instalados" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "Instalar artículo de stock" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "Añadir Resultado de Prueba" @@ -8086,13 +8113,13 @@ msgstr "Añadir Resultado de Prueba" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "Escanear a la ubicación" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "Acciones de impresión" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "Acciones de ajuste de stock" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "Contar stock" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "Añadir stock" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "Eliminar stock" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "Serializar stock" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "Transferir stock" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "Asignar a cliente" @@ -8156,12 +8186,17 @@ msgstr "Duplicar artículo" #: stock/templates/stock/item_base.html:121 msgid "Edit stock item" -msgstr "Elemento de stock editado" +msgstr "Editar artículo de almacén" #: stock/templates/stock/item_base.html:124 msgid "Delete stock item" msgstr "Eliminar artículo de stock" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Construcción o Armado" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "Elemento padre" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "No estás en la lista de propietarios de este artículo. Este artículo de stock no puede ser editado." #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "Solo lectura" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "Cantidad disponible" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "Ubicación no establecida" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "Este ítem expiró el %(item.expiry_date)s" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "Expirado" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "Este ítem expira el %(item.expiry_date)s" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "Desactualizado" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "Ningún inventario realizado" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "Escanear en contenedor" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "Acciones de ubicación" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "Editar ubicación" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "Eliminar ubicación" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "Ubicación de stock superior" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "Propietario de la ubicación" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "No estás en la lista de propietarios de esta ubicación. Esta ubicación de stock no puede ser editada." -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Sub-ubicación" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "Crear nueva ubicación de stock" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "Nueva Ubicación" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "ubicación de almacén" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "El sitio está actualmente en mantenimiento y debería estar listo pront msgid "Index" msgstr "Índice" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "Partes Suscritas" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "Categorías Suscritas" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "Últimas Partes" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "Validación de BOM en espera" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "Actualizado Recientemente" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "Stock Agotado" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "Requerido para construir pedidos" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "Stock Caducado" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "Stock Obsoleto" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "Pedidos en curso" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "Órdenes de construcción atrasadas" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "Órdenes de Compra Pendientes" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "Pedidos de Compra Atrasados" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "Pedidos de Venta Pendientes" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "Pedidos de Venta Atrasados" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "Noticias de InvenTree" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "Noticias actuales" @@ -8654,7 +8693,7 @@ msgstr "Importar Parte" msgid "Import Part" msgstr "Importar Parte" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "Plantillas de Parámetros de Partes" @@ -8675,63 +8714,42 @@ msgstr "Ajustes del complemento" msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." msgstr "Cambiar la configuración de abajo requiere reiniciar inmediatamente el servidor. No lo cambie mientras esté en uso activo." -#: templates/InvenTree/settings/plugin.html:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "Complementos" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "Instalar complemento" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "Los complementos externos no están habilitados para esta instalación de InvenTree" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "Versión" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "Complementos activos" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "Complementos inactivos" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "Pila de error de complementos" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "Etapa" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "Mensaje" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "Integrado" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "Muestra" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "Información de Plugin" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "Versión" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "no se proporcionó información de versión" @@ -8764,6 +8782,11 @@ msgstr "Este complemento fue encontrado en una ruta del servidor local" msgid "Installation path" msgstr "Ruta de instalación" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "Integrado" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "Este es un complemento incorporado que no puede ser desactivado" @@ -8786,14 +8809,6 @@ msgstr "Hash de Commit" msgid "Commit Message" msgstr "Mensaje de Commit" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "Estado de Firma" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "Firma de clave" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "Ajustes de Orden de Compra" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "No hay plantillas de parámetros de categoría" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "Editar Plantilla" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "Eliminar Plantilla" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "Página de Inicio" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "Sin verificar" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "Principal" @@ -9223,44 +9239,48 @@ msgstr "Actualizado" msgid "Update Available" msgstr "Actualización Disponible" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "Documentación de InvenTree" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "Versión API" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "Versión de Python" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "Versión de Django" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "Ver código en GitHub" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "Créditos" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "Aplicación Móvil" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "Enviar Informe de Error" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "copiar al portapapeles" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "copiar información de versión" @@ -9454,14 +9474,6 @@ msgstr "Agregar Enlace" msgid "Add Attachment" msgstr "Añadir archivo adjunto" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "Identificador de Código de Barras" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "Las siguientes partes están bajas en stock requerido" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "Cantidad requerida" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "Haga clic en el siguiente enlace para ver esta parte" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "Cantidad Mínima" @@ -9592,23 +9604,35 @@ msgstr "Código de error" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "No se encontraron archivos adjuntos" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "Editar archivos adjuntos" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "Fecha de subida" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "Editar adjunto" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "Eliminar adjunto" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "Desvincular" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "Eliminar artículo de stock" @@ -9723,743 +9747,837 @@ msgstr "Comprobar en la ubicación" msgid "Barcode does not match a valid location" msgstr "El código de barras no coincide con una ubicación válida" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "Crear artículo para el BOM" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "Mostrar datos de fila" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "Datos de Fila" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "Cerrar" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "Descargar plantilla BOM" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "Niveles" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "Seleccione el número máximo de niveles BOM a exportar (0 = todos los niveles)" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "Incluye partes alternativas" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "Incluye Parámetros de Datos" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "Incluye Datos de Stock" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "Incluye datos de stock de partes en BOM exportado" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "Incluir Datos del fabricante" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "Incluye datos del fabricante de partes en BOM exportado" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "Incluir Datos del Proveedor" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "Incluye datos del proveedor de partes en BOM exportado" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "Eliminar parte sustituta" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "Seleccione y añada una nueva parte sustituta usando la siguiente entrada" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "¿Está seguro que desea eliminar este enlace de la parte sustituta?" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "Eliminar parte sustituta" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "Añadir sustituto" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "Editar sustitutos de artículos BOM" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "Todos los artículos BOM seleccionados serán eliminados" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "¿Eliminar artículos BOM seleccionados?" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "Sustitutos Disponibles" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "Stock de variante permitido" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "Sustitutos" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "Validar Artículo para el BOM" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "Esta línea ha sido validada" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "Editar partes sustitutas" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "Editar Artículo de BOM" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "Eliminar Artículo de BOM" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "Ver BOM" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "No se encontraron artículos BOM" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "Parte requerida" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "Heredado de BOM superior" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "Editar Orden de Trabajo" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "Crear Orden de Trabajo" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "¿Estás seguro de que quieres cancelar esta construcción?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "El pedido de construcción está listo para ser completado" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "Orden de construcción incompleta" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "Completar Orden de Construcción" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "Siguiente número de serie disponible" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "Último número de serie" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "La ley de materiales contiene partes rastreables" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "Las salidas de construcción deben ser generadas individualmente" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "Las partes rastreables pueden tener números de serie especificados" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "Introduzca números de serie para generar múltiples salidas de construcción única" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "Crear Salida de Trabajo" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "Asignar artículos de stock a esta salida de trabajo" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" -msgstr "Desasignar stock de la salida de trabajo" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" +msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "Completar salida de trabajo" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "Eliminar Salida de Trabajo" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" -msgstr "¿Está seguro que desea desasignar los artículos de stock de este trabajo?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" +msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" -msgstr "Desasignar artículos de stock" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" +msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "Seleccionar Salida de Trabajo" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "Se debe seleccionar al menos una salida de trabajo" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "Salida" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "Completar salidas de trabajo" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "Eliminar Salidas" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "No se encontraron asignaciones de órdenes de trabajo" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "Ubicación no especificada" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "Completar salidas" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "Eliminar salidas" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "No se encontraron salidas de trabajo activas" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "Editar asignación de stock" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "Eliminar asignación de stock" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "Editar Asignación" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "Quitar asignación" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "Partes sustitutas disponibles" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "Cantidad por" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "Stock de Trabajo" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "Pedido de stock" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "Asignar stock" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "Seleccionar partes" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "Debe seleccionar al menos una parte para asignar" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "Especificar la cantidad de asignación de stock" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "Seleccionar ubicación de origen (dejar en blanco para tomar de todas las ubicaciones)" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "Asignar Artículos de Stock a Orden de Trabajo" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "No hay ubicaciones de stock coincidentes" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "No hay artículos de stock coincidentes" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "Asignar artículos de inventario" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "No hay trabajos que coincidan con la consulta" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "Seleccionar" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "Orden de trabajo atrasada" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "Progreso" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "No hay información de usuario" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "grupo" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" -msgstr "No se asignaron partes para" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" +msgstr "Editar asignación de stock" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "Eliminar asignación de stock" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "Editar Asignación" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "Quitar asignación" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "Parte Rastreable" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "Stock de Trabajo" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "Pedido de stock" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "Asignar stock" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "Agregar Fabricante" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "Añadir Parte del fabricante" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "Editar Parte del Fabricante" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "Añadir Proveedor" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "Añadir Parte de Proveedor" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "Se eliminarán todas las partes del proveedor seleccionadas" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "Eliminar partes de proveedor" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "Añadir nueva Empresa" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "Partes Suministradas" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "Partes Fabricadas" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "No se encontró información de la empresa" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "Crear nuevo contacto" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "Editar contacto" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "Todos los contactos seleccionados serán eliminados" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "Cargo" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "Eliminar contactos" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "No se encontró ningún contacto" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "Número de teléfono" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "Dirección de correo electrónico" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "Eliminar contacto" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "Se eliminarán todas las partes del fabricante seleccionadas" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "Eliminar Partes del Fabricante" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "Todos los parámetros seleccionados serán eliminados" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "Eliminar parámetros" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Partes de pedido" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "Eliminar partes del fabricante" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "No se encontraron partes del fabricante" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "Plantilla de parte" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "Parte ensamblada" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "No se encontraron parámetros" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "Editar parámetro" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "Eliminar parámetro" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "Editar parámetro" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "Eliminar parámetro" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "Eliminar partes del proveedor" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "No se encontraron partes de proveedor" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "Unidades base" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "Disponibilidad" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "Editar proveedor" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "Eliminar ítem del proveedor" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "Eliminar precio de descuento" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "Editar precio de descuento" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "No se ha encontrado información de descuento de precios" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "Última actualización" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "Editar precio de descuento" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "Eliminar precio de descuento" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "verdadero" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "falso" @@ -10467,31 +10585,31 @@ msgstr "falso" msgid "Select filter" msgstr "Seleccionar filtro" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "Imprimir etiquetas" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "Imprimir informes" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "Descargar tabla de datos" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "Recargar tabla de datos" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "Añadir un nuevo filtro" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "Limpiar todos los filtros" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "Crear filtro" @@ -10516,6 +10634,12 @@ msgstr "Operación de eliminación no permitida" msgid "View operation not allowed" msgstr "Operación de visualización no permitida" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Eliminar" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "Mantener este formulario abierto" @@ -10533,23 +10657,23 @@ msgstr "Existen errores en el formulario" msgid "No results found" msgstr "No hay resultados" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "Buscando" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "Limpiar entrada" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "Columna de archivo" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "Nombre del campo" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "Seleccionar columnas" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "Seleccionar impresora" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "Identificación" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "Eliminar línea" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "No hay artículos de línea" @@ -10735,370 +10867,410 @@ msgstr "Editar línea" msgid "Delete line" msgstr "Eliminar línea" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "Atributos de Parte" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "Opciones de Creación de Parte" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "Opciones de Duplicación de Parte" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "Añadir Categoría de Parte" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "Categoría superior de parte" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "Crear Categoría de Parte" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "Categoría de partes creada" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "Editar Categoría de Parte" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "Mover a la categoría padre" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "Eliminar Categoría de Parte" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "Crear Parte" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "Parte creada con éxito" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "Editar Parte" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "Parte editada" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "Crear Variante de Parte" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "Parte activa" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "Eliminar parte" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "Estás suscrito a las notificaciones de este artículo" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "Te has suscrito a las notificaciones de este artículo" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "Suscríbete a las notificaciones de este artículo" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "Has cancelado la suscripción a las notificaciones de este artículo" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "Validar el BOM marcará cada artículo de línea como válido" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "Validar la Factura de Materiales" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "Validación de Lista de Materiales" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "Copiar Factura de Materiales" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "Stock bajo" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "Existencias no disponibles" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "Demanda" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "Unidad" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "Parte Rastreable" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "Parte virtual" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "Parte suscrita" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "Parte vendible" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "No se encontraron variantes" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "No se encontraron plantillas de parámetros de parte" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "Crear plantilla Parámetro de Parte" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "Eliminar Plantilla de Parámetros de Parte" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "No se encontraron órdenes de compra" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "Recibir ítem de línea" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "Eliminar relación de parte" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "Eliminar Relación de Parte" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "No se encontraron partes" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "partes" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "Sin categoría" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "Mostrar como lista" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "Mostrar como cuadrícula" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "Definir Categoría de Parte" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" -msgstr "" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "Definir categoría" -#: templates/js/translated/part.js:2495 -msgid "Category is required" -msgstr "" +#: templates/js/translated/part.js:2253 +msgid "parts" +msgstr "partes" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "Sin categoría" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "Mostrar como lista" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "Mostrar como cuadrícula" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "Mostrar como árbol" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "Cargar subcategorías" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "Categoría suscrita" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "No hay plantillas de prueba que coincidan con la consulta" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "Editar resultado de prueba" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "Eliminar resultado de prueba" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "Esta prueba está definida para una parte principal" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "Editar plantilla de resultado de prueba" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "Eliminar plantilla de resultados de prueba" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "Sin fecha especificada" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "Especulativo" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "Cantidad máxima" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "Muestra" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "El Plugin fue Instalado" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "No hay datos de variantes disponibles" msgid "Variant Part" msgstr "Parte variante" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "Duplicar artículos de línea" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "Duplicar líneas adicionales" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "Modificar orden de compra" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "Completar orden de compra" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "Marcar pedido como completado?" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "Este pedido tiene artículos de línea que no han sido marcados como recibidos." -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "Completar este pedido significa que los artículos de orden y línea ya no serán editables." -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "Cancelar orden de compra" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "Cantidad a ordenar" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "Nueva parte del proveedor" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "Nueva orden de compra" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "Añadir a la orden de compra" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "No hay partes de proveedor coincidentes" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "No hay órdenes de compra coincidentes" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "Seleccionar Artículos de Línea" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "Debe seleccionar al menos un artículo de línea" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "Cantidad recibida" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "Cantidad a recibir" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "Estado del Stock" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "Agregar código de barras" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "Eliminar código de barras" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "Especificar ubicación" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "Añadir código de lote" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "Añadir números de serie" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "Código de Pedido" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "Cantidad a recibir" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "Confirmar recepción de artículos" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "Recibir artículos de orden de compra" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "El pedido está vencido" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "Artículos" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "Duplicar artículo de línea" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "Editar Ítem de Línea" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "Eliminar Ítemde Línea" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "Duplicar artículo de línea" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "Editar artículo de línea" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "Eliminar artículo de línea" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "Añadir Cliente" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "Cliente Inválido" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "Recibir artículos de pedido de devolución" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "No hay artículos de línea coincidentes" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "Marcar artículo como recibido" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "Crear Orden de Venta" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "Editar orden de venta" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "No se ha asignado ningún artículo de stock a este envío" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "Los siguientes artículos de stock serán enviados" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "Completar Envío" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "Confirmar Envío" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "No se encontraron envíos pendientes" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "No se ha asignado ningún artículo de almacén a los envíos pendientes" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "Completar Envíos" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "Omitir" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "Este pedido tiene artículos de línea que no han sido completados." -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "¿Emitir este pedido de venta?" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "Emitir orden de venta" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "Cancelar orden de venta" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "Cancelar esta orden significa que la orden ya no será editable." -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "Crear Nuevo Envío" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "No se encontraron ventas" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "Editar envío" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "Completar envío" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "Eliminar envío" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "Editar envío" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "Eliminar Envío" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "No se encontraron envíos coincidentes" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "Referencia de Envío" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "No enviado" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "Seguimiento" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "Factura" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "Añadir envío" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "Confirmar asignación de stock" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "Asignar artículos de stock a pedido de venta" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "No se encontraron asignaciones de órdenes" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "Editar Asignación de Stock" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "Confirmar Operación de Eliminar" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "Eliminar Adjudicación de Stock" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "Enviado al cliente" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "Ubicación de stock no especificada" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "Asignar números de serie" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "Comprar stock" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "Calcular precio" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "No se puede eliminar ya que los artículos han sido enviados" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "No se puede eliminar ya que los artículos han sido asignados" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "Asignar Números de Serie" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "Actualizar precio unitario" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "Sin resultados" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "Ingresar consulta de búsqueda" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "resultado" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "resultados" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "Minimizar resultados" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "Eliminar resultados" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "Serializar Artículo de Stock" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "Confirmar Serialización de Stock" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "Ubicación del stock principal" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "Editar ubicación de stock" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "Nueva Ubicación de Stock" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "Crear otra ubicación después de ésta" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "Ubicación de inventario creada" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "¿Está seguro que desea eliminar esta ubicación?" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "Mover a la ubicación de inventario del padre" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "Eliminar ubicación de stock" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "Esta parte no se puede serializar" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "Introduzca la cantidad inicial para este artículo de stock" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Introduzca números de serie para el nuevo stock (o deje en blanco)" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "Duplicar artículo de stock" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "¿Está seguro que desea eliminar este artículo de stock?" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "Eliminar artículo de stock" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "Editar artículo de stock" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "Crear nuevo artículo de stock" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "Creados varios artículos de stock" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "Encontrar número serial" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "Introducir número de serie" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "Introducir un número de serie" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "Ningún número de serie coincidente" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "Más de un resultado encontrado" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "Confirmar asignación de stock" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "Asignar Stock al Cliente" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "Advertencia: La operación de fusión no puede ser revertida" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "Alguna información se perderá al combinar artículos de stock" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "Se eliminará el historial de transacciones de stock para artículos fusionados" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "La información de la parte del proveedor se eliminará para los artículos fusionados" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "Confirmar fusión de artículos de stock" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "Fusionar Artículos de Stock" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "Transferir Stock" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "Mover" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "Contar Stock" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "Contar" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "Eliminar Stock" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "Tomar" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "Añadir Stock" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "Añadir" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "Eliminar Stock" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "La cantidad no se puede ajustar para el stock serializado" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "Especificar cantidad de stock" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "Seleccionar artículos de stock" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" -msgstr "Debe seleccionar al menos un artículo de stock disponible" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" +msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "Confirmar ajuste de stock" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "PASA" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "FALLO" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "SIN RESULTADO" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "Pruebas pasadas" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "Añadir resultado de prueba" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "No se encontraron resultados de prueba" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "Fecha de Prueba" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "Editar Resultados de Prueba" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "Borrar Resultado de Prueba" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "En producción" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "Instalado en el artículo de stock" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "Asignado a la Orden de Venta" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "Ninguna ubicación de stock establecida" -#: templates/js/translated/stock.js:1746 +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" +msgstr "" + +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" +msgstr "Fusionar stock" + +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" +msgstr "Eliminar existencias" + +#: templates/js/translated/stock.js:1885 msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1850 +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 msgid "Stock item is in production" msgstr "El artículo de stock está en producción" -#: templates/js/translated/stock.js:1855 +#: templates/js/translated/stock.js:2028 msgid "Stock item assigned to sales order" msgstr "Artículo de stock asignado al pedido de venta" -#: templates/js/translated/stock.js:1858 +#: templates/js/translated/stock.js:2031 msgid "Stock item assigned to customer" msgstr "Artículo de stock asignado al cliente" -#: templates/js/translated/stock.js:1861 +#: templates/js/translated/stock.js:2034 msgid "Serialized stock item has been allocated" msgstr "Se ha asignado un artículo de stock serializado" -#: templates/js/translated/stock.js:1863 +#: templates/js/translated/stock.js:2036 msgid "Stock item has been fully allocated" msgstr "Artículo de stock ha sido completamente asignado" -#: templates/js/translated/stock.js:1865 +#: templates/js/translated/stock.js:2038 msgid "Stock item has been partially allocated" msgstr "Artículo de stock ha sido asignado parcialmente" -#: templates/js/translated/stock.js:1868 +#: templates/js/translated/stock.js:2041 msgid "Stock item has been installed in another item" msgstr "Artículo de stock ha sido instalado en otro artículo" -#: templates/js/translated/stock.js:1870 +#: templates/js/translated/stock.js:2043 msgid "Stock item has been consumed by a build order" msgstr "" -#: templates/js/translated/stock.js:1874 +#: templates/js/translated/stock.js:2047 msgid "Stock item has expired" msgstr "Artículo de stock ha caducado" -#: templates/js/translated/stock.js:1876 +#: templates/js/translated/stock.js:2049 msgid "Stock item will expire soon" msgstr "El artículo de stock caducará pronto" -#: templates/js/translated/stock.js:1881 +#: templates/js/translated/stock.js:2054 msgid "Stock item has been rejected" msgstr "Artículo de stock ha sido rechazado" -#: templates/js/translated/stock.js:1883 +#: templates/js/translated/stock.js:2056 msgid "Stock item is lost" msgstr "Artículo de stock perdido" -#: templates/js/translated/stock.js:1885 +#: templates/js/translated/stock.js:2058 msgid "Stock item is destroyed" msgstr "Artículo de stock destruido" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 msgid "Depleted" msgstr "Agotado" -#: templates/js/translated/stock.js:2031 +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "Parte del proveedor no especificada" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "No hay artículos de stock que coincidan con la consulta" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "Cargar sublocalidades" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "Detalles" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "Sin cambios" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "Información de la parte no disponible" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "Ubicación ya no existe" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "La orden de compra ya no existe" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "El pedido de venta ya no existe" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "El pedido de devolución ya no existe" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "El cliente ya no existe" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "Artículo de stock ya no existe" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "Añadido" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "Eliminado" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "Ningún artículo instalado" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "Desinstalar artículo de stock" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "Los artículos de stock sólo pueden ser instalados si cumplen con los siguientes criterios" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "Seleccionar parte para instalar" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "Tiene código de proyecto" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "Estado del pedido" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "Pendiente" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "Asignado a mí" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "Parte Rastreable" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "Parte Ensamblada" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "Tiene stock disponible" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "Permitir stock de variante" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "Tiene precio" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "Incluir sub-ubicación" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "Incluir ubicaciones" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "Incluir subcategorías" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "Suscrito" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "Es Serializado" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "Número Serial GTE" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "Número de serie mayor o igual a" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "Número Serial LTE" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "Número de serie menor o igual que" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "Número de serie" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "Código de lote" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "Partes activas" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "Mostrar stock para las partes activas" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "Parte es un ensamblado" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "Está asignado" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "El artículo ha sido asignado" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "Stock disponible para uso" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "Incluye stock en sub-ubicaciones" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "Mostrar artículos de stock que están agotados" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "Mostrar artículos en stock" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "En Producción" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "Mostrar artículos que están en producción" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "Incluye Variantes" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "Incluye artículos de stock para partes de variantes" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "Instalado" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "Mostrar artículos de stock que están instalados en otro artículo" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "Mostrar artículos que han sido asignados a un cliente" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "Estado del stock" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "Tiene código de lote" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "Rastreado" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "Tiene precio de compra" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "Mostrar artículos de stock que tienen un precio de compra establecido" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "Fecha de vencimiento antes de" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "Fecha de vencimiento después" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "Mostrar artículos de stock que han caducado" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "Mostrar stock que está cerca de caducar" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "Prueba aprobada" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "Incluye artículos instalados" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "Estado de la construcción" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "Incluye partes en subcategorías" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "Mostrar partes activas" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "Existencias disponibles" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "Tiene unidades" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "Tiene IPN" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" -msgstr "La parte tiene número de parte interno" +msgstr "La parte tiene un número de parte interno" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "En existencia" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "Comprable" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "Tiene entradas de inventario" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "Tiene opciones" @@ -12361,51 +12565,51 @@ msgstr "Exportar datos de tabla" msgid "Select File Format" msgstr "Seleccionar formato de archivo" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "Cargando datos" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "filas por página" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "Mostrar todas las filas" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "Mostrando" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "para" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "de" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "filas" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "No se encontraron resultados" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "Ocultar/Mostrar paginación" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "Alternar" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "Columnas" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "Todo" @@ -12588,50 +12792,6 @@ msgstr "Configuración de Email" msgid "Email settings not configured" msgstr "Configuración de correo no configurada" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "Acciones de código de barras" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "Opciones Stock" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "Añadir a los artículos de stock seleccionados" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "Eliminar de los artículos de stock seleccionados" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "Artículos de stock seleccionados" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "Mover artículos de stock seleccionados" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "Combinar artículos de stock seleccionados" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "Fusionar stock" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "Ordenar artículos seleccionados" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "Eliminar artículos seleccionados" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "Eliminar existencias" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "Sí" @@ -12664,35 +12824,35 @@ msgstr "Permisos" msgid "Important dates" msgstr "Fechas importantes" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "Permiso establecido" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "Grupo" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "Vista" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "Permiso para ver artículos" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "Permiso para añadir artículos" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "Cambiar" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "Permisos para editar artículos" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "Permiso para eliminar artículos" diff --git a/InvenTree/locale/es_MX/LC_MESSAGES/django.po b/InvenTree/locale/es_MX/LC_MESSAGES/django.po index f86f89811d..64c21eac96 100644 --- a/InvenTree/locale/es_MX/LC_MESSAGES/django.po +++ b/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: 2023-06-01 21:56+0000\n" +"POT-Creation-Date: 2023-07-04 21:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,19 +26,19 @@ msgstr "" msgid "User does not have permission to view this model" msgstr "" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -50,26 +50,26 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "" @@ -82,47 +82,51 @@ msgstr "" msgid "Provided value does not match required pattern: " msgstr "" -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "" -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "" -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "" @@ -238,9 +242,9 @@ msgstr "" msgid "Missing external link" msgstr "" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "" @@ -248,29 +252,30 @@ msgstr "" msgid "Select file to attach" msgstr "" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2681 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "" @@ -278,13 +283,13 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2140 +#: common/models.py:2141 common/models.py:2354 common/models.py:2355 +#: common/models.py:2611 common/models.py:2612 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "" @@ -325,54 +330,54 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2340 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:159 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:172 +#: report/models.py:575 report/models.py:619 #: report/templates/report/inventree_build_order_base.html:117 #: stock/admin.py:41 stock/templates/stock/location.html:123 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "" @@ -385,7 +390,7 @@ msgid "parent" msgstr "" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "" @@ -421,12 +426,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3873 +#: InvenTree/serializers.py:60 part/models.py:3935 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -499,316 +504,319 @@ msgstr "" msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -832,99 +840,127 @@ msgstr "" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3827 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3821 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3774 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3836 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3531 -#: part/models.py:3639 part/models.py:3739 part/models.py:4053 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3583 +#: part/models.py:3706 part/models.py:3801 part/models.py:4115 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -934,266 +970,229 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2162 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3755 +#: part/forms.py:47 part/models.py:3029 part/models.py:3817 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1202,315 +1201,367 @@ msgstr "" #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:668 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3662 -#: part/models.py:4045 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1539,6 +1590,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1617,69 +1669,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1687,32 +1737,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1728,8 +1778,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1743,21 +1793,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1765,147 +1815,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1913,14 +1922,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1967,16 +1972,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2260,9 +2255,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3536 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3588 +#: report/models.py:165 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2270,10 +2265,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2281,8 +2276,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2290,7 +2285,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2298,8 +2293,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2307,10 +2302,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2318,10 +2313,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2353,7 +2348,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2602,179 +2597,179 @@ msgid "Stock location default icon (empty means no icon)" msgstr "" #: common/models.py:1471 -msgid "Build Order Reference Pattern" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Required pattern for generating Purchase Order reference field" +msgstr "" + +#: common/models.py:1534 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" -msgstr "" - -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1542 -msgid "Enable registration" +msgid "Enable password forgot" msgstr "" #: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable registration" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable SSO" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Email required" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Mail twice" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Password twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Allowed domains" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Group on signup" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Group to which new users are assigned on registration" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Enforce MFA" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Users must use multifactor security." +msgstr "" + +#: common/models.py:1619 +msgid "Check plugins on startup" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" -msgstr "" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" #: common/models.py:1628 @@ -2849,7 +2844,7 @@ msgstr "" msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1710 common/models.py:2133 msgid "Settings key (must be unique - case insensitive" msgstr "" @@ -2890,528 +2885,513 @@ msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "" - -#: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1787 +#: common/models.py:1780 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1793 +#: common/models.py:1786 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1794 +#: common/models.py:1787 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 +#: common/models.py:1793 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1794 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1800 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1801 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1807 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1808 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1814 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1815 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1821 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1822 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1828 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1829 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1835 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1836 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1842 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1843 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1849 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1850 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1856 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1857 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1863 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1864 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1870 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1871 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1877 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1878 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1884 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1885 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1891 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1892 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1898 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1899 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1905 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1906 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1912 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1913 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1919 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1920 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1926 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1927 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1933 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1934 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1940 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1941 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1947 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1948 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1954 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1955 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1961 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1962 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1968 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1969 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1975 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1976 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1982 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1983 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1989 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1990 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:1996 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:1997 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2003 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2004 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2010 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2011 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2017 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2018 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2024 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2025 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2031 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2032 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2038 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2039 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2045 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2046 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2052 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2053 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2059 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2060 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2074 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2075 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2081 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2082 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2088 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2089 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2098 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2099 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2107 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2108 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2116 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2117 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2163 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2170 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2171 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2331 common/models.py:2509 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2332 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2341 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2346 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2347 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2361 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2362 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2369 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2370 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2476 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2477 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2485 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2486 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2493 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2494 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2500 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2501 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2510 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2515 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2516 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2670 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2676 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2686 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2691 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2696 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2701 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2702 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2722 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3421,7 +3401,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2723 msgid "Image file" msgstr "" @@ -3498,7 +3478,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3506,303 +3486,387 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3777 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3839 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3815,7 +3879,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3855,17 +3919,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3873,6 +3937,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3905,7 +3976,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3915,129 +3986,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4049,17 +4112,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4079,40 +4142,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4136,23 +4181,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4163,13 +4213,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4196,7 +4246,7 @@ msgstr "" #: company/templates/company/supplier_part.html:211 #: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4204,37 +4254,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 +#: stock/serializers.py:662 stock/templates/stock/location.html:168 #: stock/templates/stock/location.html:182 #: stock/templates/stock/location.html:194 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4260,7 +4310,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4268,77 +4318,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:272 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:265 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:293 report/models.py:440 +#: report/models.py:478 report/models.py:516 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4347,569 +4390,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4956,82 +5003,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5084,13 +5123,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5151,9 +5190,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5164,30 +5203,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5207,29 +5241,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5247,7 +5281,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5256,16 +5290,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5273,18 +5307,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5310,12 +5343,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3643 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3710 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3647 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3714 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5324,19 +5357,19 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:178 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5357,24 +5390,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5382,23 +5415,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5415,13 +5441,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5438,7 +5464,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3651 +#: part/admin.py:274 part/models.py:3718 msgid "Part IPN" msgstr "" @@ -5452,35 +5478,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5490,7 +5516,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5498,917 +5524,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3592 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3659 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3648 +#: part/models.py:850 part/models.py:3715 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3591 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3658 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3539 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3531 +#: part/models.py:3583 msgid "Parent Part" msgstr "" -#: part/models.py:3536 part/models.py:3597 part/models.py:3598 +#: part/models.py:3588 part/models.py:3664 part/models.py:3665 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3541 +#: part/models.py:3593 msgid "Data" msgstr "" -#: part/models.py:3541 +#: part/models.py:3593 msgid "Parameter Value" msgstr "" -#: part/models.py:3602 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3669 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3603 +#: part/models.py:3670 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3640 +#: part/models.py:3707 msgid "Part ID or part name" msgstr "" -#: part/models.py:3644 +#: part/models.py:3711 msgid "Unique part ID value" msgstr "" -#: part/models.py:3652 +#: part/models.py:3719 msgid "Part IPN value" msgstr "" -#: part/models.py:3655 +#: part/models.py:3722 msgid "Level" msgstr "" -#: part/models.py:3656 +#: part/models.py:3723 msgid "BOM level" msgstr "" -#: part/models.py:3740 +#: part/models.py:3729 part/models.py:4107 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3802 msgid "Select parent part" msgstr "" -#: part/models.py:3748 +#: part/models.py:3810 msgid "Sub part" msgstr "" -#: part/models.py:3749 +#: part/models.py:3811 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3755 +#: part/models.py:3817 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3759 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3760 +#: part/models.py:3822 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3765 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3766 +#: part/models.py:3828 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3770 part/templates/part/upload_bom.html:55 +#: part/models.py:3832 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3771 +#: part/models.py:3833 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3774 +#: part/models.py:3836 msgid "BOM item reference" msgstr "" -#: part/models.py:3777 +#: part/models.py:3839 msgid "BOM item notes" msgstr "" -#: part/models.py:3781 +#: part/models.py:3843 msgid "Checksum" msgstr "" -#: part/models.py:3781 +#: part/models.py:3843 msgid "BOM line checksum" msgstr "" -#: part/models.py:3786 templates/js/translated/table_filters.js:144 +#: part/models.py:3848 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3787 +#: part/models.py:3849 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3792 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3854 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3793 +#: part/models.py:3855 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3798 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3860 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3799 +#: part/models.py:3861 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3885 stock/models.py:577 +#: part/models.py:3947 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3894 part/models.py:3896 +#: part/models.py:3956 part/models.py:3958 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4012 +#: part/models.py:4074 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4033 +#: part/models.py:4095 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4046 +#: part/models.py:4108 msgid "Parent BOM item" msgstr "" -#: part/models.py:4054 +#: part/models.py:4116 msgid "Substitute part" msgstr "" -#: part/models.py:4069 +#: part/models.py:4131 msgid "Part 1" msgstr "" -#: part/models.py:4073 +#: part/models.py:4135 msgid "Part 2" msgstr "" -#: part/models.py:4073 +#: part/models.py:4135 msgid "Select Related Part" msgstr "" -#: part/models.py:4091 +#: part/models.py:4153 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4095 +#: part/models.py:4157 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6421,9 +6443,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6461,14 +6483,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6505,7 +6519,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6518,33 +6532,20 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6581,7 +6582,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6592,7 +6593,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6604,101 +6605,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6732,13 +6733,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6779,7 +6780,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6824,10 +6825,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6850,7 +6851,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6858,8 +6859,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6882,7 +6883,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6956,9 +6957,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6989,9 +6990,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7054,12 +7055,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7142,10 +7143,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "" @@ -7167,7 +7164,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7197,7 +7194,7 @@ msgid "InvenTree Notifications" msgstr "" #: plugin/builtin/integration/core_notifications.py:35 -msgid "Integrated outgoing notificaton methods" +msgid "Integrated outgoing notification methods" msgstr "" #: plugin/builtin/integration/core_notifications.py:40 @@ -7230,47 +7227,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 templates/InvenTree/settings/plugin_details.html:47 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7278,21 +7271,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7329,38 +7318,46 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + #: report/api.py:171 msgid "No valid objects provided to template" msgstr "" @@ -7374,91 +7371,91 @@ msgstr "" msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:160 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:166 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:173 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:179 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:266 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:273 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:294 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:302 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:303 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:364 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:365 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:406 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:407 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:441 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:479 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:517 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:570 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:571 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:575 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:612 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:613 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:620 msgid "Asset file description" msgstr "" @@ -7479,8 +7476,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7492,23 +7489,23 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" @@ -7521,12 +7518,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7552,8 +7549,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7621,31 +7618,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:580 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:587 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:613 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:622 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:640 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7656,7 +7653,7 @@ msgid "Stock Location" msgstr "" #: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7674,8 +7671,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7691,7 +7688,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7804,233 +7801,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8038,48 +8044,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8087,13 +8093,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8102,15 +8108,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:88 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8119,11 +8127,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:94 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8163,6 +8172,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8225,7 +8239,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8243,7 +8257,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8253,7 +8267,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8262,7 +8276,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8368,20 +8382,20 @@ msgstr "" msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:278 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:295 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:368 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:379 msgid "Link Barcode to Stock Location" msgstr "" @@ -8455,71 +8469,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8676,59 +8690,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8761,6 +8758,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8783,14 +8785,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8886,12 +8880,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8929,7 +8923,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9006,6 +9000,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9153,7 +9148,7 @@ msgid "Some languages are not complete" msgstr "" #: templates/InvenTree/settings/user_display.html:97 -msgid "Show only sufficent" +msgid "Show only sufficient" msgstr "" #: templates/InvenTree/settings/user_display.html:99 @@ -9220,44 +9215,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9451,14 +9450,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9503,7 +9494,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9517,7 +9508,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9589,23 +9580,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9662,7 +9665,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9720,743 +9723,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10464,31 +10561,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10513,6 +10610,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:253 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10530,23 +10633,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10566,6 +10669,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10667,7 +10778,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10716,7 +10827,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10732,370 +10843,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11136,234 +11287,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11392,941 +11543,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:249 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12358,51 +12541,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12585,50 +12768,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12661,34 +12800,34 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:236 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:244 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:247 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:247 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:249 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:251 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:251 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:253 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/fa/LC_MESSAGES/django.po b/InvenTree/locale/fa/LC_MESSAGES/django.po index e7e26d47ec..5c7e46ff66 100644 --- a/InvenTree/locale/fa/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:53\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Persian\n" "Language: fa_IR\n" @@ -25,19 +25,19 @@ msgstr "Address e API peida nashod" msgid "User does not have permission to view this model" msgstr "" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "جزئیات خطا را می توان در پنل مدیریت پیدا msgid "Enter date" msgstr "تاریخ را وارد کنید" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "یادداشت" @@ -81,47 +81,51 @@ msgstr "مقدار '{name}' در قالب الگو ظاهر قرار نمی گی msgid "Provided value does not match required pattern: " msgstr "مقدار ارائه شده با الگوی مورد نیاز مطابقت ندارد: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "رمز عبور را وارد کنید" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "گذرواژه جدید را وارد کنید" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "تأیید کلمه‌ی عبور" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "گذرواژه جدید را تایید کنید" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "رمز عبور قدیمی" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "ایمیل (دوباره وارد کنید)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "تایید آدرس ایمیل" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "هر بار باید همان ایمیل را تایپ کنید." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "آدرس ایمیل اصلی ارائه شده معتبر نیست." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "دامنه ایمیل ارائه شده تایید نشده است." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "" @@ -237,9 +241,9 @@ msgstr "" msgid "Missing external link" msgstr "" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "" @@ -247,29 +251,30 @@ msgstr "" msgid "Select file to attach" msgstr "" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "" @@ -277,13 +282,13 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "" @@ -384,7 +389,7 @@ msgid "parent" msgstr "" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "" @@ -420,12 +425,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "آدرس فایل تصویری از راه دور" msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "مرجع سفارش فروش" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "منبع محل" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "مقصد" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2297,8 +2294,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,10 +2303,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2317,10 +2314,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3872,6 +3947,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "هیچ عملیات کاربر-محوری، مشخص نشده است" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/fi/LC_MESSAGES/django.po b/InvenTree/locale/fi/LC_MESSAGES/django.po index a51d8d504e..cffb53a304 100644 --- a/InvenTree/locale/fi/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:53\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -19,25 +19,25 @@ msgstr "" #: InvenTree/api.py:65 msgid "API endpoint not found" -msgstr "API-rajapinta ei löydy" +msgstr "API-rajapintaa ei löydy" #: InvenTree/api.py:299 msgid "User does not have permission to view this model" -msgstr "Käyttäjän käyttöoikeustaso ei riitä kohteen tarkastelemiseen" +msgstr "Käyttäjän oikeudet eivät riitä kohteen tarkastelemiseen" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "Arvoa ei annettu" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "Annettu arvo ei ole kelvollinen numero" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "Annetulla arvolla on virheellinen yksikkö" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "Annettua arvoa ei voitu muuntaa määritetyksi yksiköksi" @@ -49,26 +49,26 @@ msgstr "Virheen tiedot löytyvät hallintapaneelista" msgid "Enter date" msgstr "Anna päivämäärä" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Merkinnät" @@ -81,57 +81,61 @@ msgstr "" msgid "Provided value does not match required pattern: " msgstr "" -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Anna salasana" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Anna uusi salasana" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Vahvista salasana" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Vahvista uusi salasana" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Vanha salasana" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Sähköposti (uudelleen)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Sähköpostiosoitteen vahvistus" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Sinun täytyy kirjoittaa sama sähköposti joka kerta." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Annettu ensisijainen sähköpostiosoite ei kelpaa." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Annetun sähköpostiosoitteen verkkotunnusta ei hyväksytä." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 -msgid "Invalid quantity provided" +#: InvenTree/forms.py:345 +msgid "Registration is disabled." msgstr "" +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 +msgid "Invalid quantity provided" +msgstr "Annettu määrä on virheellinen" + #: InvenTree/helpers.py:470 msgid "Empty serial number string" -msgstr "" +msgstr "Tyhjä sarjanumero" #: InvenTree/helpers.py:500 msgid "Duplicate serial" -msgstr "" +msgstr "Duplikaatti sarjanumero" #: InvenTree/helpers.py:533 InvenTree/helpers.py:568 #, python-brace-format @@ -150,12 +154,12 @@ msgstr "" #: InvenTree/helpers.py:618 msgid "No serial numbers found" -msgstr "" +msgstr "Sarjanumeroita ei löytynyt" #: InvenTree/helpers.py:621 #, python-brace-format msgid "Number of unique serial numbers ({s}) must match quantity ({q})" -msgstr "" +msgstr "Yksilöllisten sarjanumeroiden määrän ({s}) on vastattava määrää ({q})" #: InvenTree/helpers.py:751 msgid "Remove HTML tags from this value" @@ -183,7 +187,7 @@ msgstr "Kuva on liian iso" #: InvenTree/helpers_model.py:162 msgid "Image download exceeded maximum size" -msgstr "" +msgstr "Kuvan lataus ylitti enimmäiskoon" #: InvenTree/helpers_model.py:167 msgid "Remote server returned empty response" @@ -219,7 +223,7 @@ msgstr "" #: InvenTree/models.py:345 msgid "Reference field cannot be empty" -msgstr "" +msgstr "Viitekenttä ei voi olla tyhjä" #: InvenTree/models.py:352 msgid "Reference must match required pattern" @@ -227,7 +231,7 @@ msgstr "" #: InvenTree/models.py:383 msgid "Reference number is too large" -msgstr "" +msgstr "Viitenumero on liian suuri" #: InvenTree/models.py:465 msgid "Missing file" @@ -237,9 +241,9 @@ msgstr "Puuttuva tiedosto" msgid "Missing external link" msgstr "Puuttuva ulkoinen linkki" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Liite" @@ -247,29 +251,30 @@ msgstr "Liite" msgid "Select file to attach" msgstr "Valitse liitettävä tiedosto" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Linkki" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Linkki ulkoiseen URLiin" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Kommentti" @@ -277,19 +282,19 @@ msgstr "Kommentti" msgid "File comment" msgstr "Tiedoston kommentti" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Käyttäjä" #: InvenTree/models.py:507 msgid "upload date" -msgstr "" +msgstr "latauspäivä" #: InvenTree/models.py:529 msgid "Filename must not be empty" @@ -302,19 +307,19 @@ msgstr "Virheellinen liitteen hakemisto" #: InvenTree/models.py:548 #, python-brace-format msgid "Filename contains illegal character '{c}'" -msgstr "" +msgstr "Tiedostonimi sisältää kielletyn merkin '{c}'" #: InvenTree/models.py:551 msgid "Filename missing extension" -msgstr "" +msgstr "Tiedostonimen pääte puuttuu" #: InvenTree/models.py:558 msgid "Attachment with this filename already exists" -msgstr "" +msgstr "Samanniminen liite on jo olemassa" #: InvenTree/models.py:565 msgid "Error renaming file" -msgstr "" +msgstr "Virhe tiedoston uudelleennimeämisessä" #: InvenTree/models.py:604 msgid "Duplicate names cannot exist under the same parent" @@ -322,71 +327,71 @@ msgstr "" #: InvenTree/models.py:623 msgid "Invalid choice" -msgstr "" +msgstr "Virheellinen valinta" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" -msgstr "" +msgstr "Nimi" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" -msgstr "" +msgstr "Kuvaus" #: InvenTree/models.py:656 msgid "Description (optional)" -msgstr "" +msgstr "Kuvaus (valinnainen)" #: InvenTree/models.py:664 msgid "parent" msgstr "" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" -msgstr "" +msgstr "Polku" #: InvenTree/models.py:767 msgid "Markdown notes (optional)" @@ -394,7 +399,7 @@ msgstr "" #: InvenTree/models.py:794 msgid "Barcode Data" -msgstr "" +msgstr "Viivakoodin Tiedot" #: InvenTree/models.py:795 msgid "Third party barcode data" @@ -414,50 +419,50 @@ msgstr "" #: InvenTree/models.py:900 msgid "Server Error" -msgstr "" +msgstr "Palvelinvirhe" #: InvenTree/models.py:901 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" -msgstr "" +msgstr "Täytyy olla kelvollinen luku" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" -msgstr "" +msgstr "Valuutta" #: InvenTree/serializers.py:93 msgid "Select currency from available options" -msgstr "" +msgstr "Valitse valuutta käytettävissä olevista vaihtoehdoista" #: InvenTree/serializers.py:364 msgid "Filename" -msgstr "" +msgstr "Tiedostonimi" #: InvenTree/serializers.py:401 msgid "Invalid value" -msgstr "" +msgstr "Virheellinen arvo" #: InvenTree/serializers.py:423 msgid "Data File" -msgstr "" +msgstr "Datatiedosto" #: InvenTree/serializers.py:424 msgid "Select data file for upload" -msgstr "" +msgstr "Valitse lähetettävä datatiedosto" #: InvenTree/serializers.py:445 msgid "Unsupported file type" -msgstr "" +msgstr "Tiedostotyyppiä ei tueta" #: InvenTree/serializers.py:451 msgid "File is too large" -msgstr "" +msgstr "Tiedosto on liian suuri" #: InvenTree/serializers.py:472 msgid "No columns found in file" @@ -483,7 +488,7 @@ msgstr "Vaadittu sarake puuttuu: '{name}'" #: InvenTree/serializers.py:687 #, python-brace-format msgid "Duplicate column: '{col}'" -msgstr "" +msgstr "Duplikaatti sarake: '{col}'" #: InvenTree/serializers.py:713 #: templates/InvenTree/settings/mixins/urls.html:14 @@ -498,316 +503,319 @@ msgstr "Kuvatiedoston URL" msgid "Downloading images from remote URL is not enabled" msgstr "Kuvien lataaminen ei ole käytössä" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "tšekki" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "tanska" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "saksa" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "kreikka" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "englanti" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "espanja" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "espanja (Meksiko)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "farsi / persia" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" -msgstr "" +msgstr "suomi" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "ranska" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "heprea" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "unkari" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "italia" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "japani" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "korea" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "hollanti" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "norja" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "puola" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "portugali" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "portugali (Brasilia)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "venäjä" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "slovenia" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "ruotsi" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "thai" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "turkki" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "vietnam" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "kiina" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "InvenTree järjestelmän terveystarkastukset epäonnistui" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Odottaa" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Valmis" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Peruttu" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Kadonnut" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Palautettu" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "Kesken" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Lähetetty" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Huomiota tarvitaan" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Vahingoittunut" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Tuhottu" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Hylätty" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "Asetettu karanteeniin" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" -msgstr "" +msgstr "Varastotuote luotu" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" -msgstr "" +msgstr "Sijainti muutettu" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" -msgstr "" +msgstr "Varasto päivitetty" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" -msgstr "" +msgstr "Muokkaa käyttäjätietoja" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" -msgstr "" +msgstr "Aseta salasana" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" -msgstr "" +msgstr "Salasanat eivät täsmää" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" -msgstr "" +msgstr "Virheellinen salasana" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" -msgstr "" +msgstr "Järjestelmän tiedot" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" -msgstr "" +msgstr "Tietoja InvenTree:stä" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" -msgstr "" +msgstr "Osa" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" -msgstr "" +msgstr "Ulkoinen linkki" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" +msgstr "Määrä" + +#: build/models.py:1280 +msgid "Required quantity for build order" msgstr "" -#: build/models.py:1469 +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Varastotuote" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" -msgstr "" +msgstr "Sarjanumerot" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" -msgstr "" +msgstr "Sijainti" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" -msgstr "" +msgstr "Tila" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" -msgstr "" +msgstr "Ei sallittu" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1563,7 +1617,7 @@ msgstr "" #: templates/js/translated/barcode.js:479 #: templates/js/translated/barcode.js:484 msgid "Unlink Barcode" -msgstr "" +msgstr "Poista viivakoodin linkitys" #: build/templates/build/build_base.html:48 #: company/templates/company/supplier_part.html:44 @@ -1574,7 +1628,7 @@ msgstr "" #: stock/templates/stock/item_base.html:50 #: stock/templates/stock/location.html:60 msgid "Link Barcode" -msgstr "" +msgstr "Linkitä viivakoodi" #: build/templates/build/build_base.html:57 #: order/templates/order/order_base.html:46 @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" +msgstr "Myöhässä" + +#: build/templates/build/build_base.html:178 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "" - -#: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" -msgstr "" +msgstr "Prioriteetti" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Valmis" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "" +msgstr "Liitteet" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,18 +1923,14 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" -msgstr "" +msgstr "Tiedostomuotoa ei tueta: {fmt}" #: common/files.py:65 msgid "Error reading file (invalid encoding)" @@ -1943,15 +1950,15 @@ msgstr "" #: common/forms.py:13 msgid "File" -msgstr "" +msgstr "Tiedosto" #: common/forms.py:14 msgid "Select file to upload" -msgstr "" +msgstr "Valitse lähetettävä tiedosto" #: common/forms.py:28 msgid "{name.title()} File" -msgstr "" +msgstr "{name.title()} Tiedosto" #: common/forms.py:29 #, python-brace-format @@ -1960,21 +1967,11 @@ msgstr "" #: common/models.py:68 msgid "Updated" -msgstr "" +msgstr "Päivitetty" #: common/models.py:69 msgid "Timestamp of last update" -msgstr "" - -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" +msgstr "Viimeisimmän päivityksen aikaleima" #: common/models.py:105 msgid "Unique project code" @@ -2010,20 +2007,20 @@ msgstr "" #: common/models.py:844 msgid "No group" -msgstr "" +msgstr "Ei ryhmää" #: common/models.py:869 msgid "An empty domain is not allowed." -msgstr "" +msgstr "Verkkotunnus ei saa olla tyhjä." #: common/models.py:871 #, python-brace-format msgid "Invalid domain name: {domain}" -msgstr "" +msgstr "Virheellinen verkkotunnus: {domain}" #: common/models.py:928 msgid "Restart required" -msgstr "" +msgstr "Uudelleenkäynnistys vaaditaan" #: common/models.py:929 msgid "A setting has been changed which requires a server restart" @@ -2055,11 +2052,11 @@ msgstr "" #: common/models.py:957 company/models.py:101 company/models.py:102 msgid "Company name" -msgstr "" +msgstr "Yrityksen nimi" #: common/models.py:958 msgid "Internal company name" -msgstr "" +msgstr "Yrityksen sisäinen nimi" #: common/models.py:963 msgid "Base URL" @@ -2071,7 +2068,7 @@ msgstr "" #: common/models.py:971 msgid "Default Currency" -msgstr "" +msgstr "Oletusvaluutta" #: common/models.py:972 msgid "Select base currency for pricing calculations" @@ -2126,22 +2123,22 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" -msgstr "" +msgstr "päivää" #: common/models.py:1032 msgid "Automatic Backup" -msgstr "" +msgstr "Automaattinen varmuuskopionti" #: common/models.py:1033 msgid "Enable automatic backup of database and media files" -msgstr "" +msgstr "Ota käyttöön tietokannan ja mediatiedostojen automaattinen varmuuskopiointi" #: common/models.py:1039 msgid "Auto Backup Interval" -msgstr "" +msgstr "Automaattisen varmuuskopioinnin aikaväli" #: common/models.py:1040 msgid "Specify number of days between automated backup events" @@ -2173,7 +2170,7 @@ msgstr "" #: common/models.py:1083 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" -msgstr "" +msgstr "Viivakoodituki" #: common/models.py:1084 msgid "Enable barcode scanner support" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,25 +2277,25 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" -msgstr "" +msgstr "Komponentti" #: common/models.py:1177 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" -msgstr "" +msgstr "Ostettavissa" #: common/models.py:1184 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,21 +2303,21 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" -msgstr "" +msgstr "Seurattavissa" #: common/models.py:1198 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" -msgstr "" +msgstr "Sisäiset hinnat" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" -msgstr "" +msgstr "Sisäisen hinnan ohitus" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" -msgstr "" +msgstr "Sivun koko" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" -msgstr "" +msgstr "Täytä sarjanumerot automaattisesti" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" -msgstr "" +msgid "Enable password forgot" +msgstr "Salli salasananpalautus" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" -msgstr "" +msgid "Enable registration" +msgstr "Salli rekisteröinti" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" -msgstr "" +msgid "Enable SSO" +msgstr "Salli SSO" #: common/models.py:1564 -msgid "Require user to supply mail on signup" -msgstr "" +msgid "Enable SSO on the login pages" +msgstr "Salli SSO kirjautumissivuilla" #: common/models.py:1570 -msgid "Auto-fill SSO users" -msgstr "" +msgid "Enable SSO registration" +msgstr "Salli SSO rekisteröinti" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" -msgstr "" +msgid "Email required" +msgstr "Sähköposti vaaditaan" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" -msgstr "" +msgid "Mail twice" +msgstr "Sähköpostiosoite kahdesti" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" -msgstr "" +msgid "Password twice" +msgstr "Salasana kahdesti" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" -msgstr "" +msgid "Allowed domains" +msgstr "Sallitut verkkotunnukset" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" +msgstr "Pakota MFA" + +#: common/models.py:1620 +msgid "Users must use multifactor security." +msgstr "" + +#: common/models.py:1626 +msgid "Check plugins on startup" +msgstr "" + +#: common/models.py:1627 msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:1620 -msgid "Check plugin signatures" -msgstr "" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" -msgstr "" +msgstr "Näytä uutiset" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" -msgstr "" +msgstr "Näytä uutiset kotisivulla" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" -msgstr "" +msgstr "Hinta" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" -msgstr "" +msgstr "Aktiivinen" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" -msgstr "" +msgstr "Salaisuus" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" -msgstr "" +msgstr "Isäntä" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" -msgstr "" +msgstr "Otsikko" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" -msgstr "" +msgstr "Julkaistu" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" -msgstr "" +msgstr "Julkaisija" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" -msgstr "" +msgstr "Yhteenveto" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3418,16 +3408,16 @@ msgstr "" #: templates/hover_image.html:7 templates/hover_image.html:9 #: templates/modals.html:6 msgid "Image" -msgstr "" +msgstr "Kuva" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" -msgstr "" +msgstr "Kuvatiedosto" #: common/notifications.py:291 #, python-brace-format msgid "New {verbose_name}" -msgstr "" +msgstr "Uusi {verbose_name}" #: common/notifications.py:293 msgid "A new order has been created and assigned to you" @@ -3454,7 +3444,7 @@ msgstr "" #: part/templates/part/import_wizard/part_upload.html:58 part/views.py:108 #: templates/patterns/wizard/upload.html:37 msgid "Upload File" -msgstr "" +msgstr "Lataa tiedosto" #: common/views.py:86 order/templates/order/order_wizard/match_fields.html:52 #: order/views.py:119 @@ -3485,11 +3475,11 @@ msgstr "" #: templates/patterns/wizard/match_fields.html:26 #: templates/patterns/wizard/upload.html:35 msgid "Previous Step" -msgstr "" +msgstr "Edellinen vaihe" #: company/models.py:106 msgid "Company description" -msgstr "" +msgstr "Yrityksen kuvaus" #: company/models.py:107 msgid "Description of the company" @@ -3497,311 +3487,396 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" -msgstr "" +msgstr "Sivusto" #: company/models.py:114 msgid "Company website URL" -msgstr "" +msgstr "Yrityksen sivuston URL" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" +#: company/models.py:118 +msgid "Phone number" +msgstr "Puhelinnumero" #: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 -msgid "Phone number" -msgstr "" - -#: company/models.py:123 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" -msgstr "" +msgstr "Sähköposti" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" -msgstr "" +msgstr "Kontakti" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" -msgstr "" +msgstr "on asiakas" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" -msgstr "" +msgstr "on toimittaja" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" -msgstr "" +msgstr "on valmistaja" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" +msgstr "Yritys" + +#: company/models.py:324 +msgid "Company already has a primary address" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" -msgstr "" +msgstr "Valmistaja" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" -msgstr "" +msgstr "Valitse valmistaja" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" -msgstr "" +msgstr "Valmistajan osanumero" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" -msgstr "" +msgstr "Arvo" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" -msgstr "" +msgstr "Toimittaja" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" -msgstr "" +msgstr "Valitse toimittaja" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" -msgstr "" +msgstr "SKU" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" -msgstr "" +msgstr "Toimittajan varastonimike" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" -msgstr "" +msgstr "Valitse valmistajan osa" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" -msgstr "" +msgstr "Muistiinpano" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" -msgstr "" +msgstr "Saatavilla" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3811,21 +3886,21 @@ msgstr "" #: company/templates/company/company_base.html:33 msgid "Edit company information" -msgstr "" +msgstr "Muokkaa yrityksen tietoja" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" -msgstr "" +msgstr "Muokkaa yritystä" #: company/templates/company/company_base.html:38 msgid "Delete company" -msgstr "" +msgstr "Poista yritys" #: company/templates/company/company_base.html:39 #: company/templates/company/company_base.html:163 msgid "Delete Company" -msgstr "" +msgstr "Poista yritys" #: company/templates/company/company_base.html:48 #: company/templates/company/manufacturer_part.html:51 @@ -3837,7 +3912,7 @@ msgstr "" #: report/templates/report/inventree_test_report_base.html:84 #: report/templates/report/inventree_test_report_base.html:163 msgid "Part image" -msgstr "" +msgstr "Osan kuva" #: company/templates/company/company_base.html:56 #: part/templates/part/part_thumb.html:12 @@ -3854,32 +3929,39 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" -msgstr "" +msgstr "Asiakas" #: company/templates/company/company_base.html:112 msgid "Uses default currency" -msgstr "" +msgstr "Käyttää oletusvaluuttaa" + +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Osoite" #: company/templates/company/company_base.html:126 msgid "Phone" -msgstr "" +msgstr "Puhelin" #: company/templates/company/company_base.html:206 #: part/templates/part/part_base.html:530 msgid "Remove Image" -msgstr "" +msgstr "Poista kuva" #: company/templates/company/company_base.html:207 msgid "Remove associated image from this company" @@ -3890,7 +3972,7 @@ msgstr "" #: templates/InvenTree/settings/user.html:88 #: templates/InvenTree/settings/user_sso.html:43 msgid "Remove" -msgstr "" +msgstr "Poista" #: company/templates/company/company_base.html:238 #: part/templates/part/part_base.html:562 @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4244,671 +4305,668 @@ msgstr "" #: company/views.py:33 msgid "New Supplier" -msgstr "" +msgstr "Uusi toimittaja" #: company/views.py:39 msgid "New Manufacturer" -msgstr "" +msgstr "Uusi valmistaja" #: company/views.py:44 templates/InvenTree/search.html:210 #: templates/navbar.html:60 msgid "Customers" -msgstr "" +msgstr "Asiakkaat" #: company/views.py:45 msgid "New Customer" -msgstr "" +msgstr "Uusi asiakas" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" -msgstr "" +msgstr "Yritykset" #: company/views.py:53 msgid "New Company" -msgstr "" +msgstr "Uusi yritys" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" -msgstr "" +msgstr "Käytössä" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" -msgstr "" +msgstr "Leveys [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" -msgstr "" +msgstr "Korkeus [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" -msgstr "" - -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" +msgstr "Suodattimet" #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 #: label/templates/label/stocklocation/qr_and_text.html:31 #: templates/qr_code.html:7 msgid "QR code" -msgstr "" +msgstr "QR-koodi" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" -msgstr "" +msgstr "Hinta yhteensä" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" -msgstr "" +msgstr "Tilauksen valuutta" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 -msgid "Order reference" +#: order/models.py:280 +msgid "Company address for this order" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:373 order/models.py:779 +msgid "Order reference" +msgstr "Tilauksen viite" + +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " -msgstr "" +msgstr "Asiakkaan viite " -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" -msgstr "" +msgstr "Vastaanotettu" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" -msgstr "" +msgstr "Seurantakoodi" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" -msgstr "" +msgstr "Laskunumero" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" -msgstr "" +msgstr "Viivakoodi" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4933,17 +4991,17 @@ msgstr "" #: order/templates/order/return_order_base.html:77 #: order/templates/order/sales_order_base.html:76 msgid "Edit order" -msgstr "" +msgstr "Muokkaa tilausta" #: order/templates/order/order_base.html:68 #: order/templates/order/return_order_base.html:79 #: order/templates/order/sales_order_base.html:78 msgid "Cancel order" -msgstr "" +msgstr "Peru tilaus" #: order/templates/order/order_base.html:73 msgid "Duplicate order" -msgstr "" +msgstr "Kopioi tilaus" #: order/templates/order/order_base.html:79 #: order/templates/order/order_base.html:80 @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" -msgstr "" +msgstr "Kokonaiskustannukset" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" -msgstr "" +msgstr "Kokonaiskustannuksia ei voitu laskea" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5068,7 +5118,7 @@ msgstr "" #: part/templates/part/import_wizard/match_fields.html:42 #: templates/patterns/wizard/match_fields.html:41 msgid "Remove column" -msgstr "" +msgstr "Poista sarake" #: order/templates/order/order_wizard/match_fields.html:60 #: part/templates/part/import_wizard/ajax_match_fields.html:53 @@ -5083,16 +5133,16 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" -msgstr "" +msgstr "Poista rivi" #: order/templates/order/order_wizard/match_parts.html:12 #: part/templates/part/import_wizard/ajax_match_references.html:12 @@ -5104,7 +5154,7 @@ msgstr "" #: part/templates/part/import_wizard/ajax_match_references.html:21 #: part/templates/part/import_wizard/match_references.html:28 msgid "Row" -msgstr "" +msgstr "Rivi" #: order/templates/order/order_wizard/match_parts.html:29 msgid "Select Supplier Part" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" -msgstr "" +msgstr "Toiminnot" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5297,7 +5341,7 @@ msgstr "" #: order/views.py:399 msgid "Price not found" -msgstr "" +msgstr "Hintaa ei löytynyt" #: order/views.py:402 #, python-brace-format @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,22 +5367,23 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" -msgstr "" +msgstr "Avainsanat" #: part/admin.py:42 part/admin.py:192 part/tasks.py:291 msgid "Category ID" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" -msgstr "" +msgstr "Oletus avainsanat" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" -msgstr "" +msgstr "Kuvake" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" -msgstr "" +msgstr "Kuvake (valinnainen)" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" -msgstr "" +msgstr "Kategoria" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" -msgstr "" +msgstr "Päivämäärä" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" -msgstr "" +msgstr "Muut merkinnät" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" -msgstr "" +msgstr "Raportti" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" -msgstr "" +msgstr "Valmistajan osanumero" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" -msgstr "" +msgstr "Luo raportti" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6486,25 +6512,25 @@ msgstr "" #: part/templates/part/category.html:59 msgid "Edit category" -msgstr "" +msgstr "Muokkaa kategoriaa" #: part/templates/part/category.html:60 msgid "Edit Category" -msgstr "" +msgstr "Muokkaa kategoriaa" #: part/templates/part/category.html:64 msgid "Delete category" -msgstr "" +msgstr "Poista kategoria" #: part/templates/part/category.html:65 msgid "Delete Category" -msgstr "" +msgstr "Poista kategoria" #: part/templates/part/category.html:101 msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6515,35 +6541,23 @@ msgstr "" #: part/templates/part/category.html:164 msgid "Create new part" -msgstr "" +msgstr "Luo uusi osa" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" -msgstr "" +msgstr "Uusi osa" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,21 +6792,21 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" #: part/templates/part/part_base.html:96 msgid "Duplicate part" -msgstr "" +msgstr "Monista osa" #: part/templates/part/part_base.html:99 msgid "Edit part" -msgstr "" +msgstr "Muokkaa osaa" #: part/templates/part/part_base.html:102 msgid "Delete part" -msgstr "" +msgstr "Poista osa" #: part/templates/part/part_base.html:121 msgid "Part is a template part (variants can be made from this part)" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7227,49 +7237,45 @@ msgstr "" #: plugin/builtin/integration/core_notifications.py:163 msgid "Open link" -msgstr "" +msgstr "Avaa linkki" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 -msgid "Key" -msgstr "" - #: plugin/models.py:34 +msgid "Key" +msgstr "Avain" + +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7314,11 +7316,11 @@ msgstr "" #: plugin/samples/integration/sample.py:49 msgid "Numerical" -msgstr "" +msgstr "Numeerinen" #: plugin/samples/integration/sample.py:50 msgid "A numerical setting" -msgstr "" +msgstr "Numeerinen asetus" #: plugin/samples/integration/sample.py:55 msgid "Choice Setting" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,24 +7505,28 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" +msgstr "Sarjanumero" + +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" msgstr "" #: report/templates/report/inventree_test_report_base.html:21 @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,10 +7569,10 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" -msgstr "" +msgstr "Sarjanumero" #: stock/admin.py:39 stock/admin.py:108 msgid "Location ID" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8205,26 +8240,26 @@ msgstr "" #: stock/templates/stock/item_base.html:318 msgid "previous page" -msgstr "" +msgstr "edellinen sivu" #: stock/templates/stock/item_base.html:318 msgid "Navigate to previous serial number" -msgstr "" +msgstr "Siirry edeltävään sarjanumeroon" #: stock/templates/stock/item_base.html:327 msgid "next page" -msgstr "" +msgstr "seuraava sivu" #: stock/templates/stock/item_base.html:327 msgid "Navigate to next serial number" -msgstr "" +msgstr "Siirry seuraavaan sarjanumeroon" #: stock/templates/stock/item_base.html:341 msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8283,7 +8318,7 @@ msgstr "" #: stock/templates/stock/item_base.html:615 msgid "Warning" -msgstr "" +msgstr "Varoitus" #: stock/templates/stock/item_base.html:616 msgid "This action cannot be easily undone" @@ -8329,64 +8364,68 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" -msgstr "" +msgstr "Muokkaa sijaintia" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" -msgstr "" +msgstr "Poista sijainti" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" -msgstr "" +msgstr "Uusi sijainti" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" #: stock/templates/stock/stock_app_base.html:16 msgid "Loading..." -msgstr "" +msgstr "Ladataan..." #: stock/templates/stock/stock_sidebar.html:5 msgid "Stock Tracking" @@ -8423,11 +8462,11 @@ msgstr "" #: templates/404.html:6 templates/404.html:12 msgid "Page Not Found" -msgstr "" +msgstr "Sivua ei löydy" #: templates/404.html:15 msgid "The requested page does not exist" -msgstr "" +msgstr "Pyydettyä sivua ei ole olemassa" #: templates/500.html:6 templates/500.html:12 msgid "Internal Server Error" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8571,7 +8610,7 @@ msgstr "" #: templates/InvenTree/notifications/sidebar.html:10 msgid "History" -msgstr "" +msgstr "Historia" #: templates/InvenTree/search.html:8 msgid "Search Results" @@ -8618,7 +8657,7 @@ msgstr "" #: templates/InvenTree/settings/mixins/settings.html:5 #: templates/InvenTree/settings/settings.html:12 templates/navbar.html:144 msgid "Settings" -msgstr "" +msgstr "Asetukset" #: templates/InvenTree/settings/mixins/urls.html:5 msgid "URLs" @@ -8631,12 +8670,12 @@ msgstr "" #: templates/InvenTree/settings/mixins/urls.html:23 msgid "Open in new tab" -msgstr "" +msgstr "Avaa uudessa välilehdessä" #: templates/InvenTree/settings/notifications.html:9 #: templates/InvenTree/settings/user_notifications.html:9 msgid "Notification Settings" -msgstr "" +msgstr "Ilmoitusasetukset" #: templates/InvenTree/settings/notifications.html:18 msgid "Slug" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8921,7 +8936,7 @@ msgstr "" #: templates/InvenTree/settings/sidebar.html:9 msgid "Account" -msgstr "" +msgstr "Tili" #: templates/InvenTree/settings/sidebar.html:11 msgid "Display" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -8949,7 +8964,7 @@ msgstr "" #: templates/InvenTree/settings/sidebar.html:27 templates/stats.html:9 msgid "Server" -msgstr "" +msgstr "Palvelin" #: templates/InvenTree/settings/sidebar.html:39 msgid "Labels" @@ -8982,19 +8997,19 @@ msgstr "" #: templates/js/translated/pricing.js:628 templates/notes_buttons.html:3 #: templates/notes_buttons.html:4 msgid "Edit" -msgstr "" +msgstr "Muokkaa" #: templates/InvenTree/settings/user.html:33 msgid "Username" -msgstr "" +msgstr "Käyttäjätunnus" #: templates/InvenTree/settings/user.html:37 msgid "First Name" -msgstr "" +msgstr "Etunimi" #: templates/InvenTree/settings/user.html:41 msgid "Last Name" -msgstr "" +msgstr "Sukunimi" #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" @@ -9002,19 +9017,20 @@ msgstr "" #: templates/InvenTree/settings/user.html:76 msgid "Verified" -msgstr "" +msgstr "Vahvistettu" #: templates/InvenTree/settings/user.html:78 msgid "Unverified" -msgstr "" +msgstr "Vahvistamaton" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" -msgstr "" +msgstr "Ensisijainen" #: templates/InvenTree/settings/user.html:86 msgid "Make Primary" -msgstr "" +msgstr "Aseta ensisijaiseksi" #: templates/InvenTree/settings/user.html:87 msgid "Re-send Verification" @@ -9022,7 +9038,7 @@ msgstr "" #: templates/InvenTree/settings/user.html:96 msgid "Warning:" -msgstr "" +msgstr "Varoitus:" #: 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." @@ -9030,11 +9046,11 @@ msgstr "" #: templates/InvenTree/settings/user.html:105 msgid "Add Email Address" -msgstr "" +msgstr "Lisää sähköpostiosoite" #: templates/InvenTree/settings/user.html:110 msgid "Add Email" -msgstr "" +msgstr "Lisää sähköposti" #: templates/InvenTree/settings/user.html:120 msgid "Multifactor" @@ -9046,11 +9062,11 @@ msgstr "" #: templates/InvenTree/settings/user.html:135 msgid "TOTP" -msgstr "" +msgstr "TOTP" #: templates/InvenTree/settings/user.html:141 msgid "Static" -msgstr "" +msgstr "Staattinen" #: templates/InvenTree/settings/user.html:150 msgid "Multifactor authentication is not configured for your account" @@ -9070,15 +9086,15 @@ msgstr "" #: templates/InvenTree/settings/user.html:168 msgid "Active Sessions" -msgstr "" +msgstr "Aktiiviset istunnot" #: templates/InvenTree/settings/user.html:174 msgid "Log out active sessions (except this one)" -msgstr "" +msgstr "Kirjaa ulos aktiiviset istunnot (paitsi tämä)" #: templates/InvenTree/settings/user.html:175 msgid "Log Out Active Sessions" -msgstr "" +msgstr "Kirjaa ulos aktiiviset istunnot" #: templates/InvenTree/settings/user.html:184 msgid "unknown on unknown" @@ -9090,11 +9106,11 @@ msgstr "" #: templates/InvenTree/settings/user.html:189 msgid "IP Address" -msgstr "" +msgstr "IP-osoite" #: templates/InvenTree/settings/user.html:190 msgid "Device" -msgstr "" +msgstr "Laite" #: templates/InvenTree/settings/user.html:191 msgid "Last Activity" @@ -9124,19 +9140,19 @@ msgstr "" #: templates/InvenTree/settings/user_display.html:39 msgid "Select theme" -msgstr "" +msgstr "Valitse teema" #: templates/InvenTree/settings/user_display.html:50 msgid "Set Theme" -msgstr "" +msgstr "Aseta teema" #: templates/InvenTree/settings/user_display.html:58 msgid "Language Settings" -msgstr "" +msgstr "Kieliasetukset" #: templates/InvenTree/settings/user_display.html:67 msgid "Select language" -msgstr "" +msgstr "Valitse kieli" #: templates/InvenTree/settings/user_display.html:83 #, python-format @@ -9149,11 +9165,11 @@ msgstr "" #: templates/InvenTree/settings/user_display.html:92 msgid "Set Language" -msgstr "" +msgstr "Aseta kieli" #: templates/InvenTree/settings/user_display.html:95 msgid "Some languages are not complete" -msgstr "" +msgstr "Jotkin kielet eivät ole valmiita" #: templates/InvenTree/settings/user_display.html:97 msgid "Show only sufficient" @@ -9213,56 +9229,60 @@ msgstr "" #: templates/about.html:14 msgid "Development Version" -msgstr "" +msgstr "Kehitysversio" #: templates/about.html:17 msgid "Up to Date" -msgstr "" +msgstr "Ajantasalla" #: templates/about.html:19 msgid "Update Available" +msgstr "Päivitys saatavilla" + +#: templates/about.html:43 +msgid "Commit Branch" msgstr "" -#: templates/about.html:42 +#: templates/about.html:49 msgid "InvenTree Documentation" -msgstr "" +msgstr "InvenTree dokumentaatio" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" -msgstr "" +msgstr "API-versio" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" -msgstr "" +msgstr "Python-versio" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" -msgstr "" +msgstr "Django-versio" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" -msgstr "" +msgstr "Mobiilisovellus" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" -msgstr "" +msgstr "kopioi leikepöydälle" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" -msgstr "" +msgstr "kopioi versiotiedot" #: templates/account/base.html:66 templates/navbar.html:17 msgid "InvenTree logo" @@ -9271,7 +9291,7 @@ msgstr "" #: templates/account/email_confirm.html:6 #: templates/account/email_confirm.html:9 msgid "Confirm Email Address" -msgstr "" +msgstr "Vahvista sähköpostiosoite" #: templates/account/email_confirm.html:15 #, python-format @@ -9280,7 +9300,7 @@ msgstr "" #: templates/account/email_confirm.html:21 templates/js/translated/forms.js:726 msgid "Confirm" -msgstr "" +msgstr "Vahvista" #: templates/account/email_confirm.html:29 #, python-format @@ -9290,7 +9310,7 @@ msgstr "" #: templates/account/login.html:6 templates/account/login.html:17 #: templates/account/login.html:38 templates/socialaccount/login.html:5 msgid "Sign In" -msgstr "" +msgstr "Kirjaudu sisään" #: templates/account/login.html:21 msgid "Not a member?" @@ -9304,7 +9324,7 @@ msgstr "" #: templates/account/login.html:45 msgid "Forgot Password?" -msgstr "" +msgstr "Unohtuiko salasana?" #: templates/account/login.html:53 msgid "or log in with" @@ -9313,7 +9333,7 @@ msgstr "" #: templates/account/logout.html:5 templates/account/logout.html:8 #: templates/account/logout.html:20 msgid "Sign Out" -msgstr "" +msgstr "Kirjaudu ulos" #: templates/account/logout.html:10 msgid "Are you sure you want to sign out?" @@ -9352,7 +9372,7 @@ msgstr "" #: templates/account/password_reset_from_key.html:18 msgid "Change password" -msgstr "" +msgstr "Vaihda salasana" #: templates/account/password_reset_from_key.html:22 msgid "Your password is now changed." @@ -9416,7 +9436,7 @@ msgstr "" #: templates/allauth_2fa/remove.html:9 msgid "Are you sure?" -msgstr "" +msgstr "Oletko varma?" #: templates/allauth_2fa/remove.html:17 msgid "Disable 2FA" @@ -9428,7 +9448,7 @@ msgstr "" #: templates/allauth_2fa/setup.html:10 msgid "Step 1" -msgstr "" +msgstr "Vaihe 1" #: templates/allauth_2fa/setup.html:14 msgid "Scan the QR code below with a token generator of your choice (for instance Google Authenticator)." @@ -9436,7 +9456,7 @@ msgstr "" #: templates/allauth_2fa/setup.html:23 msgid "Step 2" -msgstr "" +msgstr "Vaihe 2" #: templates/allauth_2fa/setup.html:27 msgid "Input a token generated by the app:" @@ -9448,19 +9468,11 @@ msgstr "" #: templates/attachment_button.html:4 templates/js/translated/attachment.js:70 msgid "Add Link" -msgstr "" +msgstr "Lisää linkki" #: templates/attachment_button.html:7 templates/js/translated/attachment.js:48 msgid "Add Attachment" -msgstr "" - -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" +msgstr "Lisää liite" #: templates/barcode_data.html:5 msgid "Barcode Identifier" @@ -9468,7 +9480,7 @@ msgstr "" #: templates/base.html:102 msgid "Server Restart Required" -msgstr "" +msgstr "Palvelimen uudelleenkäynnistys vaaditaan" #: templates/base.html:105 msgid "A configuration option has been changed which requires a server restart" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9590,27 +9602,39 @@ msgstr "" #: templates/js/translated/attachment.js:114 msgid "All selected attachments will be deleted" +msgstr "Kaikki liitteet poistetaan" + +#: templates/js/translated/attachment.js:129 +msgid "Delete Attachments" +msgstr "Poista liitteet" + +#: templates/js/translated/attachment.js:205 +msgid "Delete attachments" msgstr "" -#: templates/js/translated/attachment.js:255 +#: templates/js/translated/attachment.js:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" -msgstr "" +msgstr "Liitteitä ei löytynyt" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" -msgstr "" +msgstr "Muokkaa liitettä" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" -msgstr "" +msgstr "Muokkaa liitettä" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" -msgstr "" +msgstr "Poista liite" #: templates/js/translated/barcode.js:43 msgid "Scan barcode data here using barcode scanner" @@ -9651,7 +9675,7 @@ msgstr "" #: templates/js/translated/barcode.js:420 templates/navbar.html:114 msgid "Scan Barcode" -msgstr "" +msgstr "Skannaa viivakoodi" #: templates/js/translated/barcode.js:440 msgid "No URL in response" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,777 +9747,871 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" -msgstr "" +msgstr "Sulje" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" -msgstr "" +msgstr "Valitse" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" -msgstr "" +msgstr "Edistyminen" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" -msgstr "" +msgstr "Lisää valmistaja" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" -msgstr "" +msgstr "Lisää toimittaja" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" -msgstr "" +msgstr "Lisää uusi yritys" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" -msgstr "" +msgstr "Luo uusi yhteystieto" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" -msgstr "" +msgstr "Muokkaa yhteystietoa" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" -msgstr "" +msgstr "Poista yhteystiedot" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" -msgstr "" +msgstr "Yhteystietoja ei löytynyt" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" -msgstr "" +msgstr "Puhelinnumero" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" -msgstr "" +msgstr "Sähköposti" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" +msgstr "Poista yhteystieto" + +#: templates/js/translated/company.js:886 +msgid "Create New Address" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" -msgstr "" +msgstr "Päivitetty viimeksi" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" -msgstr "" +msgstr "tosi" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" -msgstr "" +msgstr "epätosi" #: templates/js/translated/filters.js:214 msgid "Select filter" -msgstr "" +msgstr "Valitse suodatin" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" -msgstr "" +msgstr "Tulosta raportteja" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" -msgstr "" +msgstr "Luo suodatin" #: templates/js/translated/forms.js:369 templates/js/translated/forms.js:384 #: templates/js/translated/forms.js:398 templates/js/translated/forms.js:412 @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Poista" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,49 +10657,57 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" #: templates/js/translated/helpers.js:77 msgid "YES" -msgstr "" +msgstr "KYLLÄ" #: templates/js/translated/helpers.js:80 msgid "NO" -msgstr "" +msgstr "EI" #: templates/js/translated/helpers.js:93 msgid "True" -msgstr "" +msgstr "Tosi" #: templates/js/translated/helpers.js:94 msgid "False" +msgstr "Epätosi" + +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" msgstr "" #: templates/js/translated/label.js:58 msgid "Select Printer" -msgstr "" +msgstr "Valitse tulostin" #: templates/js/translated/label.js:62 msgid "Export to PDF" -msgstr "" +msgstr "Vie PDF-muotoon" #: templates/js/translated/label.js:114 msgid "selected" @@ -10608,13 +10740,13 @@ msgstr "" #: templates/js/translated/modals.js:55 templates/js/translated/modals.js:152 #: templates/js/translated/modals.js:677 msgid "Cancel" -msgstr "" +msgstr "Peruuta" #: templates/js/translated/modals.js:60 templates/js/translated/modals.js:151 #: templates/js/translated/modals.js:745 templates/js/translated/modals.js:1053 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" -msgstr "" +msgstr "Lähetä" #: templates/js/translated/modals.js:150 msgid "Form Title" @@ -10622,7 +10754,7 @@ msgstr "" #: templates/js/translated/modals.js:439 msgid "Waiting for server..." -msgstr "" +msgstr "Odotetaan palvelinta..." #: templates/js/translated/modals.js:590 msgid "Show Error Information" @@ -10670,29 +10802,29 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" #: templates/js/translated/notification.js:51 msgid "Age" -msgstr "" +msgstr "Ikä" #: templates/js/translated/notification.js:64 msgid "Notification" -msgstr "" +msgstr "Ilmoitus" #: templates/js/translated/notification.js:223 msgid "Mark as unread" -msgstr "" +msgstr "Merkitse lukemattomaksi" #: templates/js/translated/notification.js:227 msgid "Mark as read" -msgstr "" +msgstr "Merkitse luetuksi" #: templates/js/translated/notification.js:253 msgid "No unread notifications" -msgstr "" +msgstr "Ei lukemattomia ilmoituksia" #: templates/js/translated/notification.js:295 templates/notifications.html:12 msgid "Notifications will load here" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" -msgstr "" +msgstr "Luo osa" + +#: templates/js/translated/part.js:409 +msgid "Create another part after this one" +msgstr "Luo toinen osa tämän jälkeen" #: templates/js/translated/part.js:410 -msgid "Create another part after this one" -msgstr "" - -#: templates/js/translated/part.js:411 msgid "Part created successfully" -msgstr "" +msgstr "Osan luonti onnistui" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" -msgstr "" +msgstr "Muokkaa osaa" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" -msgstr "" +msgstr "Poista osa" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "Aseta kategoria" + +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2349 +msgid "No category" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" -msgstr "" +msgstr "Lisää sarjanumeroita" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" -msgstr "" +msgstr "Sarjanumerot" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" -msgstr "" +msgstr "Skannaa tuotteen viivakoodi" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11393,943 +11565,975 @@ msgstr "" #: templates/js/translated/return_order.js:60 #: templates/js/translated/sales_order.js:86 msgid "Add Customer" -msgstr "" +msgstr "Lisää asiakas" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" -msgstr "" +msgstr "Virheellinen asiakas" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" -msgstr "" +msgstr "Lasku" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" -msgstr "" +msgstr "Syötä sarjanumero" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" -msgstr "" +msgstr "Syötä sarjanumero" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" -msgstr "" +msgstr "Siirrä" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" -msgstr "" +msgstr "Sarjanumero" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" -msgstr "" +msgstr "Tuotannossa" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,69 +12565,69 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" -msgstr "" +msgstr "Kaikki" #: templates/navbar.html:45 msgid "Buy" -msgstr "" +msgstr "Osta" #: templates/navbar.html:57 msgid "Sell" -msgstr "" +msgstr "Myy" #: templates/navbar.html:121 msgid "Show Notifications" -msgstr "" +msgstr "Näytä ilmoitukset" #: templates/navbar.html:124 msgid "New Notifications" -msgstr "" +msgstr "Uudet ilmoitukset" #: templates/navbar.html:142 users/models.py:36 msgid "Admin" @@ -12431,11 +12635,11 @@ msgstr "" #: templates/navbar.html:145 msgid "Logout" -msgstr "" +msgstr "Kirjaudu ulos" #: templates/notes_buttons.html:6 templates/notes_buttons.html:7 msgid "Save" -msgstr "" +msgstr "Tallenna" #: templates/notifications.html:9 msgid "Show all notifications and history" @@ -12503,11 +12707,11 @@ msgstr "" #: templates/socialaccount/login.html:24 msgid "Continue" -msgstr "" +msgstr "Jatka" #: templates/socialaccount/login.html:29 msgid "Invalid SSO Provider" -msgstr "" +msgstr "Virheellinen SSO tarjoaja" #: templates/socialaccount/login.html:31 msgid "The selected SSO provider is invalid, or has not been correctly configured" @@ -12533,7 +12737,7 @@ msgstr "" #: templates/stats.html:18 msgid "Database" -msgstr "" +msgstr "Tietokanta" #: templates/stats.html:26 msgid "Server is running in debug mode" @@ -12541,7 +12745,7 @@ msgstr "" #: templates/stats.html:33 msgid "Docker Mode" -msgstr "" +msgstr "Docker-tila" #: templates/stats.html:34 msgid "Server is deployed using docker" @@ -12561,11 +12765,11 @@ msgstr "" #: templates/stats.html:52 msgid "Server status" -msgstr "" +msgstr "Palvelimen tila" #: templates/stats.html:55 msgid "Healthy" -msgstr "" +msgstr "Terve" #: templates/stats.html:57 msgid "Issues detected" @@ -12581,117 +12785,73 @@ msgstr "" #: templates/stats.html:75 msgid "Email Settings" -msgstr "" +msgstr "Sähköpostiasetukset" #: templates/stats.html:78 msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" -msgstr "" +msgstr "Kyllä" #: templates/yesnolabel.html:6 msgid "No" -msgstr "" +msgstr "Ei" #: users/admin.py:61 msgid "Users" -msgstr "" +msgstr "Käyttäjät" #: users/admin.py:62 msgid "Select which users are assigned to this group" -msgstr "" +msgstr "Valitse mitkä käyttäjät on määritetty tähän ryhmään" #: users/admin.py:199 msgid "The following users are members of multiple groups:" -msgstr "" +msgstr "Seuraavat käyttäjät ovat useiden ryhmien jäseniä:" #: users/admin.py:222 msgid "Personal info" -msgstr "" +msgstr "Henkilökohtaiset tiedot" #: users/admin.py:223 msgid "Permissions" -msgstr "" +msgstr "Oikeudet" #: users/admin.py:226 msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" -msgstr "" +msgstr "Ryhmä" -#: users/models.py:241 +#: users/models.py:248 msgid "View" -msgstr "" +msgstr "Näytä" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" -msgstr "" +msgstr "Oikeus tarkastella kohteita" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" -msgstr "" +msgstr "Oikeus lisätä kohteita" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" -msgstr "" +msgstr "Muuta" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" -msgstr "" +msgstr "Oikeus muokata kohteita" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" -msgstr "" +msgstr "Oikeus poistaa kohteita" diff --git a/InvenTree/locale/fr/LC_MESSAGES/django.po b/InvenTree/locale/fr/LC_MESSAGES/django.po index d67bc7ea12..73f0fa2288 100644 --- a/InvenTree/locale/fr/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:43\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -25,19 +25,19 @@ msgstr "Point de terminaison de l'API introuvable" msgid "User does not have permission to view this model" msgstr "L'utilisateur n'a pas la permission de voir ce modèle" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ 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:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Notes" @@ -81,47 +81,51 @@ msgstr "La valeur '{name}' n'apparaît pas dans le format du modèle" msgid "Provided value does not match required pattern: " msgstr "La valeur fournie ne correspond pas au modèle requis : " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Entrer le mot de passe" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Entrer le nouveau mot de passe" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Confirmez le mot de passe" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Confirmer le nouveau mot de passe" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Ancien mot de passe" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Email (encore)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Confirmation de l'adresse email" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Vous devez taper le même e-mail à chaque fois." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "L'adresse e-mail principale fournie n'est pas valide." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Le domaine e-mail fourni n'est pas approuvé." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Quantité fournie invalide" @@ -237,9 +241,9 @@ msgstr "Fichier manquant" msgid "Missing external link" msgstr "Lien externe manquant" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Pièce jointe" @@ -247,29 +251,30 @@ msgstr "Pièce jointe" msgid "Select file to attach" msgstr "Sélectionnez un fichier à joindre" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Lien" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Lien vers une url externe" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Commentaire" @@ -277,13 +282,13 @@ msgstr "Commentaire" msgid "File comment" msgstr "Commentaire du fichier" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Utilisateur" @@ -324,54 +329,54 @@ msgstr "Les noms dupliqués ne peuvent pas exister sous le même parent" msgid "Invalid choice" msgstr "Choix invalide" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Nom" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Description" @@ -384,7 +389,7 @@ msgid "parent" msgstr "parent" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Chemin d'accès" @@ -420,12 +425,12 @@ msgstr "Erreur serveur" msgid "An error has been logged by the server." msgstr "Une erreur a été loguée par le serveur." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Doit être un nombre valide" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "URL du fichier image distant" 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/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Tchèque" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Danois" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Allemand" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Grec" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Anglais" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Espagnol" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Espagnol (Mexique)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Farsi / Perse" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Français" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hébreu" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Hongrois" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italien" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japonais" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Coréen" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Néerlandais" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norvégien" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polonais" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugais" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugais (Brésilien)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Russe" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Slovénien" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Suédois" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Thaïlandais" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Turc" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamien" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Chinois" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Échec de la vérification du processus d'arrière-plan" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "Backend d'email non configuré" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "Échec des contrôles de santé du système" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "En attente" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Placé" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Terminé" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Annulé" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Perdu" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Retourné" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "En Cours" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Expédié" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Attention requise" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Endommagé" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Détruit" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Rejeté" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "En quarantaine" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Ancienne entrée de suivi de stock" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Article en stock créé" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Article de stock modifié" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Numéro de série attribué" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Stock comptabilisé" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Stock ajouté manuellement" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Stock supprimé manuellement" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Emplacement modifié" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Installé dans l'assemblage" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Retiré de l'assemblage" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Composant installé" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Composant retiré" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Séparer de l'élément parent" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Fractionner l'élément enfant" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Articles de stock fusionnés" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Converti en variante" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Envoyé au client" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Retourné par le client" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "La sortie de l'ordre de construction a été créée" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Sortie de l'ordre de construction terminée" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Consommé par ordre de construction" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Envoyé au client" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Retourné par le client" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Fabrication" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "Retour" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "Le surplus ne doit pas dépasser 100%" msgid "Invalid value for overage" msgstr "Valeur invalide pour le dépassement" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Modifier les informations utilisateur" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Définir le mot de passe" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Les mots de passe doivent correspondre" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Mot de passe incorrect" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Informations système" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "À propos d'InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "La construction doit être annulée avant de pouvoir être supprimée" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Ordre de Fabrication" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Ordres de Fabrication" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Choix invalide pour la fabrication parente" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Référence de l' Ordre de Fabrication" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Référence" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Fabrication parente" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "BuildOrder associé a cette fabrication" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "BuildOrder associé a cette fabrication" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Pièce" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Sélectionnez la pièce à construire" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Bon de commande de référence" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Commande de vente à laquelle cette construction est allouée" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Emplacement d'origine" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Emplacement cible" -#: build/models.py:216 +#: build/models.py:220 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:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Quantité a fabriquer" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Nombre de stock items à construire" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Articles terminés" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Nombre d'articles de stock qui ont été terminés" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "État de la construction" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Code de statut de construction" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Code de lot" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Code de lot pour ce build output" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Date de création" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Date d'achèvement cible" -#: build/models.py:258 +#: build/models.py:262 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:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Date d'achèvement" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "achevé par" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Émis par" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Utilisateur ayant émis cette commande de construction" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Responsable" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "Utilisateur ou groupe responsable de cet ordre de construction" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Lien Externe" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "Priorité de fabrication" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "Priorité de cet ordre de fabrication" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "La commande de construction {build} a été effectuée" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Une commande de construction a été effectuée" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Pas d'ordre de production défini" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "L'ordre de production a déjà été réalisé" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "L'ordre de production de correspond pas à l'ordre de commande" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "La quantité doit être supérieure à zéro" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -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:1265 +msgid "Build object" +msgstr "" -#: build/models.py:1281 -#, 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:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "L'article de stock est suralloué" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "La quantité allouée doit être supérieure à zéro" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "La quantité doit être de 1 pour stock sérialisé" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "L'article du stock sélectionné n'a pas été trouvé dans la BOM" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Assemblage" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Construction à laquelle allouer des pièces" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Article en stock" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Stock d'origine de l'article" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Quantité" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +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:1371 +#, 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:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "L'article de stock est suralloué" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "La quantité allouée doit être supérieure à zéro" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "La quantité doit être de 1 pour stock sérialisé" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Article en stock" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Stock d'origine de l'article" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Quantité de stock à allouer à la construction" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Installer dans" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Stock de destination de l'article" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Sortie d'assemblage" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "L'ordre de production ne correspond pas à l'ordre parent" -#: build/serializers.py:164 +#: build/serializers.py:172 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:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Cet ordre de production a déjà été produit" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "Cet ordre de production n'est pas complètement attribué" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Entrer la quantité désiré pour la fabrication" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "Quantité entière requise pour les pièces à suivre" -#: build/serializers.py:261 +#: build/serializers.py:269 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:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Numéros de série" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Entrer les numéros de séries pour la fabrication" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "Allouer automatiquement les numéros de série" -#: build/serializers.py:291 +#: build/serializers.py:299 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:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 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:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "Une liste d'ordre de production doit être fourni" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Emplacement" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "Emplacement des ordres de production achevés" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "État" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "Accepter l'allocation incomplète" -#: build/serializers.py:502 +#: build/serializers.py:510 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:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "Supprimer le stock alloué" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "Soustraire tout stock qui a déjà été alloué à cette construction" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "Retirer les sorties incomplètes" -#: build/serializers.py:579 +#: build/serializers.py:587 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:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "Accepter comme consommé par cet ordre de construction" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "Désaffecter avant de terminer cette commande de fabrication" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "Stock suralloué" -#: build/serializers.py:633 +#: build/serializers.py:641 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:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "Certains articles de stock ont été suralloués" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "Accepter les non-alloués" -#: build/serializers.py:649 +#: build/serializers.py:657 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:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "Le stock requis n'a pas encore été totalement alloué" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Accepter les incomplèts" -#: build/serializers.py:665 +#: build/serializers.py:673 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:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "La quantité nécessaire n'a pas encore été complétée" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "L'ordre de production a des sorties incomplètes" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "Article du BOM" +#: build/serializers.py:722 +msgid "Build Line" +msgstr "" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "Sortie d'assemblage" -#: build/serializers.py:732 +#: build/serializers.py:740 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:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 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:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "L'article doit être en stock" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Quantité disponible ({q}) dépassée" -#: build/serializers.py:852 +#: build/serializers.py:859 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:859 +#: build/serializers.py:866 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:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "Cet article de stock a déjà été alloué à cette sortie de construction" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "Les articles d'allocation doivent être fournis" -#: build/serializers.py:943 +#: build/serializers.py:947 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:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "Emplacements exclus" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "Exclure les articles de stock de cet emplacement sélectionné" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "Stock interchangeable" -#: build/serializers.py:958 +#: build/serializers.py:962 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:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "Stock de substitution" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "Autoriser l'allocation de pièces de remplacement" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "Objets Optionnels" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "Affecter des éléments de nomenclature facultatifs à l'ordre de fabrication" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Actions de code-barres" @@ -1616,69 +1670,67 @@ msgstr "Compléter l'assemblage" msgid "Build Description" msgstr "Description de la construction" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "Aucune sortie de construction n'a été créée pour cet ordre de construction" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "L'ordre de construction est prêt à être marqué comme terminé" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "L'ordre de construction ne peut pas être achevé car il reste des outputs en suspens" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "Le nombre de constructions requis n'a pas encore été atteint" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 msgid "Stock has not been fully allocated to this Build Order" 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Date Cible" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "Cette construction était due le %(target)s" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "En retard" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Terminé" +#: build/templates/build/build_base.html:178 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "Terminé" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Commandes" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Émis par" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "Priorité" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "Supprimer l'ordre de construction" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ 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:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Destination" @@ -1742,21 +1794,21 @@ msgstr "Pièces allouées" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Lot" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Créé le" @@ -1764,147 +1816,106 @@ msgstr "Créé le" msgid "No target date set" msgstr "Pas de date cible définie" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Terminé" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "Compilation incomplète" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "Commandes de constructions filles" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "Allouer le stock à la construction" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" -msgstr "Désallouer le stock" +#: 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 "Unallocate Stock" -msgstr "Désallouer le stock" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "Affecter automatiquement le stock à construire" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "Allouer automatiquement" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "Allouer manuellement le stock à construire" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "Allouer le stock" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Commander les pièces requises" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Commander des pièces" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "Le stock non suivi a été entièrement alloué pour cet ordre de construction" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "Du stock non suivi n'a pas été entièrement alloué pour cet ordre de construction" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "Allouer les éléments sélectionnés" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "Cet ordre de construction n'a aucun objet de BOM non suivi associé" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "Sorties de construction incomplètes" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "Créer une nouvelle sortie de construction" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "Nouvelle sortie de construction" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "Actions de sortie" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "Compléter les sorties de construction sélectionnées" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "Sortie complète" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "Supprimer les sorties de construction sélectionnées" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "Supprimer les sorties" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "Sorties de Construction terminées" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Pieces jointes" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Notes de construction" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "Allocation terminée" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" -msgstr "Tous les articles de stock non suivis ont été alloués" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" +msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Nouvel ordre de construction" @@ -1912,14 +1923,10 @@ msgstr "Nouvel ordre de construction" msgid "Build Order Details" msgstr "Détails de la commande de construction" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "Sorties incomplètes" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "Sorties de Construction terminées" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "Mise à jour" msgid "Timestamp of last update" msgstr "Date de la dernière mise à jour" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "jours" @@ -2259,9 +2256,9 @@ msgstr "Copier les templates de paramètres de catégorie" msgid "Copy category parameter templates when creating a part" msgstr "Copier les templates de paramètres de la catégorie lors de la création d'une pièce" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Modèle" @@ -2269,27 +2266,27 @@ msgstr "Modèle" msgid "Parts are templates by default" msgstr "Les pièces sont des templates par défaut" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Assemblage" #: common/models.py:1170 msgid "Parts can be assembled from other components by default" -msgstr "Les composantes peuvent être assemblées à partir d'autres composants par défaut" +msgstr "Les pièces peuvent être assemblées à partir d'autres composants par défaut" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Composant" #: common/models.py:1177 msgid "Parts can be used as sub-components by default" -msgstr "Les composantes peuvent être utilisées comme sous-composants par défaut" +msgstr "Les pièces peuvent être utilisées comme sous-composants par défaut" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Achetable" @@ -2297,8 +2294,8 @@ msgstr "Achetable" msgid "Parts are purchaseable by default" msgstr "Les pièces sont achetables par défaut" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Vendable" @@ -2306,10 +2303,10 @@ msgstr "Vendable" msgid "Parts are salable by default" msgstr "Les pièces sont vendables par défaut" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Traçable" @@ -2317,10 +2314,10 @@ msgstr "Traçable" msgid "Parts are trackable by default" msgstr "Les pièces sont traçables par défaut" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Virtuelle" @@ -2352,7 +2349,7 @@ msgstr "Stock initial" 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:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Données initiales du fournisseur" @@ -2377,525 +2374,525 @@ 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:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "Utiliser le prix fournisseur" -#: common/models.py:1276 +#: common/models.py:1283 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:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "Remplacer l'historique des achats" -#: common/models.py:1283 +#: common/models.py:1290 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:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "Utiliser les prix des articles en stock" -#: common/models.py:1290 +#: common/models.py:1297 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:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "Âge de tarification des articles de stock" -#: common/models.py:1297 +#: common/models.py:1304 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:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "Utiliser les prix variants" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "Inclure la tarification variante dans le calcul global des prix" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "Variantes actives uniquement" -#: common/models.py:1315 +#: common/models.py:1322 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:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 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:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "Prix internes" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "Activer les prix internes pour les pièces" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "Substitution du prix interne" -#: common/models.py:1340 +#: common/models.py:1347 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:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "Activer l'impression d'étiquettes" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "Activer l'impression d'étiquettes depuis l'interface Web" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "Étiquette image DPI" -#: common/models.py:1354 +#: common/models.py:1361 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:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "Activer les rapports" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "Activer la génération de rapports" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Mode Débogage" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "Générer des rapports en mode debug (sortie HTML)" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Taille de la page" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Taille de page par défaut pour les rapports PDF" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "Activer les rapports de test" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "Activer la génération de rapports de test" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "Joindre des rapports de test" -#: common/models.py:1396 +#: common/models.py:1403 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:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "Numéro de Série Universellement Unique" -#: common/models.py:1403 +#: common/models.py:1410 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:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "Remplir automatiquement les Numéros de Série" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "Remplir automatiquement les numéros de série dans les formulaires" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "Supprimer le stock épuisé" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "Détermine le comportement par défaut lorsqu'un article de stock est épuisé" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "Modèle de code de lot" -#: common/models.py:1424 +#: common/models.py:1431 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:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "Expiration du stock" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "Activer la fonctionnalité d'expiration du stock" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "Vendre le stock expiré" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "Autoriser la vente de stock expiré" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "Délai de péremption du stock" -#: common/models.py:1444 +#: common/models.py:1451 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:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "Construction de stock expirée" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "Autoriser la construction avec un stock expiré" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "Contrôle de la propriété des stocks" -#: common/models.py:1459 +#: common/models.py:1466 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:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "Icône par défaut de l'emplacement du stock" -#: common/models.py:1466 +#: common/models.py:1473 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:1471 -msgid "Build Order Reference Pattern" -msgstr "Modèle de référence de commande de construction" - -#: common/models.py:1472 -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:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" -msgstr "" +msgid "Build Order Reference Pattern" +msgstr "Modèle de référence de commande de construction" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" -msgstr "" +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:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 +msgid "Return Order Reference Pattern" +msgstr "" + +#: common/models.py:1500 +msgid "Required pattern for generating Return Order reference field" +msgstr "" + +#: common/models.py:1506 +msgid "Edit Completed Return Orders" +msgstr "" + +#: common/models.py:1507 +msgid "Allow editing of return orders after they have been completed" +msgstr "" + +#: common/models.py:1513 msgid "Sales Order Reference Pattern" msgstr "Modèle de référence de bon de commande" -#: common/models.py:1500 +#: common/models.py:1514 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:1506 +#: common/models.py:1520 msgid "Sales Order Default Shipment" msgstr "Expédition par défaut du bon de commande" -#: common/models.py:1507 +#: common/models.py:1521 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:1513 +#: common/models.py:1527 msgid "Edit Completed Sales Orders" msgstr "Modifier les commandes de vente terminées" -#: common/models.py:1514 +#: common/models.py:1528 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:1520 +#: common/models.py:1534 msgid "Purchase Order Reference Pattern" msgstr "Modèle de référence de commande d'achat" -#: common/models.py:1521 +#: common/models.py:1535 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:1527 +#: common/models.py:1541 msgid "Edit Completed Purchase Orders" msgstr "Modifier les bons de commande terminés" -#: common/models.py:1528 +#: common/models.py:1542 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:1535 +#: common/models.py:1549 msgid "Enable password forgot" msgstr "Activer les mots de passe oubliés" -#: common/models.py:1536 +#: common/models.py:1550 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:1542 +#: common/models.py:1556 msgid "Enable registration" msgstr "Activer les inscriptions" -#: common/models.py:1543 +#: common/models.py:1557 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:1549 +#: common/models.py:1563 msgid "Enable SSO" msgstr "Activer le SSO" -#: common/models.py:1550 +#: common/models.py:1564 msgid "Enable SSO on the login pages" msgstr "Activer le SSO sur les pages de connexion" -#: common/models.py:1556 +#: common/models.py:1570 msgid "Enable SSO registration" msgstr "Activer l'inscription SSO" -#: common/models.py:1557 +#: common/models.py:1571 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:1563 +#: common/models.py:1577 msgid "Email required" msgstr "Email requis" -#: common/models.py:1564 +#: common/models.py:1578 msgid "Require user to supply mail on signup" msgstr "Exiger que l'utilisateur fournisse un mail lors de l'inscription" -#: common/models.py:1570 +#: common/models.py:1584 msgid "Auto-fill SSO users" msgstr "Saisie automatique des utilisateurs SSO" -#: common/models.py:1571 +#: common/models.py:1585 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:1577 +#: common/models.py:1591 msgid "Mail twice" msgstr "Courriel en double" -#: common/models.py:1578 +#: common/models.py:1592 msgid "On signup ask users twice for their mail" msgstr "Lors de l'inscription, demandez deux fois aux utilisateurs leur mail" -#: common/models.py:1584 +#: common/models.py:1598 msgid "Password twice" msgstr "Mot de passe deux fois" -#: common/models.py:1585 +#: common/models.py:1599 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:1591 +#: common/models.py:1605 msgid "Allowed domains" msgstr "Domaines autorisés" -#: common/models.py:1592 +#: common/models.py:1606 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:1598 +#: common/models.py:1612 msgid "Group on signup" msgstr "Grouper sur inscription" -#: common/models.py:1599 +#: common/models.py:1613 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:1605 +#: common/models.py:1619 msgid "Enforce MFA" msgstr "Forcer l'authentification multifacteurs" -#: common/models.py:1606 +#: common/models.py:1620 msgid "Users must use multifactor security." msgstr "Les utilisateurs doivent utiliser l'authentification multifacteurs." -#: common/models.py:1612 +#: common/models.py:1626 msgid "Check plugins on startup" msgstr "Vérifier les plugins au démarrage" -#: common/models.py:1613 +#: common/models.py:1627 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:1620 -msgid "Check plugin signatures" -msgstr "Vérifier les signatures du plugin" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "Vérifier et afficher les signatures des plugins" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "Activer l'intégration d'URL" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "Autoriser les plugins à ajouter des chemins URL" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "Activer l'intégration de navigation" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "Activer les plugins à s'intégrer dans la navigation" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "Activer l'intégration de plugins" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "Activer l'intégration de plugin pour ajouter des apps" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "Activer l'intégration du planning" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "Autoriser les plugins à éxécuter des tâches planifiées" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "Activer l'intégration des évènements" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "Autoriser les plugins à répondre aux évènements internes" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "Fonctionnalité d'inventaire" -#: common/models.py:1676 +#: common/models.py:1683 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:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "Période de l'inventaire automatique" -#: common/models.py:1683 +#: common/models.py:1690 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:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 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:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "Clé du paramètre (doit être unique - insensible à la casse)" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "Pas d'imprimante (Exporter vers PDF)" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "Afficher les composants suivis" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "Afficher les composants suivis sur l'écran d'accueil" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "Afficher les catégories suivies" -#: common/models.py:1766 +#: common/models.py:1773 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:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Afficher les dernières pièces" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "Afficher les derniers composants sur la page d'accueil" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "Nombre de composants récents" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "Nombre de pièces récentes à afficher sur la page d'index" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "Afficher les listes de matériaux non validées" @@ -2913,504 +2910,497 @@ 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:1800 -msgid "Recent Stock Count" -msgstr "Compte de stock récent" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "Nombre d'éléments de stock récents à afficher sur la page d'index" - -#: common/models.py:1807 msgid "Show low stock" msgstr "Afficher le stock faible" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "Afficher les articles en stock bas sur la page d'accueil" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "Afficher le stock épuisé" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "Afficher les stocks épuisés sur la page d'accueil" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "Afficher le stock nécessaire" -#: common/models.py:1822 +#: common/models.py:1815 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:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "Afficher le stock expiré" -#: common/models.py:1829 +#: common/models.py:1822 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:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "Afficher le stock périmé" -#: common/models.py:1836 +#: common/models.py:1829 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:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "Afficher les constructions en attente" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "Afficher les constructions en attente sur la page d'accueil" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "Afficher les constructions en retard" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "Afficher les constructions en retard sur la page d'accueil" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "Afficher les commandes en suspens" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "Afficher les commandes en suspens sur la page d'accueil" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "Afficher les commandes en retard" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "Afficher les commandes en retard sur la page d'accueil" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "Afficher les envois en suspens" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "Afficher les envois en suspens sur la page d'accueil" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "Afficher les envois en retard" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "Afficher les envois en retard sur la page d'accueil" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "Afficher les nouvelles" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "Afficher les nouvelles sur la page d'accueil" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "Affichage du libellé en ligne" -#: common/models.py:1899 +#: common/models.py:1892 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:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "Imprimante d'étiquettes par défaut" -#: common/models.py:1906 +#: common/models.py:1899 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:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "Affichage du rapport en ligne" -#: common/models.py:1913 +#: common/models.py:1906 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:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "Rechercher de pièces" -#: common/models.py:1920 +#: common/models.py:1913 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:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 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:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "Rechercher les pièces du fabricant" -#: common/models.py:1934 +#: common/models.py:1927 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:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "Masquer les pièces inactives" -#: common/models.py:1941 +#: common/models.py:1934 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:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "Rechercher des catégories" -#: common/models.py:1948 +#: common/models.py:1941 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:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "Rechercher dans le stock" -#: common/models.py:1955 +#: common/models.py:1948 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:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "Cacher les pièces indisponibles" -#: common/models.py:1962 +#: common/models.py:1955 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:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "Chercher des Emplacements" -#: common/models.py:1969 +#: common/models.py:1962 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:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "Rechercher les entreprises" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "Afficher les entreprises dans la fenêtre de prévisualisation de recherche" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "Rechercher les commandes de construction" -#: common/models.py:1983 +#: common/models.py:1976 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:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "Rechercher des bons de commande" -#: common/models.py:1990 +#: common/models.py:1983 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:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "Exclure les bons de commande inactifs" -#: common/models.py:1997 +#: common/models.py:1990 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:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "Rechercher les bons de commande" -#: common/models.py:2004 +#: common/models.py:1997 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:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "Exclure les bons de commande inactives" -#: common/models.py:2011 +#: common/models.py:2004 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:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "Résultats de l'aperçu de la recherche" -#: common/models.py:2032 +#: common/models.py:2025 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:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "Recherche Regex" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "Afficher la quantité dans les formulaires" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "Afficher la quantité disponible dans certains formulaires" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "La touche Echap ferme les formulaires" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "Utilisez la touche Echap pour fermer les formulaires modaux" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "Barre de navigation fixe" -#: common/models.py:2067 +#: common/models.py:2060 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:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "Format de date" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "Format préféré pour l'affichage des dates" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Planification des pièces" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "Afficher les informations de planification des pièces" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventaire des pièces" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "Longueur de la chaîne dans les Tableau" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "Limite de longueur maximale pour les chaînes affichées dans les vues de la table" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Prix" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "Actif" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "Ce webhook (lien de rappel HTTP) est-il actif" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "Jeton" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "Jeton d'accès" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "Confidentiel" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "ID message" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "Identifiant unique pour ce message" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "Hôte" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "Hôte à partir duquel ce message a été reçu" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "Entête" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "En-tête de ce message" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "Corps" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "Corps de ce message" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "Endpoint à partir duquel ce message a été reçu" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "Le travail sur ce message est-il terminé ?" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "Id" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "Titre" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "Publié" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "Auteur" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "Résumé" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "Lu" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "Cette nouvelle a-t-elle été lue ?" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "Cette nouvelle a-t-elle été lue ?" msgid "Image" msgstr "Image" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3474,7 +3464,7 @@ msgstr "Les champs correspondants ont échoué" #: common/views.py:481 msgid "Parts imported" -msgstr "Composantes importées" +msgstr "Pièces importées" #: common/views.py:509 order/templates/order/order_wizard/match_fields.html:27 #: order/templates/order/order_wizard/match_parts.html:19 @@ -3497,7 +3487,7 @@ msgstr "Description de la société" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Site web" @@ -3505,303 +3495,388 @@ msgstr "Site web" msgid "Company website URL" msgstr "Site Web de la société" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Adresse" - -#: company/models.py:119 -msgid "Company address" -msgstr "Adresse de l'entreprise" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Numéro de téléphone" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Numéro de téléphone de contact" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "E-mail" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Adresse e-mail de contact" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Contact" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Point de contact" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "Lien externe vers les informations de l'entreprise" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "est client" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "Vendez-vous des objets à cette entreprise?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "est fournisseur" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "Est-ce que vous achetez des articles à cette entreprise?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "est fabricant" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "Cette entreprise fabrique-t-elle des pièces?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "Devise par défaut utilisée pour cette entreprise" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Société" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Fabricant" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Sélectionner un fabricant" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Pièces du fabricant" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Nom du paramètre" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Valeur" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Valeur du paramètre" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Unités" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "Unités du paramètre" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 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:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Fournisseur" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Sélectionner un fournisseur" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "SKU" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "Unité de gestion des stocks des fournisseurs" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "Sélectionner un fabricant" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "Lien de la pièce du fournisseur externe" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "Description de la pièce du fournisseur" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Note" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "coût de base" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "Frais minimums (par exemple frais de stock)" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "Conditionnement" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "Conditionnement de l'article" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "Nombre de paquet" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "plusieurs" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "Commande multiple" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "Disponible" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "Quantité disponible auprès du fournisseur" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "Disponibilité mise à jour" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "Date de dernière mise à jour des données de disponibilité" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "Devise par défaut utilisée pour ce fournisseur" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Créer une commande d'achat" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "Éditer les informations sur la société" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Editer la société" @@ -3854,17 +3929,17 @@ msgstr "Télécharger l'image depuis l'URL" msgid "Delete image" msgstr "Supprimer image" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Client" @@ -3872,6 +3947,13 @@ msgstr "Client" msgid "Uses default currency" msgstr "Utiliser la devise par défaut" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Adresse" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Téléphone" @@ -3904,7 +3986,7 @@ msgstr "Télécharger une image" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Pièce fournisseur" @@ -3914,129 +3996,121 @@ msgstr "Créer une nouvelle pièce fournisseur" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Nouvelle pièce fournisseur" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Commander des composants" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Supprimer la pièce" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Supprimer les pièces" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 msgid "Manufacturer Parts" msgstr "Pièces du fabricant" -#: company/templates/company/detail.html:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Créer une nouvelle pièce de fabricant" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Nouvelle pièce de fabricant" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Stock fournisseur" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" -msgstr "Commandes d'achat" +msgstr "Bons de commande" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Créer une commande d'achat" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Nouvelle commande achat" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "Ventes" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Créer un nouvel ordre de vente" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "Nouvelle commande de vente" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "Stock affecté" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Notes de l'entreprise" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "Liste des Fournisseurs" @@ -4048,17 +4122,17 @@ msgstr "Fabricants" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "Article de la commande" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "Modifier la pièce du fabricant" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "Supprimer la pièce de fabricant" @@ -4078,40 +4152,22 @@ msgstr "Aucune information sur le fabricant disponible" msgid "Suppliers" msgstr "Fournisseurs" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "Supprimer les pièces du fournisseur" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Supprimer" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Paramètres" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "Nouveau paramètre" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Supprimer les paramètres" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "Ajouter un paramètre" @@ -4135,23 +4191,28 @@ msgstr "Articles en stock assignés" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "Pièce fournisseur" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "Actions de la pièce du fournisseur" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "Commander un composant" @@ -4162,13 +4223,13 @@ msgstr "Disponibilité de la mise à jour" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "Modifier la pièce du fournisseur" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "Dupliquer la pièce du fournisseur" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "Stock de pièces du fournisseur" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "Créer un nouvel article de stock" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "Nouvel article de stock" @@ -4203,37 +4264,37 @@ msgstr "Nouvel article de stock" msgid "Supplier Part Orders" msgstr "Commandes de pièces du fournisseur" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Information sur les prix" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "Ajouter un prix de rupture" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "Lier le code-barres à la pièce du fournisseur" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "Mettre à jour la disponibilité des pièces" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Éléments en stock" @@ -4259,7 +4320,7 @@ msgstr "Clients" msgid "New Customer" msgstr "Nouveaux Clients" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Entreprises" @@ -4267,77 +4328,70 @@ msgstr "Entreprises" msgid "New Company" msgstr "Nouvelle Entreprise" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "Nom de l'étiquette" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "Description de l’étiquette" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "Étiquette" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "Fichier de modèle d'étiquette" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "Activé" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "Le modèle d'étiquette est activé" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Largeur [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "Largeur de l'étiquette, spécifiée en mm" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Hauteur [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "Hauteur de l'étiquette, spécifiée en mm" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "Modèle de nom de fichier" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "Modèle pour la génération des noms de fichiers d'étiquette" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," -msgstr "Filtres de requête (liste de paires clé=valeur séparées par des virgules)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" +msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Filtres" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "Filtres de requête (liste de paires clé=valeur séparées par des virgules" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "Filtres de requêtes de pièces (valeurs de paires clé=valeur séparées par des virgules)" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "Aucun bon de commande correspondant n'a été trouvé" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Commande d’achat" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "Inconnu" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "Lien vers une page externe" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Date prévue pour la livraison de la commande. La commande sera en retard après cette date." -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "Créé par" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "Utilisateur ou groupe responsable de cette commande" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "Référence de la commande" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "Statut de la commande d'achat" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "Société de laquelle les articles sont commandés" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "Référence du fournisseur" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "Code de référence de la commande fournisseur" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "reçu par" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "Date d'émission" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "Date d'émission de la commande" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "Date à laquelle la commande a été complété" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "La quantité doit être un nombre positif" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "Société à laquelle les articles sont vendus" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "Nom de l’expédition" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "expédié par" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "La commande ne peut pas être terminée car aucune pièce n'a été assignée" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "La commande ne peut pas être terminée car il y a des envois incomplets" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "Nombre d'élement" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "Contexte" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "Prix unitaire" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "supprimé" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "Commande" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "Pièce fournisseur" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "Reçu" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "Nombre d'éléments reçus" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Prix d'achat" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "Prix d'achat unitaire" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "Où l'Acheteur veut-il stocker cet article ?" -#: order/models.py:1288 +#: order/models.py:1304 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:1293 +#: order/models.py:1309 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:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "Prix de vente" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "Prix de vente unitaire" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "Quantité expédiée" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "Date d'expédition" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "Vérifié par" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "Utilisateur qui a vérifié cet envoi" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "Envoi" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "Numéro d'expédition" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "N° de suivi" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "Information de suivi des colis" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "N° de facture" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "Numéro de référence de la facture associée" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "Le colis a déjà été envoyé" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "L'expédition n'a pas d'articles en stock alloués" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "L'article de stock n'a pas été assigné" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "Impossible d'allouer le stock à une ligne sans pièce" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "La quantité d'allocation ne peut pas excéder la quantité en stock" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "Ligne" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "Article" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "La commande ne peut pas être annulée" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "La commande n'est pas ouverte" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "Devise du prix d'achat" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 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:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Code-barres" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "Le code-barres est déjà utilisé" -#: order/serializers.py:568 +#: order/serializers.py:575 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:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "Entrez les numéros de série à allouer" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 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:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "Les numéros de série suivants sont déjà alloués" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "Recevoir objet" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "Réception d'articles" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "Marquer la commande comme complète" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "Finaliser la commande" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "Référence de commande" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "Description de la commande" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "Statut de la commande" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "Incomplet" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "Dupliquer la sélection" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "Supprimer la ligne" @@ -5150,9 +5200,9 @@ msgstr "Articles de la commande d'achat" #: 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "Notes de commande" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 msgid "Pending Shipments" msgstr "Expéditions en attente" -#: order/templates/order/sales_order_detail.html:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "ID de composant" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "Révision" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "En Commande" @@ -5381,23 +5426,16 @@ msgstr "En Commande" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,16 +5452,16 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" -msgstr "Composantes" +msgstr "Pièces" #: part/admin.py:265 msgid "BOM Level" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Catégorie de composant" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "Catégories de composants" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "L'IPN doit correspondre au modèle de regex {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "IPN dupliqué non autorisé dans les paramètres de la pièce" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "Catégorie" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "Catégorie de la pièce" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "Ventes multiples" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "Date" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "Nom de test" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "Requis" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "Données" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "Valeur par Défaut" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "Article du BOM" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Surplus" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "Validée" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "Devise d'achat de l'item" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "Copier l'image" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "Copier les paramètres" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "Supprimer l'élément" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,46 +6530,34 @@ msgstr "Supprimer la catégorie" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" #: part/templates/part/category.html:126 msgid "Parts (Including subcategories)" -msgstr "Composantes (incluant sous-catégories)" +msgstr "Pièces (incluant les sous-catégories)" #: part/templates/part/category.html:164 msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "Nouvelle catégorie" @@ -6559,7 +6573,7 @@ msgstr "" #: part/templates/part/copy_part.html:14 #: part/templates/part/create_part.html:11 msgid "Possible Matching Parts" -msgstr "Composantes correspondantes possibles" +msgstr "Pièces pouvant correspondre" #: part/templates/part/copy_part.html:15 #: part/templates/part/create_part.html:12 @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "Actualiser" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "Prise d'inventaire" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "Fabricants de composants" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "Sélectionner un format de fichier" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Stock" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "Votre environnement utilise une version obsolète de git. Cela empêche InvenTree de charger les détails de l'extension." - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Aucune action spécifiée" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "Correspondance trouvée pour les données du code-barres" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "Non du Plugin" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "Extension Intégrée" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "Extension" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "Aucun objet valide n'a été fourni au modèle" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "Nom du modèle" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "Filtres de composants" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "Extrait " -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "Elément" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Numéro de série" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "Résultat" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "Numéro de série" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "Sélectionner un propriétaire" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 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:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "La quantité ne correspond pas au nombre de numéros de série" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "Les numéros de série existent déjà" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "Entrez le nombre d'articles en stock à sérialiser" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "Entrez les numéros de série pour les nouveaux articles" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 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:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Assemblage" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "Nouvelles d'InvenTree" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "Paramètres des Extensions" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "Extensions" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "Les extensions tierces ne sont pas activées pour cette installation d'InvenTree" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "Informations sur le plugin" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "aucune information de version fournie" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "Chemin d'installation" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "Hash du commit" msgid "Commit Message" msgstr "Message du commit" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "Statut de la signature" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "Clé de signature" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "Non vérifiée" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "Principale" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "Documentation d'InvenTree" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "Ajouter un lien" msgid "Add Attachment" msgstr "Ajouter une pièce jointe" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "Identifiant du code-barres" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "Quantité requise" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "Code d’erreur" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "Aucune pièce jointe trouvée" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "Modifier la pièce jointe" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "Date d'upload" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "Modifier la pièce jointe" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "Supprimer la pièce jointe" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "Délier" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "Supprimer l'article de stock" @@ -9723,743 +9747,837 @@ msgstr "Vérifier dans l'emplacement" msgid "Barcode does not match a valid location" msgstr "Le code-barres ne correspond pas à un emplacement valide" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "Données de la rangée" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "Télécharger le template de la BOM" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "Niveaux" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "Sélectionner le nombre maximum de niveaux de BOM à exporter (0 = tous les niveaux)" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "Inclure les données de paramètre" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "Inclure les données de stock" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "Êtes-vous sûr de vouloir annuler cette construction?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "Prochain numéro de série disponible" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "Dernier numéro de série" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "La BOM contient des pièces traçables" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "Les pièces traçables peuvent avoir des numéros de série spécifiés" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "Sortie complète" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "Supprimer les sorties" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "Commander des stocks" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "Pas d'informations sur l'utilisateur" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "Pièce traçable" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "Commander des stocks" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" -msgstr "Composantes fournies" +msgstr "Pièces fournies" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" -msgstr "Composantes fabriquées" +msgstr "Pièces fabriquées" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Commander des composants" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "Supprimer les pièces du fournisseur" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Supprimer" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "Sélectionner imprimante" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "Attributs de la pièce" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "Options de création de pièce" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "Options de duplication de pièces" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "Ajouter une catégorie de pièce" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "Composant créé avec succès" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "Modifier la pièce" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "Pièce modifiée" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "Créer une variante de pièce" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "Stock bas" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "Pièce traçable" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "Pièce virtuelle" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "Pièce vendable" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "Aucune variante trouvée" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "Aucune pièce trouvée" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "Aucune catégorie" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "Afficher sous forme de liste" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "Afficher sous forme de grille" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "Aucune catégorie" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "Afficher sous forme de liste" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "Afficher sous forme de grille" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "Afficher sous forme d'arborescence" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "Modifier le résultat du test" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "Supprimer le résultat du test" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "Le plugin a été installé" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "Référence de commande" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "Commande en retard" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "Livré au client" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "Allouer des numéros de série" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "Acheter du stock" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "Calculer le prix" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "Allouer des numéros de série" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Entrez les numéros de série pour le nouveau stock (ou laisser vide)" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "Trouver un numéro de série" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "Entrer le numéro de série" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "Entrer un numéro de série" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "Aucun numéro de série correspondant" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "Plus d'un résultat correspondant trouvé" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "Confirmer l'assignation de stock" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "Assigner le stock au client" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "Attention : l'opération de fusion est irréversible" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "Certaines informations seront perdues lors de la fusion des articles en stock" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "L'historique des transactions de stock sera supprimé pour les éléments fusionnés" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "Les informations sur la pièce du fournisseur seront supprimées pour les éléments fusionnés" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "Confirmer la fusion de l'article en stock" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "Fusionner les articles en stock" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "Transférer le stock" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "Transférer" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "Compter le stock" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "Compter" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "Supprimer du stock" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "Supprimer" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "Ajouter du stock" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "Ajouter" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "Supprimer le stock" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "La quantité ne peut pas être ajustée pour un stock sérialisé" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "Spécifiez la quantité du stock" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" -msgstr "Vous devez sélectionner au moins un article en stock disponible" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" +msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "RÉUSSI" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "ÉCHEC" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "AUCUN RÉSULTAT" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "Ajouter un résultat de test" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "Aucun résultat de test trouvé" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "Date du test" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "En production" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "Article en stock installé dans un autre article en stock" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "Assigné à une commande de vente" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "Aucun emplacement de stock défini" -#: templates/js/translated/stock.js:1746 +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" +msgstr "" + +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" +msgstr "Fusionner le stock" + +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" +msgstr "" + +#: templates/js/translated/stock.js:1885 msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1850 +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 msgid "Stock item is in production" msgstr "L'article de stock est en production" -#: templates/js/translated/stock.js:1855 +#: templates/js/translated/stock.js:2028 msgid "Stock item assigned to sales order" msgstr "L'article en stock a été assigné à une commande de vente" -#: templates/js/translated/stock.js:1858 +#: templates/js/translated/stock.js:2031 msgid "Stock item assigned to customer" msgstr "L'article en stock a été assigné à un client" -#: templates/js/translated/stock.js:1861 +#: templates/js/translated/stock.js:2034 msgid "Serialized stock item has been allocated" msgstr "L'article de stock sérialisé a été alloué" -#: templates/js/translated/stock.js:1863 +#: templates/js/translated/stock.js:2036 msgid "Stock item has been fully allocated" msgstr "L'article de stock a été complètement alloué" -#: templates/js/translated/stock.js:1865 +#: templates/js/translated/stock.js:2038 msgid "Stock item has been partially allocated" msgstr "L'article de stock a été partiellement alloué" -#: templates/js/translated/stock.js:1868 +#: templates/js/translated/stock.js:2041 msgid "Stock item has been installed in another item" msgstr "L'article en stock a été installé dans un autre article" -#: templates/js/translated/stock.js:1870 +#: templates/js/translated/stock.js:2043 msgid "Stock item has been consumed by a build order" msgstr "" -#: templates/js/translated/stock.js:1874 +#: templates/js/translated/stock.js:2047 msgid "Stock item has expired" msgstr "L'article en stock a expiré" -#: templates/js/translated/stock.js:1876 +#: templates/js/translated/stock.js:2049 msgid "Stock item will expire soon" msgstr "L'article en stock va bientôt expirer" -#: templates/js/translated/stock.js:1881 +#: templates/js/translated/stock.js:2054 msgid "Stock item has been rejected" msgstr "L'article de stock a été rejeté" -#: templates/js/translated/stock.js:1883 +#: templates/js/translated/stock.js:2056 msgid "Stock item is lost" msgstr "L'article de stock est perdu" -#: templates/js/translated/stock.js:1885 +#: templates/js/translated/stock.js:2058 msgid "Stock item is destroyed" msgstr "L'article de stock est détruit" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 msgid "Depleted" msgstr "Epuisé" -#: templates/js/translated/stock.js:2031 +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "Pièce de fournisseur non précisée" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "Aucun article de stock ne correspond à la requête" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "Détails" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "L'emplacement n'existe plus" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" -msgstr "La commande d'achat n'existe plus" +msgstr "Le bon de commande n'existe plus" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "Le client n'existe plus" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "L'article de stock n'existe plus" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "Ajouté" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "Supprimé" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "État de la commande" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "En suspens" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "Assigné à moi" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "Pièce traçable" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "Inclure les sous-emplacements" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "Inclure les emplacements" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "Inclure les sous-catégories" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "A un numéro de série" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "Numéro de série PGE" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "Numéro de série supérieur ou égal à" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "Numéro de série PPE" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "Numéro de série inférieur ou égal à" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "Numéro de série" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "Code de lot" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "Pièces actives" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "Afficher le stock pour les pièces actives" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "La pièce est un assemblage" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "Est alloué" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "L'élément a été alloué" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "Le stock est disponible pour utilisation" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "Afficher les articles de stock qui sont installés dans un autre article" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "Afficher les articles qui ont été assignés à un client" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "État du stock" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "A un prix d'achat" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "Afficher les articles de stock qui ont un prix d'achat défini" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "Afficher les articles de stock qui ont expiré" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "Afficher le stock qui est proche de l'expiration" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "État de la construction" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "Inclure les pièces des sous-catégories" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "Afficher les pièces actives" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "A un IPN" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "La pièce a un numéro de pièce interne" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "Achetable" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "Chargement des données" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "résultats par page" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "Afficher toutes les lignes" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "Afficher" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "à" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "de" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "lignes" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "Aucun résultat correspondant n'a été trouvé" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "Masquer/Afficher la pagination" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "Colonnes" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "Tout" @@ -12587,50 +12791,6 @@ msgstr "Paramètres de Messagerie" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "Fusionner les éléments de stock sélectionnés" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "Fusionner le stock" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "Commander les éléments sélectionnés" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "Supprimer les éléments sélectionnés" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "Oui" @@ -12663,35 +12823,35 @@ msgstr "Droits" msgid "Important dates" msgstr "Dates importantes" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "Droit défini" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "Groupe" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "Vue" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "Droit de voir des éléments" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "Droit d'ajouter des éléments" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "Modifier" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "Droit de modifier des élément" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "Droit de supprimer des éléments" diff --git a/InvenTree/locale/he/LC_MESSAGES/django.po b/InvenTree/locale/he/LC_MESSAGES/django.po index f7d43003c2..8a26fbc26f 100644 --- a/InvenTree/locale/he/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -25,19 +25,19 @@ msgstr "" msgid "User does not have permission to view this model" msgstr "" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "" msgid "Enter date" msgstr "הזן תאריך סיום" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "" @@ -81,47 +81,51 @@ msgstr "" msgid "Provided value does not match required pattern: " msgstr "" -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "הכנס סיסמה" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "הכנס סיסמה חדשה" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "אישור סיסמה" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "אשר סיסמה חדשה" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "אימייל (שנית)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "אישור כתובת אימייל" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "חובה לרשום את אותו אימייל בכל פעם." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "" -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "" @@ -237,9 +241,9 @@ msgstr "קובץ חסר" msgid "Missing external link" msgstr "חסר קישור חיצוני" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "קובץ מצורף" @@ -247,29 +251,30 @@ msgstr "קובץ מצורף" msgid "Select file to attach" msgstr "בחר קובץ לצירוף" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "קישור" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "קישור חיצוני" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "הערה" @@ -277,13 +282,13 @@ msgstr "הערה" msgid "File comment" msgstr "הערת קובץ" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "משתמש" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "בחירה שגויה" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "שם" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "תיאור" @@ -384,7 +389,7 @@ msgid "parent" msgstr "מקור" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "" @@ -420,12 +425,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "המספר חייב להיות תקין" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "" msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "גרמנית" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "יוונית" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "אנגלית" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "ספרדית" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "ספרדית (מקסיקנית)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "צרפתית" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "עברית" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "איטלקית" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "יפנית" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "קוריאנית" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "הולנדית" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "נורווגית" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "פולנית" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "רוסית" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "שוודית" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "תאילנדית" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "טורקית" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "ווייטנאמית" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "סינית" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "בהמתנה" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "מוקם" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "הושלם" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "מבוטל" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "אבד" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "הוחזר" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "נשלח" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "מצב טוב" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "דרושה תשומת לב" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "פגום" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "הרוס" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "נדחה" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "מיקום שונה" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "נשלח ללקוח" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "הוחזר מלקוח" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "נשלח ללקוח" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "הוחזר מלקוח" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "ייצור" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "ערוך מידע אודות המשתמש" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "הגדר סיסמא" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "הסיסמאות מוכרחות להיות תואמות" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "מידע אודות המערכת" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "מקט" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "מקור הבנייה" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "רכיב" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "בחר רכיב לבנייה" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "כמות בניה" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "כמות" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "מספרים סידוריים" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2297,8 +2294,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,10 +2303,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2317,10 +2314,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3872,6 +3947,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "לא פורטה הפעולה" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/hu/LC_MESSAGES/django.po b/InvenTree/locale/hu/LC_MESSAGES/django.po index 43c4248407..f85bd99d5d 100644 --- a/InvenTree/locale/hu/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -25,19 +25,19 @@ msgstr "API funkciót nem találom" msgid "User does not have permission to view this model" msgstr "Nincs jogosultságod az adatok megtekintéséhez" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "Nincs érték megadva" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "A megadott érték nem egy szám" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "A megadott érték mértékegysége érvénytelen" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "A megadott érték nem konvertálható a megadott mértékegységre" @@ -49,26 +49,26 @@ msgstr "A hiba részleteit megtalálod az admin panelen" msgid "Enter date" msgstr "Dátum megadása" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Megjegyzések" @@ -81,47 +81,51 @@ msgstr "A(z) '{name}' érték nem a szükséges minta szerinti" msgid "Provided value does not match required pattern: " msgstr "A megadott érték nem felel meg a szükséges mintának: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Jelszó megadása" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Új jelszó megadása" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Jelszó megerősítése" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Új jelszó megerősítése" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Régi jelszó" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Email (újra)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Email cím megerősítés" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Mindig ugyanazt az email címet kell beírni." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "A megadott elsődleges email cím nem valós." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "A megadott email domain nincs jóváhagyva." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "Regisztráció le van tiltva." + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Nem megfelelő mennyiség" @@ -237,9 +241,9 @@ msgstr "Hiányzó fájl" msgid "Missing external link" msgstr "Hiányzó külső link" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Melléklet" @@ -247,29 +251,30 @@ msgstr "Melléklet" msgid "Select file to attach" msgstr "Válaszd ki a mellekelni kívánt fájlt" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Link" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Link külső URL-re" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Megjegyzés" @@ -277,13 +282,13 @@ msgstr "Megjegyzés" msgid "File comment" msgstr "Leírás, bővebb infó" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Felhasználó" @@ -324,54 +329,54 @@ msgstr "Duplikált nevek nem lehetnek ugyanazon szülő alatt" msgid "Invalid choice" msgstr "Érvénytelen választás" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Név" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Leírás" @@ -384,7 +389,7 @@ msgid "parent" msgstr "szülő" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Elérési út" @@ -420,12 +425,12 @@ msgstr "Kiszolgálóhiba" msgid "An error has been logged by the server." msgstr "A kiszolgáló egy hibaüzenetet rögzített." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Érvényes számnak kell lennie" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,322 +503,325 @@ msgstr "A távoli kép URL-je" msgid "Downloading images from remote URL is not enabled" msgstr "Képek letöltése távoli URL-ről nem engedélyezett" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Cseh" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Dán" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Német" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Görög" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Angol" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Spanyol" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Spanyol (Mexikói)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Fárszi/Perzsa" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" -msgstr "" +msgstr "Finn" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Francia" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Héber" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Magyar" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Olasz" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japán" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Koreai" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Holland" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norvég" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Lengyel" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugál" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugál (Brazíliai)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Orosz" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Szlovén" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Svéd" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Tháj" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Török" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnámi" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Kínai" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Háttér folyamat ellenőrzés sikertelen" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "Email backend nincs beállítva" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "InvenTree rendszer állapotának ellenőrzése sikertelen" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Függőben" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Kiküldve" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Kész" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Törölve" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Elveszett" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Visszaküldve" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "Folyamatban" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Kiszállítva" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "Rendben" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Ellenőrizendő" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Sérült" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Megsemmisült" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Elutasított" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "Karanténban" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Örökölt készlet követési bejegyzés" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Készlet tétel létrehozva" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Szerkeszett készlet tétel" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Hozzárendelt sorozatszám" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Készlet leleltározva" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Készlet manuálisan hozzáadva" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Készlet manuálisan elvéve" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Hely megváltozott" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "Készletadatok frissítve" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Gyártmányba beépült" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Gyártmányból eltávolítva" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Beépült összetevő tétel" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Eltávolított összetevő tétel" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Szülő tételből szétválasztva" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Szétválasztott gyermek tétel" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Összevont készlet tétel" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Alkatrészváltozattá alakítva" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Vevőnek kiszállítva" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Vevőtől visszaérkezett" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Gyártási utasítás kimenete elkészült" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Gyártási utasítás kimenete kész" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" -msgstr "Gyártási utasítás kimenete visszautasítva" +msgstr "Gyártási utasítás kimenete elutasítva" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Gyártásra felhasználva" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "Vevői rendelésre kiszállítva" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "Megrendelésre érkezett" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "Visszavéve" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Vevőnek kiszállítva" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Vevőtől visszaérkezett" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Folyamatban" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "Visszavétel" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "Javítás" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "Visszatérítés" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "Csere" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "Visszatérítés" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "Elutasított" #: InvenTree/validators.py:32 InvenTree/validators.py:34 msgid "Invalid physical unit" -msgstr "Érvénytelen fizikai mértékegysgé" +msgstr "Érvénytelen fizikai mértékegység" #: InvenTree/validators.py:40 msgid "Not a valid currency code" @@ -831,99 +839,127 @@ msgstr "Túlszállítás nem lehet több mint 100%" msgid "Invalid value for overage" msgstr "Érvénytelen érték a túlszállításra" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Felhasználói információ módosítása" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Jelszó beállítása" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "A jelszavaknak egyeznie kell" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Rossz jelszó lett megadva" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Rendszerinformáció" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Verzió információk" -#: build/api.py:221 +#: build/api.py:242 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/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "Fogyóeszköz" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "Opcionális" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "Követett" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "Lefoglalva" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Gyártási utasítás" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Gyártási utasítások" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Hibás választás a szülő gyártásra" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Gyártási utasítás azonosító" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Azonosító" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "Gyártás rövid leírása (opcionális)" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Szülő gyártás" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Gyártás, amihez ez a gyártás hozzá van rendelve" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,585 +968,602 @@ msgstr "Gyártás, amihez ez a gyártás hozzá van rendelve" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Alkatrész" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Válassz alkatrészt a gyártáshoz" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Vevői rendelés azonosító" -#: build/models.py:198 +#: build/models.py:202 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:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Forrás hely" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Cél hely" -#: build/models.py:216 +#: build/models.py:220 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:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Gyártási mennyiség" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Gyártandó készlet tételek száma" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Kész tételek" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Elkészült készlet tételek száma" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Gyártási állapot" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Gyártás státusz kód" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Batch kód" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Batch kód a gyártás kimenetéhez" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Létrehozás dátuma" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Befejezés cél dátuma" -#: build/models.py:258 +#: build/models.py:262 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:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" -msgstr "Elkészítés dátuma" +msgstr "Befejezés dátuma" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "elkészítette" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Kiállította" -#: build/models.py:276 +#: build/models.py:280 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:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Felelős" -#: build/models.py:285 +#: build/models.py:289 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:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Külső link" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "Priorítás" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "Gyártási utasítás priorítása" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "Projektszám" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "Projekt kód a gyártáshoz" + +#: build/models.py:550 #, 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:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Gyártási utasítás elkészült" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Nincs gyártási kimenet megadva" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Gyártási kimenet már kész" -#: build/models.py:750 +#: build/models.py:764 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:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "Mennyiségnek nullánál többnek kell lennie" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" -msgstr "A mennyiség nem lehet mint a gyártási mennyiség" +msgstr "A mennyiség nem lehet több mint a gyártási mennyiség" -#: build/models.py:1272 -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:1265 +msgid "Build object" +msgstr "Gyártás objektum" -#: build/models.py:1281 -#, 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:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Készlet túlfoglalva" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Lefoglalt mennyiségnek nullánál többnek kell lennie" - -#: build/models.py:1303 -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:1360 -msgid "Selected stock item not found in BOM" -msgstr "Kiválasztott készlet tétel nem található az alkatrészjegyzékben" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Gyártás" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Gyártás amihez készletet foglaljunk" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Készlet tétel" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Forrás készlet tétel" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Mennyiség" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "Gyártáshoz szükséges mennyiség" + +#: build/models.py:1362 +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:1371 +#, 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:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Készlet túlfoglalva" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Lefoglalt mennyiségnek nullánál többnek kell lennie" + +#: build/models.py:1393 +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:1454 +msgid "Selected stock item does not match BOM line" +msgstr "A készlet tétel nem egyezik az alkatrészjegyzékkel" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Készlet tétel" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Forrás készlet tétel" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Készlet mennyiség amit foglaljunk a gyártáshoz" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Beépítés ebbe" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Cél készlet tétel" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Gyártás kimenet" -#: build/serializers.py:160 +#: build/serializers.py:168 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:164 +#: build/serializers.py:172 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:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Ez a gyártási kimenet már elkészült" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "Ez a gyártási kimenet nincs teljesen lefoglalva" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Add meg a mennyiséget a gyártás kimenetéhez" -#: build/serializers.py:258 +#: build/serializers.py:266 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:261 +#: build/serializers.py:269 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:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Sorozatszámok" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Add meg a sorozatszámokat a gyártás kimenetéhez" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "Sorozatszámok automatikus hozzárendelése" -#: build/serializers.py:291 +#: build/serializers.py:299 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:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 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:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "A gyártási kimenetek listáját meg kell adni" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Hely" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" -msgstr "Selejtezett termékek lokációja" +msgstr "Selejtezet gyártási kimenetek helye" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "Foglalások törlése" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" -msgstr "" +msgstr "Selejtezett kimenetek foglalásainak felszabadítása" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" -msgstr "Selejtezés oka(i)" +msgstr "Selejtezés oka" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "A kész gyártási kimenetek helye" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Állapot" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "Hiányos foglalás elfogadása" -#: build/serializers.py:502 +#: build/serializers.py:510 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:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "Lefoglalt készlet levonása" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "Az összes lefoglalt tétel levonása a készletről" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "Befejezetlen kimenetek törlése" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "A nem befejezett gyártási kimenetek törlése" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "Nem engedélyezett" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "Gyártásban fel lett használva" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "Foglalás felszabadítása a készre jelentés előtt" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "Túlfoglalt készlet" -#: build/serializers.py:633 +#: build/serializers.py:641 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:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "Pár készlet tétel túl lett foglalva" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "Kiosztatlanok elfogadása" -#: build/serializers.py:649 +#: build/serializers.py:657 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:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "A szükséges készlet nem lett teljesen lefoglalva" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Befejezetlenek elfogadása" -#: build/serializers.py:665 +#: build/serializers.py:673 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:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "Szükséges gyártási mennyiség nem lett elérve" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "A gyártási utasítás befejezetlen kimeneteket tartalmaz" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "Alkatrészjegyzék tétel" +#: build/serializers.py:722 +msgid "Build Line" +msgstr "Gyártás sor" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "Gyártás kimenet" -#: build/serializers.py:732 +#: build/serializers.py:740 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:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "Gyártás sor tétel" + +#: build/serializers.py:790 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:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "A tételnek kell legyen készlete" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Rendelkezésre álló mennyiség ({q}) túllépve" -#: build/serializers.py:852 +#: build/serializers.py:859 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:859 +#: build/serializers.py:866 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:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "Ez a készlet tétel már le lett foglalva ehhez a gyártási kimenethez" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "A lefoglalandó tételeket meg kell adni" -#: build/serializers.py:943 +#: build/serializers.py:947 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:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "Hely kizárása" -#: build/serializers.py:952 +#: build/serializers.py:956 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:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "Felcserélhető készlet" -#: build/serializers.py:958 +#: build/serializers.py:962 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:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "Készlet helyettesítés" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "Helyettesítő alkatrészek foglalásának engedélyezése" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "Opcionális tételek" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "Opcionális tételek lefoglalása a gyártáshoz" @@ -1529,7 +1582,7 @@ msgstr "A {bo} gyártás most már késésben van" #: build/templates/build/build_base.html:18 msgid "Part thumbnail" -msgstr "" +msgstr "Alkatrész bélyegkép" #: build/templates/build/build_base.html:39 #: company/templates/company/supplier_part.html:36 @@ -1539,6 +1592,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Vonalkód műveletek" @@ -1617,69 +1671,67 @@ msgstr "Gyártás befejezése" msgid "Build Description" msgstr "Gyártás leírása" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "Ehhez a gyártási utasításhoz nem készült kimenet" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "Gyártási utasítás elkészültnek jelölhető" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "Befejezetlen gyártási kimenetek vannak" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "Szükséges gyártási mennyiség még nincs meg" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 msgid "Stock has not been fully allocated to this Build Order" 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Cél dátum" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "Ez a gyártás %(target)s-n volt esedékes" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "Késésben" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Kész" +#: build/templates/build/build_base.html:178 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" +msgstr "Befejezett kimenetek" -#: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1687,32 +1739,32 @@ msgstr "Kész" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Vevői rendelés" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Kiállította" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "Prioritás" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "Gyártási utasítás törlése" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "Gyártási utasítás QR kódja" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "Vonalkód gyártáshoz rendelése" @@ -1728,8 +1780,8 @@ 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:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Cél" @@ -1743,21 +1795,21 @@ msgstr "Lefoglalt alkatrészek" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Batch" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Létrehozva" @@ -1765,147 +1817,106 @@ msgstr "Létrehozva" msgid "No target date set" msgstr "Nincs céldátum beállítva" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Kész" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "Gyártás nincs kész" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "Alárendelt gyártások" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "Készlet foglalása gyártáshoz" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: build/templates/build/detail.html:181 +msgid "Deallocate stock" +msgstr "Készlet felszabadítása" + +#: build/templates/build/detail.html:182 +msgid "Deallocate Stock" msgstr "Készlet felszabadítása" #: build/templates/build/detail.html:184 -msgid "Unallocate Stock" -msgstr "Készlet felszabadítása" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "Automatikus készlet foglalás a gyártáshoz" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "Automata foglalás" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "Manuális készlet foglalás a gyártáshoz" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "Készlet foglalása" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Szükséges alkatrészek rendelése" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Alkatrész rendelés" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "A teljes szükséges készlet le lett foglalva ehhez a gyártási utasításhoz" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "Nincs minden készlet lefoglalva ehhez a gyártási utasításhoz" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "Kiválasztott tételek lefoglalása" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "Ez a gyártási utasítás egyáltalán nem tartalmaz nem követett alkatrészjegyzék tételt" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "Befejezetlen gyártási kimenetek" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "Új gyártási kimenet létrehozása" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "Új gyártási kimenet" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "Kimeneti műveletek" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "Kiválasztott gyártási kimenetek befejezése" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "Befejezett kimenetek" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "Kiválasztott gyártási kimenetek selejtezése" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "Gyártási kimenetek selejtezése" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "Kiválasztott gyártási kimenetek törlése" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "Kimenetek törlése" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" -msgstr "Elhasznált készlet" +msgstr "Felhasznált készlet" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "Befejezett gyártási kimenetek" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Mellékletek" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Gyártási megjegyzések" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "Lefoglalás kész" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" -msgstr "A szükséges készlet már mind le lett foglalva" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" +msgstr "Minden sor rendben lefoglalva" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Új gyártási utasítás" @@ -1913,14 +1924,10 @@ msgstr "Új gyártási utasítás" msgid "Build Order Details" msgstr "Gyártási utasítás részletei" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "Befejezetlen kimenetek" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "Befejezett kimenetek" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1967,16 +1974,6 @@ msgstr "Frissítve" msgid "Timestamp of last update" msgstr "Legutóbbi frissítés időpontja" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "Projektszám" - #: common/models.py:105 msgid "Unique project code" msgstr "Egyedi projektszám" @@ -2127,8 +2124,8 @@ 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:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "nap" @@ -2260,9 +2257,9 @@ msgstr "Kategória paraméter sablonok másolása" msgid "Copy category parameter templates when creating a part" msgstr "Kategória paraméter sablonok másolása alkatrész létrehozásakor" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Sablon" @@ -2270,10 +2267,10 @@ msgstr "Sablon" msgid "Parts are templates by default" msgstr "Alkatrészek alapból sablon alkatrészek legyenek" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Gyártmány" @@ -2281,8 +2278,8 @@ msgstr "Gyártmány" 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:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Összetevő" @@ -2290,7 +2287,7 @@ msgstr "Összetevő" msgid "Parts can be used as sub-components by default" msgstr "Alkatrészek alapból használhatók összetevőként más alkatrészekhez" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Beszerezhető" @@ -2298,8 +2295,8 @@ msgstr "Beszerezhető" msgid "Parts are purchaseable by default" msgstr "Alkatrészek alapból beszerezhetők legyenek" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Értékesíthető" @@ -2307,10 +2304,10 @@ msgstr "Értékesíthető" msgid "Parts are salable by default" msgstr "Alkatrészek alapból eladhatók legyenek" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Követésre kötelezett" @@ -2318,10 +2315,10 @@ msgstr "Követésre kötelezett" msgid "Parts are trackable by default" msgstr "Alkatrészek alapból követésre kötelezettek legyenek" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Virtuális" @@ -2353,7 +2350,7 @@ msgstr "Kezdeti készlet adatok" 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:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Kezdeti beszállítói adatok" @@ -2378,525 +2375,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "Alkatrész kategória alapértelmezett ikon (üres ha nincs)" #: common/models.py:1253 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 msgid "Minimum Pricing Decimal Places" msgstr "Áraknál használt tizedesjegyek min. száma" -#: common/models.py:1254 +#: common/models.py:1261 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:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "Áraknál használt tizedesjegyek max. száma" -#: common/models.py:1265 +#: common/models.py:1272 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:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "Beszállítói árazás használata" -#: common/models.py:1276 +#: common/models.py:1283 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:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "Beszerzési előzmények felülbírálása" -#: common/models.py:1283 +#: common/models.py:1290 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:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "Készlet tétel ár használata" -#: common/models.py:1290 +#: common/models.py:1297 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:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "Készlet tétel ár kora" -#: common/models.py:1297 +#: common/models.py:1304 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:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "Alkatrészváltozat árak használata" -#: common/models.py:1308 +#: common/models.py:1315 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:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "Csak az aktív változatokat" -#: common/models.py:1315 +#: common/models.py:1322 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:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "Árazás újraszámítás gyakoriság" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "Árak automatikus frissítése ennyi nap után" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "Belső árak" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "Alkatrészekhez belső ár engedélyezése" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "Belső ár felülbírálása" -#: common/models.py:1340 +#: common/models.py:1347 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:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "Címke nyomtatás engedélyezése" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "Címke nyomtatás engedélyezése a web felületről" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "Címke kép DPI" -#: common/models.py:1354 +#: common/models.py:1361 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:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "Riportok engedélyezése" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "Riportok előállításának engedélyezése" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Debug mód" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "Riportok előállítása HTML formátumban (hibakereséshez)" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Lapméret" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Alapértelmezett lapméret a PDF riportokhoz" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "Teszt riportok engedélyezése" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "Teszt riportok előállításának engedélyezése" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "Teszt riportok hozzáadása" -#: common/models.py:1396 +#: common/models.py:1403 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:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "Globálisan egyedi sorozatszámok" -#: common/models.py:1403 +#: common/models.py:1410 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:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "Sorozatszámok automatikus kitöltése" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "Sorozatszámok automatikus kitöltése a formokon" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "Kimerült készlet törlése" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "Alapértelmezett művelet mikor a készlet tétel elfogy" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "Batch kód sablon" -#: common/models.py:1424 +#: common/models.py:1431 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:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "Készlet lejárata" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "Készlet lejárat kezelésének engedélyezése" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "Lejárt készlet értékesítése" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "Lejárt készlet értékesítésének engedélyezése" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "Álló készlet ideje" -#: common/models.py:1444 +#: common/models.py:1451 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:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "Lejárt készlet gyártása" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "Gyártás engedélyezése lejárt készletből" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "Készlet tulajdonosok kezelése" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "Tuajdonosok kezelésének engedélyezése a készlet helyekre és tételekre" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "Hely alapértelmezett ikon" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "Hely alapértelmezett ikon (üres ha nincs)" -#: common/models.py:1471 +#: common/models.py:1478 +msgid "Show Installed Stock Items" +msgstr "Beépített készlet megjelenítése" + +#: common/models.py:1479 +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:1485 msgid "Build Order Reference Pattern" msgstr "Gyártási utasítás azonosító minta" -#: common/models.py:1472 +#: common/models.py:1486 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:1478 +#: common/models.py:1492 msgid "Enable Return Orders" msgstr "Visszavétel engedélyezése" -#: common/models.py:1479 +#: common/models.py:1493 msgid "Enable return order functionality in the user interface" msgstr "Visszavételi utasítások engedélyezése a felületen" -#: common/models.py:1485 +#: common/models.py:1499 msgid "Return Order Reference Pattern" msgstr "Visszavételi utasítás azonosító minta" -#: common/models.py:1486 +#: common/models.py:1500 msgid "Required pattern for generating Return Order reference field" msgstr "Szükséges minta a visszavételi utasítás azonosító mező előállításához" -#: common/models.py:1492 +#: common/models.py:1506 msgid "Edit Completed Return Orders" msgstr "Befejezett visszavételi utasítás szerkesztése" -#: common/models.py:1493 +#: common/models.py:1507 msgid "Allow editing of return orders after they have been completed" msgstr "Visszavételi utasítások szerkesztésének engedélyezése befejezés után" -#: common/models.py:1499 +#: common/models.py:1513 msgid "Sales Order Reference Pattern" msgstr "Vevői rendelés azonosító minta" -#: common/models.py:1500 +#: common/models.py:1514 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:1506 +#: common/models.py:1520 msgid "Sales Order Default Shipment" msgstr "Vevői rendeléshez alapértelmezett szállítmány" -#: common/models.py:1507 +#: common/models.py:1521 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:1513 +#: common/models.py:1527 msgid "Edit Completed Sales Orders" msgstr "Befejezett vevői rendelés szerkesztése" -#: common/models.py:1514 +#: common/models.py:1528 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:1520 +#: common/models.py:1534 msgid "Purchase Order Reference Pattern" msgstr "Beszerzési rendelés azonosító minta" -#: common/models.py:1521 +#: common/models.py:1535 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:1527 +#: common/models.py:1541 msgid "Edit Completed Purchase Orders" msgstr "Befejezett beszerzési rendelés szerkesztése" -#: common/models.py:1528 +#: common/models.py:1542 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:1535 +#: common/models.py:1549 msgid "Enable password forgot" msgstr "Elfelejtett jelszó engedélyezése" -#: common/models.py:1536 +#: common/models.py:1550 msgid "Enable password forgot function on the login pages" msgstr "Elfelejtett jelszó funkció engedélyezése a bejentkező oldalon" -#: common/models.py:1542 +#: common/models.py:1556 msgid "Enable registration" msgstr "Regisztráció engedélyezése" -#: common/models.py:1543 +#: common/models.py:1557 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:1549 +#: common/models.py:1563 msgid "Enable SSO" msgstr "SSO engedélyezése" -#: common/models.py:1550 +#: common/models.py:1564 msgid "Enable SSO on the login pages" msgstr "SSO engedélyezése a bejelentkező oldalon" -#: common/models.py:1556 +#: common/models.py:1570 msgid "Enable SSO registration" msgstr "SSO regisztráció engedélyezése" -#: common/models.py:1557 +#: common/models.py:1571 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:1563 +#: common/models.py:1577 msgid "Email required" msgstr "Email szükséges" -#: common/models.py:1564 +#: common/models.py:1578 msgid "Require user to supply mail on signup" msgstr "Kötelező email megadás regisztrációkor" -#: common/models.py:1570 +#: common/models.py:1584 msgid "Auto-fill SSO users" msgstr "SSO felhasználók automatikus kitöltése" -#: common/models.py:1571 +#: common/models.py:1585 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:1577 +#: common/models.py:1591 msgid "Mail twice" msgstr "Email kétszer" -#: common/models.py:1578 +#: common/models.py:1592 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:1584 +#: common/models.py:1598 msgid "Password twice" msgstr "Jelszó kétszer" -#: common/models.py:1585 +#: common/models.py:1599 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:1591 +#: common/models.py:1605 msgid "Allowed domains" msgstr "Engedélyezett domainek" -#: common/models.py:1592 +#: common/models.py:1606 msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "Bejelentkezés korlátozása megadott domain-ekre (vesszővel elválasztva, @-al kezdve)" +msgstr "Feliratkozás korlátozása megadott domain-ekre (vesszővel elválasztva, @-al kezdve)" -#: common/models.py:1598 +#: common/models.py:1612 msgid "Group on signup" msgstr "Csoport regisztráláskor" -#: common/models.py:1599 +#: common/models.py:1613 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:1605 +#: common/models.py:1619 msgid "Enforce MFA" msgstr "Többfaktoros hitelesítés kényszerítése" -#: common/models.py:1606 +#: common/models.py:1620 msgid "Users must use multifactor security." msgstr "A felhasználóknak többfaktoros hitelesítést kell használniuk." -#: common/models.py:1612 +#: common/models.py:1626 msgid "Check plugins on startup" msgstr "Pluginok ellenőrzése indításkor" -#: common/models.py:1613 +#: common/models.py:1627 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:1620 -msgid "Check plugin signatures" -msgstr "Plugin aláírások ellenőrzése" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "Pluginok aláírásainak ellenőrzése és megjelenítése" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "URL integráció engedélyezése" -#: common/models.py:1629 +#: common/models.py:1636 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:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "Navigációs integráció engedélyezése" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "Navigációs integráció engedélyezése a pluginok számára" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "App integráció engedélyezése" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "App hozzáadásának engedélyezése a pluginok számára" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "Ütemezés integráció engedélyezése" -#: common/models.py:1653 +#: common/models.py:1660 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:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "Esemény integráció engedélyezése" -#: common/models.py:1661 +#: common/models.py:1668 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:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "Projektszámok engedélyezése" -#: common/models.py:1669 +#: common/models.py:1676 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:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "Leltár funkció" -#: common/models.py:1676 +#: common/models.py:1683 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:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "Automatikus leltár időpontja" -#: common/models.py:1683 +#: common/models.py:1690 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:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "Riport törlési gyakoriság" -#: common/models.py:1693 +#: common/models.py:1700 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:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 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:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "Nincs nyomtató (nyomtatás PDF-be)" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "Inaktív alkatrészek elrejtése" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Nem aktív alkatrészek elrejtése a kezdőlapon" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "Értesítésre beállított alkatrészek megjelenítése" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "Alkatrész értesítések megjelenítése a főoldalon" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "Értesítésre beállított kategóriák megjelenítése" -#: common/models.py:1766 +#: common/models.py:1773 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:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Legújabb alkatrészek megjelenítése" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "Legújabb alkatrészek megjelenítése a főoldalon" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "Legfrissebb alkatrész szám" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "Főoldalon megjelenítendő legújabb alkatrészek" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "Jóváhagyás nélküli alkatrészjegyzékek megjelenítése" @@ -2914,504 +2911,497 @@ 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:1800 -msgid "Recent Stock Count" -msgstr "Legfrissebb készlet mennyiség" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "Főoldalon megjelenítendő legújabb készlet tételek száma" - -#: common/models.py:1807 msgid "Show low stock" msgstr "Alacsony készlet megjelenítése" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "Alacsony készletek megjelenítése a főoldalon" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "Kimerült készlet megjelenítése" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "Kimerült készletek megjelenítése a főoldalon" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "Gyártáshoz szükséges készlet megjelenítése" -#: common/models.py:1822 +#: common/models.py:1815 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:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "Lejárt készlet megjelenítése" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "Lejárt készletek megjelenítése a főoldalon" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "Állott készlet megjelenítése" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "Álló készletek megjelenítése a főoldalon" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "Függő gyártások megjelenítése" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "Folyamatban lévő gyártások megjelenítése a főoldalon" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "Késésben lévő gyártások megjelenítése" -#: common/models.py:1850 +#: common/models.py:1843 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:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "Kintlévő beszerzési rendelések megjelenítése" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "Kintlévő beszerzési rendelések megjelenítése a főoldalon" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "Késésben lévő megrendelések megjelenítése" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "Késésben lévő megrendelések megjelenítése a főoldalon" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "Függő vevői rendelések megjelenítése" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "Függő vevői rendelések megjelenítése a főoldalon" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "Késésben lévő vevői rendelések megjelenítése" -#: common/models.py:1878 +#: common/models.py:1871 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:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" -msgstr "" +msgstr "Függő vevői szállítmányok megjelenítése" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" -msgstr "" +msgstr "Folyamatban lévő vevői szállítmányok megjelenítése a főoldalon" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "Hírek megjelenítése" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "Hírek megjelenítése a főoldalon" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "Beágyazott címke megjelenítés" -#: common/models.py:1899 +#: common/models.py:1892 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:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "Alapértelmezett címkenyomtató" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "Melyik címkenyomtató legyen az alapértelmezett" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "Beágyazott riport megjelenítés" -#: common/models.py:1913 +#: common/models.py:1906 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:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "Alkatrészek keresése" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "Alkatrészek megjelenítése a keresési előnézetben" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "Beszállítói alkatrészek keresése" -#: common/models.py:1927 +#: common/models.py:1920 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:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "Gyártói alkatrészek keresése" -#: common/models.py:1934 +#: common/models.py:1927 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:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "Inaktív alkatrészek elrejtése" -#: common/models.py:1941 +#: common/models.py:1934 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:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "Kategóriák keresése" -#: common/models.py:1948 +#: common/models.py:1941 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:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "Készlet keresése" -#: common/models.py:1955 +#: common/models.py:1948 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:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "Nem elérhető készlet tételek elrejtése" -#: common/models.py:1962 +#: common/models.py:1955 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:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "Helyek keresése" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "Készlet helyek megjelenítése a keresési előnézetben" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "Cégek keresése" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "Cégek megjelenítése a keresési előnézetben" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "Gyártási utasítások keresése" -#: common/models.py:1983 +#: common/models.py:1976 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:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "Beszerzési rendelések keresése" -#: common/models.py:1990 +#: common/models.py:1983 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:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "Inaktív beszerzési rendelések kihagyása" -#: common/models.py:1997 +#: common/models.py:1990 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:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "Vevői rendelések keresése" -#: common/models.py:2004 +#: common/models.py:1997 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:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "Inaktív vevői rendelések kihagyása" -#: common/models.py:2011 +#: common/models.py:2004 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:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "Visszavételi utasítások keresése" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "Visszavételi utasítások megjelenítése a keresés előnézet ablakban" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "Inaktív visszavételi utasítások kihagyása" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "Inaktív visszavételi utasítások kihagyása a keresési előnézet találataiból" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "Keresési előnézet eredményei" -#: common/models.py:2032 +#: common/models.py:2025 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:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "Regex keresés" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "Reguláris kifejezések engedélyezése a keresésekben" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "Teljes szó keresés" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "A keresések csak teljes szóra egyező találatokat adjanak" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "Mennyiség megjelenítése a formokon" -#: common/models.py:2053 +#: common/models.py:2046 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:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "ESC billentyű zárja be a formot" -#: common/models.py:2060 +#: common/models.py:2053 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:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "Rögzített menüsor" -#: common/models.py:2067 +#: common/models.py:2060 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:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "Dátum formátum" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "Preferált dátum formátum a dátumok kijelzésekor" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Alkatrész ütemezés" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "Alkatrész ütemezési információk megjelenítése" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Alkatrész leltár" -#: common/models.py:2096 +#: common/models.py:2089 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:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "Táblázati szöveg hossz" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "Maximális szöveg hossz ami megjelenhet a táblázatokban" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" -msgstr "" +msgstr "Alapértelmezett alkatrész címke sablon" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" -msgstr "" +msgstr "Az alapértelmezetten kiválasztott alkatrész címke sablon" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" -msgstr "" +msgstr "Alapértelmezett készlet címke sablon" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" -msgstr "" +msgstr "Az alapértelmezetten kiválasztott készlet címke sablon" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" -msgstr "" +msgstr "Alapértelmezett készlethely címke sablon" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" -msgstr "" +msgstr "Az alapértelmezetten kiválasztott készlethely címke sablon" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "Ársáv mennyiség" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Ár" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "Egységár egy meghatározott mennyiség esetén" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "Végpont" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "Végpont ahol ez a webhook érkezik" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "Webhook neve" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "Aktív" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "Aktív-e ez a webhook" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "Token" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "Token a hozzáféréshez" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "Titok" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "Megosztott titok a HMAC-hoz" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "Üzenet azonosító" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "Egyedi azonosító ehhez az üzenethez" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "Kiszolgáló" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "Kiszolgáló ahonnan ez az üzenet érkezett" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "Fejléc" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "Üzenet fejléce" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "Törzs" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "Üzenet törzse" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "Végpont amin ez az üzenet érkezett" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "Dolgozott rajta" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "Befejeződött a munka ezzel az üzenettel?" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "Id" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "Cím" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "Közzétéve" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "Szerző" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "Összefoglaló" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "Elolvasva" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "Elolvasva?" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3421,7 +3411,7 @@ msgstr "Elolvasva?" msgid "Image" msgstr "Kép" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "Képfájl" @@ -3498,7 +3488,7 @@ msgstr "A cég leírása" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Weboldal" @@ -3506,303 +3496,388 @@ msgstr "Weboldal" msgid "Company website URL" msgstr "Cég weboldala" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Cím" - -#: company/models.py:119 -msgid "Company address" -msgstr "Cég címe" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Telefonszám" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Kapcsolattartó telefonszáma" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "Email" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Kapcsolattartó email címe" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Névjegy" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Kapcsolattartó" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "Link a külső céginformációhoz" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "vevő-e" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "Értékesítesz alkatrészeket ennek a cégnek?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "beszállító-e" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "Vásárolsz alkatrészeket ettől a cégtől?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "gyártó-e" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "Gyárt ez a cég alkatrészeket?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "Cég által használt alapértelmezett pénznem" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Cég" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "A cégnek már van elsődleges címe" + +#: company/models.py:329 +msgid "Select company" +msgstr "Cég kiválasztása" + +#: company/models.py:332 +msgid "Address title" +msgstr "Cím megnevezése" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "Címhez tartozó leírás, megnevezés" + +#: company/models.py:337 +msgid "Primary address" +msgstr "Elsődleges cím" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "Beállítás elsődleges címként" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "1. sor" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "Cím első sora" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "2. sor" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "Cím második sora" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "Irányítószám" + +#: company/models.py:356 +msgid "City/Region" +msgstr "Város/Régió" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "Irányítószám város/régió" + +#: company/models.py:361 +msgid "State/Province" +msgstr "Állam/Megye" + +#: company/models.py:362 +msgid "State or province" +msgstr "Állam vagy megye" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "Ország" + +#: company/models.py:367 +msgid "Address country" +msgstr "Cím országa" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "Megjegyzés a futárnak" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "Futárnak szóló megjegyzések" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "Belső szállítási megjegyzések" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "Szállítási megjegyzések belső használatra" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "Link a címinformációkhoz (külső)" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Kiindulási alkatrész" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Válassz alkatrészt" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Gyártó" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Gyártó kiválasztása" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "MPN" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "Gyártói cikkszám" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "URL link a gyártói alkatrészhez" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "Gyártói alkatrész leírása" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Gyártói alkatrész" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Paraméter neve" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Érték" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Paraméter értéke" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Mértékegység" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "Paraméter mértékegység" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" -msgstr "" +msgstr "A csomagolási egységnek kompatibilisnek kell lennie az alkatrész mértékegységgel" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" -msgstr "" +msgstr "Csomagolási mennyiségnek nullánál többnek kell lennie" -#: company/models.py:520 +#: company/models.py:669 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:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Beszállító" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Beszállító kiválasztása" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "SKU" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "Beszállítói cikkszám" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "Gyártói alkatrész kiválasztása" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "URL link a beszállítói alkatrészhez" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "Beszállítói alkatrész leírása" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Megjegyzés" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "alap költség" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimális díj (pl. tárolási díj)" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "Csomagolás" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "Alkatrész csomagolás" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "Csomagolási mennyiség" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." -msgstr "" +msgstr "Egy csomagban kiszállítható mennyiség, hagyd üresen az egyedi tételeknél." -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "többszörös" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "Többszörös rendelés" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "Elérhető" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "Beszállítónál elérhető mennyiség" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "Elérhetőség frissítve" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "Utolsó elérhetőségi adat frissítés" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "Beszállító által használt alapértelmezett pénznem" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Beszerzési rendelés létrehozása" @@ -3815,7 +3890,7 @@ msgid "Edit company information" msgstr "Cég adatainak szerkesztése" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Cég szerkesztése" @@ -3855,17 +3930,17 @@ msgstr "Kép letöltése URL-ről" msgid "Delete image" msgstr "Kép törlése" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Vevő" @@ -3873,6 +3948,13 @@ msgstr "Vevő" msgid "Uses default currency" msgstr "Alapértelmezett pénznemet használja" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Cím" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Telefonszám" @@ -3905,7 +3987,7 @@ msgstr "Kép letöltése" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Beszállítói alkatrészek" @@ -3915,129 +3997,121 @@ msgstr "Új beszállítói alkatrész létrehozása" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Új beszállítói alkatrész" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Alkatrész rendelés" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Alkatrész törlés" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Alkatrész törlés" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 msgid "Manufacturer Parts" msgstr "Gyártói alkatrészek" -#: company/templates/company/detail.html:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Új gyártói alkatrész létrehozása" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Új gyártói alkatrész" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Beszállítói készlet" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Beszerzési rendelések" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Beszerzési rendelés létrehozása" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Új beszerzési rendelés" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "Vevői rendelések" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Vevői rendelés létrehozása" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "Új vevői rendelés" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "Hozzárendelt készlet" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "Visszavételi utasítások" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "Visszavételi utasítás létrehozása" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "Új visszavételi utasítás" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Cég megjegyzések" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "Cég névjegyek" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: company/templates/company/detail.html:187 +#: company/templates/company/detail.html:188 msgid "Add Contact" msgstr "Névjegy hozzáadása" +#: company/templates/company/detail.html:206 +msgid "Company addresses" +msgstr "Cég címei" + +#: company/templates/company/detail.html:210 +#: company/templates/company/detail.html:211 +msgid "Add Address" +msgstr "Cím hozzáadása" + #: company/templates/company/index.html:8 msgid "Supplier List" msgstr "Beszállítók listája" @@ -4049,17 +4123,17 @@ msgstr "Gyártók" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "Alkatrész rendelés" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "Gyártói alkatrész szerkesztése" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "Gyártói alkatrész törlése" @@ -4079,40 +4153,22 @@ msgstr "Nincs elérhető gyártói információ" msgid "Suppliers" msgstr "Beszállítók" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "Beszállítói alkatrész törlése" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Törlés" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Paraméterek" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "Új paraméter" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Paraméterek törlése" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "Paraméter hozzáadása" @@ -4136,23 +4192,28 @@ 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:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "Beszállítói alkatrész" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "Beszállítói alkatrész műveletek" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "Alkatrész rendelése" @@ -4163,13 +4224,13 @@ msgstr "Elérhetőség frissítése" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "Beszállítói alkatrész szerkesztése" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "Beszállítói alkatrész másolása" @@ -4190,13 +4251,13 @@ msgid "Supplier Part Stock" msgstr "Beszállítói készlet" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "Új készlet tétel létrehozása" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "Új készlet tétel" @@ -4204,37 +4265,37 @@ msgstr "Új készlet tétel" msgid "Supplier Part Orders" msgstr "Beszállítói alkatrész rendelések" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Árinformációk" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "Ársáv hozzáadása" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "Beszállítói alkatrész QR kód" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "Vonalkód hozzárendelése a beszállítói alkatrészhez" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "Alkatrész elérhetőség frissítése" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Készlet tételek" @@ -4260,7 +4321,7 @@ msgstr "Vevők" msgid "New Customer" msgstr "Új vevő" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Cégek" @@ -4268,78 +4329,71 @@ msgstr "Cégek" msgid "New Company" msgstr "Új cég" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "Címke neve" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "Címke leírása" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "Címke" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "Címke sablon fájl" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "Engedélyezve" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "Címke sablon engedélyezve" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Szélesség [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "Címke szélessége, mm-ben" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Magasság [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "Címke magassága, mm-ben" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "Fájlnév minta" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "Minta a címke fájlnevek előállításához" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," -msgstr "Lekérdezés szűrők (vesszővel elválasztott kulcs=érték párok)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" +msgstr "Lekérdezés szűrők (vesszővel elválasztott kulcs=érték párok)" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Szűrők" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "Lekérdezés szűrők (vesszővel elválasztott kulcs=érték párok" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "Alkatrész lekérdezés szűrők (vesszővel elválasztott kulcs=érték párok)" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" -msgstr "QC kód" +msgid "QR Code" +msgstr "QR kód" #: label/templates/label/part/part_label_code128.html:31 #: label/templates/label/stocklocation/qr_and_text.html:31 @@ -4347,569 +4401,573 @@ msgstr "QC kód" msgid "QR code" msgstr "QR kód" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "Teljes ár" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "Nincs egyező beszerzési rendelés" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Beszerzési rendelés" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "Visszavételi utasítás" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "Ismeretlen" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "A rendelés teljes ára" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" -msgstr "Megrendelés pénzneme" +msgstr "Rendelés pénzneme" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" -msgstr "Megrendeléshez használt pénznem (hagyd üresen a cég alapértelmezett pénznemének használatához)" +msgstr "Megrendeléshez használt pénznem (hagyd üresen a cégnél alapértelmezetthez)" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "A kapcsolattartó nem egyezik a kiválasztott céggel" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "Rendelés leírása (opcionális)" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "Válassz projektszámot ehhez a rendeléshez" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "Link külső weboldalra" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Várt teljesítési dátuma a megrendelésnek. Ezután már késésben lévőnek számít majd." -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "Készítette" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "Felhasználó vagy csoport aki felelőse ennek a rendelésnek" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "Kapcsolattartó ehhez a rendeléshez" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "Cég címei ehhez a rendeléshez" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "Rendelés azonosító" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "Beszerzési rendelés állapota" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "Cég akitől a tételek beszerzésre kerülnek" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "Beszállítói azonosító" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "Beszállítói rendelés azonosító kód" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "érkeztette" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "Kiállítás dátuma" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "Kiállítás dátuma" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "Rendelés teljesítési dátuma" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "Az alkatrész beszállítója meg kell egyezzen a beszerzési rendelés beszállítójával" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "Mennyiség pozitív kell legyen" -#: order/models.py:777 +#: order/models.py:793 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:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "Vevői azonosító " -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "Megrendelés azonosító kódja a vevőnél" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "Kiszállítás dátuma" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "szállította" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "A rendelés nem teljesíthető mivel nincs hozzárendelve alkatrész" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "Csak nyitott rendelés jelölhető késznek" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "A rendelés nem jelölhető késznek mivel függő szállítmányok vannak" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "A rendelés nem jelölhető késznek mivel nem teljesített sortételek vannak" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "Tétel mennyiség" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "Sortétel azonosító" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "Sortétel megjegyzései" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Cél dátuma ennek a sortételnek (hagyd üresen a rendelés céldátum használatához)" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" -msgstr "" +msgstr "Sortétel leírása (opcionális)" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "Kontextus" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "További kontextus ehhez a sorhoz" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "Egységár" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "Beszállítói alkatrésznek egyeznie kell a beszállítóval" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "törölve" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "Rendelés" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "Beszállítói alkatrész" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "Beérkezett" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "Érkezett tételek száma" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Beszerzési ár" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "Beszerzési egységár" -#: order/models.py:1222 +#: order/models.py:1238 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:1288 +#: order/models.py:1304 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:1293 +#: order/models.py:1309 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:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "Eladási ár" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "Eladási egységár" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "Szállított mennyiség" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "Szállítás dátuma" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" -msgstr "Szállítás dátuma" +msgstr "Szállítási dátum" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" -msgstr "" +msgstr "Kézbesítés dátuma" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "Ellenőrizte" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "Felhasználó aki ellenőrizte ezt a szállítmányt" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "Szállítmány" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "Szállítmány száma" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "Nyomkövetési szám" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "Szállítmány nyomkövetési információ" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "Számlaszám" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "Hozzátartozó számla referencia száma" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "Szállítmány már elküldve" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "Szállítmány nem tartalmaz foglalt készlet tételeket" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "Készlet tétel nincs hozzárendelve" -#: order/models.py:1589 +#: order/models.py:1605 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:1591 +#: order/models.py:1607 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:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "A lefoglalandó mennyiség nem haladhatja meg a készlet mennyiségét" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 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:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "Vevői rendelés nem egyezik a szállítmánnyal" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "Szállítmány nem egyezik a vevői rendeléssel" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "Sor" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "Vevői rendelés szállítmány azonosító" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "Tétel" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "Válaszd ki a foglalásra szánt készlet tételt" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "Készlet foglalási mennyiség megadása" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "Visszavételi utasítás azonosító" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "Cég akitől a tételek visszavételre kerülnek" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "Visszavételi utasítás állapota" -#: order/models.py:1898 +#: order/models.py:1914 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:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "Válaszd ki a vevőtől visszavenni kívánt tételt" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "Visszavételi dátum" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "Mikor lett visszavéve a tétel" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "Kimenetel" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "Sortétel végső kimenetele" -#: order/models.py:1937 +#: order/models.py:1953 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:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "A rendelést nem lehet törölni" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 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:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "A rendelésben teljesítetlen sortételek vannak" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "A rendelés nem nyitott" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "Beszérzési ár pénzneme" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "Beszállítói alkatrészt meg kell adni" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "Beszerzési rendelést meg kell adni" -#: order/serializers.py:432 +#: order/serializers.py:439 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:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "A beszerzési rendelésnek egyeznie kell a beszállítóval" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "Sortétel" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "Sortétel nem egyezik a beszerzési megrendeléssel" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "Válassz cél helyet a beérkezett tételeknek" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "Írd be a batch kódját a beérkezett tételeknek" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "Írd be a sorozatszámokat a beérkezett tételekhez" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Vonalkód" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "Beolvasott vonalkód" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "Ez a vonalkód már használva van" -#: order/serializers.py:568 +#: order/serializers.py:575 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:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "Sortételt meg kell adni" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "A cél helyet kötelező megadni" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "Megadott vonalkódoknak egyedieknek kel lenniük" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "Eladási ár pénzneme" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "Nincsenek szállítmány részletek megadva" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "Sortétel nincs hozzárendelve ehhez a rendeléshez" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "Mennyiség pozitív kell legyen" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "Írd be a sorozatszámokat a kiosztáshoz" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "Szállítmány kiszállítva" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "Szállítmány nincs hozzárendelve ehhez a rendeléshez" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "Nincs találat a következő sorozatszámokra" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "A következő sorozatszámok már ki lettek osztva" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "Visszavételi utasítás sortétel" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "Sortétel nem egyezik a visszavételi utasítással" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "A sortétel már beérkezett" -#: order/serializers.py:1596 +#: order/serializers.py:1603 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:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "Sortétel pénzneme" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "Késésben lévő beszerzés" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "A {po} beszerzési rendelés most már késésben van" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "Késésben lévő vevői rendelés" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "A {so} vevői rendelés most már késésben van" @@ -4956,82 +5014,74 @@ msgid "Issue Order" msgstr "Rendelés kiküldése" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "Érkezett tételek bevételezése" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "Bevételezés" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "Rendelés teljesítettnek jelölése" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "Rendelés befejezése" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" -msgstr "" +msgstr "Beszállítói alkatrész bélyegkép" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "Rendelés azonosítója" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "Rendelés leírása" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "Rendelés állapota" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "Nincs elérhető beszállítói információ" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "Kész sortételek" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "Hiányos" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "Kiküldve" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "Teljes költség" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "A teljes költség nem számolható" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "Beszerzési rendelés QR kódja" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "Vonalkód hozzáadása a beszerzési rendeléshez" @@ -5084,13 +5134,13 @@ msgstr "Kijelöltek másolása" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "Sor törlése" @@ -5151,9 +5201,9 @@ msgstr "Beszerzési rendelés tételei" #: 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "Sortétel hozzáadása" @@ -5164,37 +5214,32 @@ msgstr "Sortétel hozzáadása" msgid "Receive Line Items" msgstr "Sortételek bevételezése" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "Sortételek törlése" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: order/templates/order/return_order_detail.html:45 +#: order/templates/order/sales_order_detail.html:41 msgid "Extra Lines" msgstr "Egyéb tételek" -#: order/templates/order/purchase_order_detail.html:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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 "Egyéb tétel hozzáadása" -#: order/templates/order/purchase_order_detail.html:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "Érkezett tételek" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "Rendelés megjegyzések" #: order/templates/order/return_order_base.html:18 #: order/templates/order/sales_order_base.html:18 msgid "Customer logo thumbnail" -msgstr "" +msgstr "Vevő logó bélyegkép" #: order/templates/order/return_order_base.html:61 msgid "Print return order report" @@ -5207,29 +5252,29 @@ msgstr "Csomagolási lista nyomtatása" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "Vevői azonosító" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "Teljes költség" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "Visszavételi utasítás QR kódja" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "Vonalkód visszavételi utasításhoz rendelése" @@ -5247,7 +5292,7 @@ msgid "Ship Items" msgstr "Tételek kiszállítása" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "Vevői rendelés befejezése, minden kiszállítva" @@ -5256,16 +5301,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "Ehhez a vevői rendeléshez nincs minden alkatrész lefoglalva" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: order/templates/order/sales_order_detail.html:99 #: order/templates/order/so_sidebar.html:11 msgid "Completed Shipments" msgstr "Kész szállítmányok" -#: order/templates/order/sales_order_base.html:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "Vevő rendelés QR kódja" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "Vonalkód hozzáadása a vevői rendeléshez" @@ -5273,18 +5318,17 @@ msgstr "Vonalkód hozzáadása a vevői rendeléshez" msgid "Sales Order Items" msgstr "Vevői rendelés tételek" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 msgid "Pending Shipments" msgstr "Függő szállítmányok" -#: order/templates/order/sales_order_detail.html:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "Műveletek" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "Új szállítmány" @@ -5310,12 +5354,12 @@ 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:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "Alkatrész ID" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "Alkatrész neve" @@ -5324,19 +5368,20 @@ msgstr "Alkatrész neve" msgid "Part Description" msgstr "Alkatrész leírása" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "IPN" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "Változat" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "Kulcsszavak" @@ -5357,24 +5402,24 @@ msgstr "Alapértelmezett készlethely ID" msgid "Default Supplier ID" msgstr "Alapértelmezett beszállító ID" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "Ebből a sablonból" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "Minimális készlet" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "Készleten" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "Rendelve" @@ -5382,23 +5427,16 @@ msgstr "Rendelve" msgid "Used In" msgstr "Felhasználva ebben" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "Lefoglalva" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "Gyártásban" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "Minimum költség" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "Maximum költség" @@ -5415,13 +5453,13 @@ msgstr "Szülő neve" msgid "Category Path" msgstr "Kategória elérési út" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Alkatrészek" @@ -5438,7 +5476,7 @@ msgstr "Alkatrészjegyzék tétel ID" msgid "Parent IPN" msgstr "Szülő IPN" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "Alkatrész IPN" @@ -5452,35 +5490,35 @@ msgstr "Minimum ár" msgid "Maximum Price" msgstr "Maximum ár" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "Beérkező beszerzési rendelés" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "Kimenő vevői rendelés" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "Gyártással előállított készlet" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "A gyártási utasításhoz szükséges készlet" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "Érvényes" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "Teljes alkatrészjegyzék jóváhagyása" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "Ennek az opciónak ki kll lennie választva" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "Alapértelmezett hely" @@ -5490,7 +5528,7 @@ msgid "Total Stock" msgstr "Teljes készlet" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "Elérhető készlet" @@ -5498,917 +5536,913 @@ msgstr "Elérhető készlet" msgid "Input quantity for price calculation" msgstr "Add meg a mennyiséget az árszámításhoz" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Alkatrész kategória" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "Alkatrész kategóriák" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "Ebben a kategóriában lévő alkatrészek helye alapban" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "Szerkezeti" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "A szerkezeti alkatrész kategóriákhoz nem lehet direktben alkatrészeket hozzáadni, csak az alkategóriáikhoz." -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "Alapértelmezett kulcsszavak" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "Ebben a kategóriában évő alkatrészek kulcsszavai alapban" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "Ikon" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "Ikon (opcionális)" -#: part/models.py:163 +#: part/models.py:165 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:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "Hibás választás a szülő alkatrészre" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "A '{p1}' alkatrész a '{p2}' alkatrészjegyzékében már szerepel (rekurzív)" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN mezőnek egyeznie kell a '{pat}' mintával" -#: part/models.py:671 +#: part/models.py:676 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:802 +#: part/models.py:807 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:807 +#: part/models.py:812 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:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "Szerkezeti kategóriákhoz nem lehet alkatrészeket rendelni!" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "Alkatrész neve" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "Sablon-e" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "Ez egy sablon alkatrész?" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "Ez az alkatrész egy másik változata?" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "Alkatrész leírása (opcionális)" -#: part/models.py:875 +#: part/models.py:880 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:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "Kategória" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "Alkatrész kategória" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "Belső cikkszám" -#: part/models.py:894 +#: part/models.py:899 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:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "Alapban hol tároljuk ezt az alkatrészt?" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "Alapértelmezett beszállító" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "Alapértelmezett beszállítói alkatrész" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "Alapértelmezett lejárat" -#: part/models.py:974 +#: part/models.py:979 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:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "Minimálisan megengedett készlet mennyiség" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "Alkatrész mértékegysége" -#: part/models.py:996 +#: part/models.py:1001 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:1002 +#: part/models.py:1007 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:1008 +#: part/models.py:1013 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:1013 +#: part/models.py:1018 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:1018 +#: part/models.py:1023 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:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "Aktív-e ez az alkatrész?" -#: part/models.py:1028 +#: part/models.py:1033 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:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "Alkatrészjegyzék ellenőrző összeg" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "Tárolt alkatrészjegyzék ellenőrző összeg" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "Alkatrészjegyzéket ellenőrizte" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "Alkatrészjegyzék ellenőrzési dátuma" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "Létrehozó" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "Felhasználó aki felelős ezért az alkatrészért" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "Utolsó leltár" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "Több értékesítése" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "Árszámítások gyorstárazásához használt pénznem" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "Minimum alkatrészjegyzék költség" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "Összetevők minimum költsége" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "Maximum alkatrészjegyzék költség" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "Összetevők maximum költsége" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "Minimum beszerzési ár" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "Eddigi minimum beszerzési költség" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "Maximum beszerzési ár" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "Eddigi maximum beszerzési költség" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "Minimum belső ár" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "Minimum költség a belső ársávok alapján" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "Maximum belső ár" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "Maximum költség a belső ársávok alapján" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "Minimum beszállítói ár" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "Minimum alkatrész ár a beszállítóktól" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "Maximum beszállítói ár" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "Maximum alkatrész ár a beszállítóktól" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "Minimum alkatrészváltozat ár" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "Alkatrészváltozatok számolt minimum költsége" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "Maximum alkatrészváltozat ár" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "Alkatrészváltozatok számolt maximum költsége" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "Számított általános minimum költség" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "Számított általános maximum költség" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "Minimum eladási ár" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "Minimum eladási ár az ársávok alapján" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "Maximum eladási ár" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "Maximum eladási ár az ársávok alapján" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "Minimum eladási költség" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "Eddigi minimum eladási ár" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "Maximum eladási költség" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "Eddigi maximum eladási ár" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "Leltározható alkatrész" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "Tételszám" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "Egyedi készlet tételek száma a leltárkor" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "Teljes készlet a leltárkor" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "Dátum" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "Leltározva ekkor" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "További megjegyzések" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "Leltározta" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "Minimum készlet érték" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "Becsült minimum raktárkészlet érték" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "Maximum készlet érték" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "Becsült maximum raktárkészlet érték" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "Riport" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "Leltár riport fájl (generált)" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "Alkatrész szám" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "Leltározott alkatrészek száma" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "Felhasználó aki a leltár riportot kérte" -#: part/models.py:3232 +#: part/models.py:3275 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:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "Erre az alkatrészre már létezik teszt ilyen névvel" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "Teszt név" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "Add meg a teszt nevét" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "Teszt leírása" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "Adj hozzá egy leírást ehhez a teszthez" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "Kötelező" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "Szükséges-e hogy ez a teszt sikeres legyen?" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "Kötelező érték" -#: part/models.py:3288 +#: part/models.py:3331 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:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "Kötelező melléklet" -#: part/models.py:3294 +#: part/models.py:3337 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:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" -msgstr "" +msgstr "Jelölőnégyzet paraméternek nem lehet mértékegysége" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" -msgstr "" +msgstr "Jelölőnégyzet paraméternek nem lehetnek választási lehetőségei" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" -msgstr "" +msgstr "A lehetőségek egyediek kell legyenek" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "A paraméter sablon nevének egyedinek kell lennie" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "Paraméter neve" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "Paraméter mértékegysége" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "Paraméter leírása" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" -msgstr "" +msgstr "Jelölőnégyzet" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" -msgstr "" +msgstr "Ez a paraméter egy jelölőnégyzet?" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" -msgstr "" +msgstr "Lehetőségek" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3505 -msgid "Invalid choice for parameter value" -msgstr "" +msgstr "Választható lehetőségek (vesszővel elválasztva)" #: part/models.py:3549 +msgid "Invalid choice for parameter value" +msgstr "Hibás választás a paraméterre" + +#: part/models.py:3593 msgid "Parent Part" msgstr "Szülő alkatrész" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "Paraméter sablon" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "Adat" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "Paraméter értéke" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "Alapértelmezett érték" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "Alapértelmezett paraméter érték" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "Alkatrész ID vagy alkatrész név" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "Egyedi alkatrész ID értéke" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "Alkatrész IPN érték" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "Szint" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "Alkatrészjegyzék szint" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "Alkatrészjegyzék tétel" + +#: part/models.py:3812 msgid "Select parent part" msgstr "Szülő alkatrész kiválasztása" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "Al alkatrész" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "Válaszd ki az alkatrészjegyzékben használandó alkatrészt" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "Alkatrészjegyzék mennyiség ehhez az alkatrészjegyzék tételhez" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "Opcionális" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "Ez az alkatrészjegyzék tétel opcionális" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "Fogyóeszköz" - -#: part/models.py:3784 +#: part/models.py:3838 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:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Többlet" -#: part/models.py:3789 +#: part/models.py:3843 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:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "Alkatrészjegyzék tétel azonosító" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "Alkatrészjegyzék tétel megjegyzései" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "Ellenőrző összeg" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "Alkatrészjegyzék sor ellenőrző összeg" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "Jóváhagyva" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "Ez a BOM tétel jóvá lett hagyva" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "Öröklődött" -#: part/models.py:3811 +#: part/models.py:3865 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:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "Változatok" -#: part/models.py:3817 +#: part/models.py:3871 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:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 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:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "Al alkatrészt kötelező megadni" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "Alkatrészjegyzék tétel helyettesítő" -#: part/models.py:4051 +#: part/models.py:4105 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:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "Szülő alkatrészjegyzék tétel" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "Helyettesítő alkatrész" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "1.rész" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "2.rész" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "Válassz kapcsolódó alkatrészt" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "Alkatrész kapcsolat nem hozható létre önmagával" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "Már létezik duplikált alkatrész kapcsolat" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "Beszerzési pénzneme ennek a készlet tételnek" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "Nincs kiválasztva alkatrész" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "Válassz kategóriát" + +#: part/serializers.py:363 msgid "Original Part" msgstr "Eredeti alkatrész" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "Válassz eredeti alkatrészt a másoláshoz" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "Kép másolása" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "Kép másolása az eredeti alkatrészről" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Alkatrészjegyzék másolása" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "Alkatrészjegyzék másolása az eredeti alkatrészről" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "Paraméterek másolása" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "Paraméterek másolása az eredeti alkatrészről" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "Kezdeti készlet mennyiség" -#: part/serializers.py:327 +#: part/serializers.py:388 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:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "Kezdeti készlet hely" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "Add meg a kezdeti készlet helyét" -#: part/serializers.py:343 +#: part/serializers.py:404 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:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "Válassz gyártót (hagyd üresen ha nem kell létrehozni)" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "Gyártói cikkszám" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "A kiválasztott cég nem érvényes beszállító" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "A kiválasztott cég nem érvényes gyártó" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "Van már ilyen gyártói alkatrész" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "Van már ilyen beszállítói alkatrész" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "Alkatrész másolása" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "Kezdeti adatok másolása egy másik alkatrészről" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Kezdeti készlet" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "Kezdeti készlet mennyiség létrehozása" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "Beszállító információ" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "Kezdeti beszállító adatok hozzáadása" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "Kategória paraméterek másolása" -#: part/serializers.py:637 +#: part/serializers.py:715 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:842 +#: part/serializers.py:920 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:848 +#: part/serializers.py:926 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:854 +#: part/serializers.py:932 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:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "Riport létrehozása" -#: part/serializers.py:860 +#: part/serializers.py:938 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:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "Alaktrészek frissítése" -#: part/serializers.py:866 +#: part/serializers.py:944 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:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "Leltár funkció nincs engedélyezve" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "Frissítés" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "Alkatrész árak frissítése" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "Válassz alkatrészt ahonnan az alkatrészjegyzéket másoljuk" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "Létező adat törlése" -#: part/serializers.py:1255 +#: part/serializers.py:1338 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:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "Örököltekkel együtt" -#: part/serializers.py:1261 +#: part/serializers.py:1344 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:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "Hibás sorok kihagyása" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "Engedély a hibás sorok kihagyására" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "Helyettesítő alkatrészek másolása" -#: part/serializers.py:1273 +#: part/serializers.py:1356 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:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "Meglévő alkatrészjegyzék törlése" -#: part/serializers.py:1314 +#: part/serializers.py:1397 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:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "Nincs megadva alkatrész oszlop" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "Több egyező alkatrész is található" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "Nincs egyező alkatrész" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "Az alkatrész nem lett összetevőként jelölve" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "Mennyiség nincs megadva" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "Érvénytelen mennyiség" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "Legalább egy alkatrészjegyzék tétel szükséges" @@ -6421,9 +6455,9 @@ msgstr "Alacsony készlet értesítés" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "A {part.name} alkatrész rendelkezésre álló készlete a megadott minimum alá csökkent" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "Teljes mennyiség" @@ -6461,14 +6495,6 @@ msgstr "A %(part)s alkatrészhez tartozó alkatrészjegyzéket utoljár msgid "The BOM for %(part)s has not been validated." msgstr "A %(part)s alkatrészhez tartozó alkatrészjegyzék még nincs jóváhagyva." -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "Alkatrészjegyzék műveletek" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "Tételek törlése" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "Alkatrész kategória leltározása" @@ -6505,7 +6531,7 @@ msgstr "Kategória törlése" msgid "Top level part category" msgstr "Legfelső szintű alkatrész kategória" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Alkategóriák" @@ -6518,33 +6544,21 @@ msgstr "Alkatrészek száma (alkategóriákkal együtt)" msgid "Create new part" msgstr "Alkatrész létrehozása" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "Új alkatrész" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "Opciók" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "Kategória beállítása" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "Kategória beállítása" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "Alkatrész paraméterek" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "Alkatrész kategória létrehozása" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "Új kategória" @@ -6581,7 +6595,7 @@ msgid "Refresh scheduling data" msgstr "Ütemezési adatok frissítése" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "Frissítés" @@ -6592,7 +6606,7 @@ msgstr "Leltár információ hozzáadása" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "Leltár" @@ -6604,101 +6618,101 @@ msgstr "Alkatrész teszt sablonok" msgid "Add Test Template" msgstr "Teszt sablon hozzáadása" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "Vevői rendeléshez foglalások" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "Alkatrész megjegyzések" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "Alkatrész változatok" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "Új változat létrehozása" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "Új változat" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "Paraméter hozzáadása" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "Kapcsolódó alkatrészek" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "Kapcsolódó hozzáadása" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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 "Alkatrészjegyzék" -#: part/templates/part/detail.html:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "Exportálási műveletek" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "Alkatrészjegyzék exportálása" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "Alkatrészjegyzék riport nyomtatása" -#: part/templates/part/detail.html:295 +#: part/templates/part/detail.html:272 +msgid "BOM actions" +msgstr "Alkatrészjegyzék műveletek" + +#: part/templates/part/detail.html:276 msgid "Upload BOM" msgstr "Alkatrészjegyzék feltöltése" -#: part/templates/part/detail.html:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "Alkatrészjegyzék jóváhagyása" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "Alkatrészjegyzék tétel hozzáadása" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "Gyártmányok" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "Alkatrész gyártások" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "Gyártáshoz foglalások" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "Alkatrész beszállítók" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "Alkatrész gyártók" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "Gyártói alkatrészek törlése" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "Kapcsolódó alkatrész" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "Kapcsolódó alkatrész hozzáadása" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "Teszt eredmény sablon hozzáadása" @@ -6732,13 +6746,13 @@ msgid "Download Part Import Template" msgstr "Alkatrész import sablon letöltése" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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 "Formátum" #: part/templates/part/import_wizard/part_upload.html:93 -#: templates/js/translated/bom.js:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "Fájlfomátum kiválasztása" @@ -6767,7 +6781,7 @@ msgstr "Árinformációk megjelenítése" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "Készlet műveletek" @@ -6779,7 +6793,7 @@ msgstr "Készlet számolása" msgid "Transfer part stock" msgstr "Készlet áthelyezése" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "Készlet műveletek" @@ -6824,10 +6838,10 @@ msgid "Part is not active" msgstr "Az alkatrész nem aktív" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "Inaktív" @@ -6850,7 +6864,7 @@ msgstr "Gyártáshoz lefoglalva" msgid "Allocated to Sales Orders" msgstr "Vevő rendeléshez lefoglalva" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "Gyártható" @@ -6858,8 +6872,8 @@ msgstr "Gyártható" msgid "Minimum stock level" msgstr "Minimális készlet" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6882,7 +6896,7 @@ msgstr "Alkatrész QR kódja" msgid "Link Barcode to Part" msgstr "Vonalkód hozzárendelése az alkatrészhez" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "alkatrész" @@ -6956,9 +6970,9 @@ msgstr "Változatok" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Készlet" @@ -6989,9 +7003,9 @@ msgstr "Árazás frissítése" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "Utoljára módosítva" @@ -7054,12 +7068,12 @@ msgstr "Eladási ár" msgid "Add Sell Price Break" msgstr "Eladási ársáv hozzáadása" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "Nincs készlet" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "Alacsony készlet" @@ -7142,10 +7156,6 @@ msgstr "Az alkatrész képe nem található" msgid "Part Pricing" msgstr "Alkatrész árak" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "A környezeted egy elavult git verziót használ. Ez megakadályozza hogy az InvenTree betöltse a plugin részleteit." - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Nincs megadva művelet" @@ -7167,7 +7177,7 @@ msgid "Match found for barcode data" msgstr "Egyezés vonalkódra" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "Ez a vonalkód már egy másik tételé" @@ -7198,7 +7208,7 @@ msgstr "InvenTree értesítések" #: plugin/builtin/integration/core_notifications.py:35 msgid "Integrated outgoing notification methods" -msgstr "" +msgstr "Integrált kimenő értesítési módszerek" #: plugin/builtin/integration/core_notifications.py:40 #: plugin/builtin/integration/core_notifications.py:81 @@ -7230,47 +7240,43 @@ msgstr "URL az üzenetek küldéséhez egy a slack channel-re" msgid "Open link" msgstr "Link megnyitása" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "Plugin beállítás" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "Plugin beállítások" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "Kulcs" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "Plugin kulcsa" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "PluginNeve a pluginnak" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "Aktív-e a plugin" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "Nem elérhető" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "Példa plugin" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "Beépített plugin" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "Plugin" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "Módszer" @@ -7278,21 +7284,17 @@ msgstr "Módszer" msgid "No author found" msgstr "Nincs szerző" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "Nincs dátum" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "A '{p}' plugin nem kompatibilis az aktuális applikáció verzióval {v}" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "A pluginhoz minimum {v} verzió kell" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "A pluginhoz maximum {v} verzió kell" @@ -7329,139 +7331,151 @@ msgstr "Választás beállításai" msgid "A setting with multiple choices" msgstr "Egy beállítás több választási lehetőséggel" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "Forrás URL" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "Csomag forrása - ez lehet egy registry vagy VCS útvonal" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "Csomag neve" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "Plugin csomag neve - verzió megjelölést is tartalmazhat" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "Bővítmény telepítésének megerősítése" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "Ez telepíti ezt a plugint az aktuális példányra. A példány karbantartási módba megy." -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "Tlepítés nincs megerősítve" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "Vagy csomag nevet vagy URL-t meg kell adni" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "Plugin aktiválása" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "Plugin bekapcsolása" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "Nincs érvényes objektum megadva a sablonhoz" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "A '{template}' sablon fájl hiányzik vagy nem érhető el" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "Teszt riport" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "Sablon neve" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "Riport sablon fájl" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "Riport sablon leírása" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "Riport verziószáma (automatikusan nő)" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "Minta a riport fájlnevek előállításához" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "Riport sablon engedélyezve" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "Készlet lekérdezés szűrők (vesszővel elválasztott kulcs=érték párok)" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "Beépített tesztekkel együtt" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "Gyártmányba beépített készlet tételek teszt eredményeivel együtt" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "Gyártás szűrők" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "Gyártás lekérdezés szűrők (vesszővel elválasztott kulcs=érték párok" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "Alkatrész szűrők" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "Alkatrész lekérdezés szűrők (vesszővel elválasztott kulcs=érték párok" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "Megrendelés lekérdezés szűrők" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "Vevő rendelés lekérdezés szűrők" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "Visszavételi utasítás lekérdezés szűrők" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "Részlet" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "Riport részlet fájl" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "Részlet fájl leírása" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "Eszköz" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "Riport asset fájl" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "Asset fájl leírása" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "Szükséges alapanyagok" @@ -7479,8 +7493,8 @@ msgstr "Beszállító törölve lett" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "Egységár" @@ -7492,26 +7506,30 @@ msgstr "Egyéb tételek" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "Összesen" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Sorozatszám" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "Készlet tétel teszt riport" @@ -7521,12 +7539,12 @@ msgid "Test Results" msgstr "Teszt eredmények" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "Teszt" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "Eredmény" @@ -7552,8 +7570,8 @@ msgid "Installed Items" msgstr "Beépített tételek" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "Sorozatszám" @@ -7565,8 +7583,8 @@ msgstr "Hely ID" msgid "Location Name" msgstr "Hely neve" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "Hely elérési út" @@ -7621,31 +7639,31 @@ msgstr "Törlés ha kimerül" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "Lejárati dátum" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "Külső hely" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "Mennyiség megadása kötelező" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "Egy érvényes alkatrészt meg kell adni" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "A megadott beszállítói alkatrész nem létezik" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" -msgstr "" +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:641 +#: stock/api.py:692 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" @@ -7655,8 +7673,8 @@ msgstr "Sorozatszámot nem lehet megadni nem követésre kötelezett alkatrész msgid "Stock Location" msgstr "Készlet hely" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "Készlethelyek" @@ -7674,8 +7692,8 @@ msgstr "Tulajdonos kiválasztása" 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:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "Külső" @@ -7691,7 +7709,7 @@ msgstr "Nem lehet ezt a raktári helyet szerkezetivé tenni, mert már vannak it msgid "Stock items cannot be located into structural stock locations!" msgstr "A szerkezeti raktári helyre nem lehet készletet felvenni!" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "Virtuális alkatrészből nem lehet készletet létrehozni" @@ -7766,11 +7784,11 @@ msgstr "Gyártás ehhez a készlet tételhez" #: stock/models.py:761 stock/templates/stock/item_base.html:364 msgid "Consumed By" -msgstr "Elhasználva ebbe" +msgstr "Felhasználva ebben" #: stock/models.py:763 msgid "Build order which consumed this stock item" -msgstr "" +msgstr "Felhasználva ebben a gyártásban" #: stock/models.py:774 msgid "Source Purchase Order" @@ -7804,233 +7822,242 @@ msgstr "Egy egység beszerzési ára a beszerzés időpontjában" msgid "Converted to part" msgstr "Alkatrésszé alakítva" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "Az alkatrész nem követésre kötelezett" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "Mennyiség egész szám kell legyen" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "A mennyiség nem lépheti túl a készletet ({n})" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "A sorozatszám egész számok listája kell legyen" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "A mennyiség nem egyezik a megadott sorozatszámok számával" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "A sorozatszámok már léteznek" -#: stock/models.py:1473 +#: stock/models.py:1474 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:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "Készlet tétel beépül egy másikba" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "A készlet tétel más tételeket tartalmaz" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "Készlet tétel hozzárendelve egy vevőhöz" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "Készlet tétel gyártás alatt" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "Követésre kötelezett készlet nem vonható össze" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "Duplikált készlet tételek vannak" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "A készlet tétel ugyanarra az alkatrészre kell vonatkozzon" -#: stock/models.py:1503 +#: stock/models.py:1504 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:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "Készlet tételek állapotainak egyeznie kell" -#: stock/models.py:1678 +#: stock/models.py:1679 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:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "Bejegyzés megjegyzései" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "Ehhez a teszthez meg kell adni értéket" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "Ehhez a teszthez fel kell tölteni mellékletet" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "Teszt neve" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "Teszt eredménye" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "Teszt kimeneti értéke" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "Teszt eredmény melléklet" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "Tesztek megjegyzései" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "Szériaszám túl nagy" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" -msgstr "" +msgstr "Csomagolási mennyiség használata: a megadott mennyiség ennyi csomag" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" -msgstr "" +msgstr "Készlet tétel beszerzési ára, per darab vagy csomag" -#: stock/serializers.py:307 +#: stock/serializers.py:373 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:319 +#: stock/serializers.py:385 #, 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:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "Írd be a sorozatszámokat az új tételekhez" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "Cél készlet hely" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "Opcionális megjegyzés mező" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "Sorozatszámokat nem lehet hozzárendelni ehhez az alkatrészhez" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "Válaszd ki a beépítésre szánt készlet tételt" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "Készlet tétel nem elérhető" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "A kiválasztott alkatrész nincs az alkatrészjegyzékben" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "Cél hely a kiszedett tételeknek" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "Tranzakció megjegyzés hozzáadása (opcionális)" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "Készlet tétel nem elérhető" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "A kiválasztott alkatrész nincs az alkatrészjegyzékben" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "Cél hely a kiszedett tételeknek" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "Válassz alkatrészt amire konvertáljuk a készletet" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "A kiválasztott alkatrész nem megfelelő a konverzióhoz" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "Cél hely a visszatérő tételeknek" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +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:670 +msgid "No stock items selected" +msgstr "Nincs készlet tétel kiválasztva" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "Az alkatrésznek értékesíthetőnek kell lennie" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "A tétel egy vevő rendeléshez foglalt" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "A tétel egy gyártási utasításhoz foglalt" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "Vevő akihez rendeljük a készlet tételeket" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "A kiválasztott cég nem egy vevő" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "Készlet hozzárendelés megjegyzései" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "A készlet tételek listáját meg kell adni" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "Készlet összevonás megjegyzései" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "Nem egyező beszállítók megengedése" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 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:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "Nem egyező állapotok megjelenítése" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 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:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "Legalább két készlet tételt meg kell adni" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "Készlet tétel elsődleges kulcs értéke" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "Készlet tranzakció megjegyzései" @@ -8038,48 +8065,48 @@ msgstr "Készlet tranzakció megjegyzései" msgid "Stock Tracking Information" msgstr "Készlettörténeti információk" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "Al-készlet tételek" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "Ez a készlet tétel nem tartalmaz egy altételt sem" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "Teszt adatok" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "Teszt riport" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "Teszt adatok törlése" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "Teszt adatok hozzáadása" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "Készlet tétel megjegyzések" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "Beépített készlet tételek" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "Készlet tétel beépítése" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "Készlet tétel összes teszt eredményének törlése" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "Teszt eredmény hozzáadása" @@ -8087,13 +8114,13 @@ msgstr "Teszt eredmény hozzáadása" msgid "Locate stock item" msgstr "Készlet tétel keresése" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "Áthelyezés kódolvasással" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "Nyomtatási műveletek" @@ -8102,15 +8129,17 @@ msgid "Stock adjustment actions" msgstr "Készlet módosítási műveletek" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "Leltározás" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "Készlet növelése" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "Készlet csökkentése" @@ -8119,11 +8148,12 @@ msgid "Serialize stock" msgstr "Sorozatszámok előállítása" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "Készlet áthelyezése" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "Vevőhöz rendelése" @@ -8163,6 +8193,11 @@ msgstr "Készlet tétel szerkesztése" msgid "Delete stock item" msgstr "Készlet tétel törlése" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Gyártás" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "Szülő tétel" @@ -8176,7 +8211,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "Úgytűnik nem vagy ennek a tételnek a tulajdonosa. Ezt így nem tudod módosítani." #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "Csak olvasható" @@ -8225,7 +8260,7 @@ msgid "Available Quantity" msgstr "Elérhető mennyiség" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "Nincs beállítva hely" @@ -8243,7 +8278,7 @@ 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:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "Lejárt" @@ -8253,7 +8288,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "Ez a készlet tétel lejár %(item.expiry_date)s-n" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "Állott" @@ -8262,7 +8297,7 @@ msgid "No stocktake performed" msgstr "Még nem volt leltározva" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "készlet tétel" @@ -8330,58 +8365,62 @@ msgstr "Készlet tároló bevételezése erre a helyre" msgid "Scan In Container" msgstr "Tároló vonalkód beolvasása" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "Hely műveletek" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "Hely szerkesztése" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "Hely törlése" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "Legfelső szintű készlet hely" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "Hely tulajdonosa" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "Úgytűnik nem vagy ennek a készlethelynek a tulajdonosa. Ezt így nem tudod módosítani." -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Alhelyek" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "Új készlet hely létrehozása" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "Új hely" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "készlet hely" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "Készlet tároló bevételezve erre a helyre" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "Készlet hely QR kódja" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "Vonalkód hozzárendelése a készlet helyhez" @@ -8455,71 +8494,71 @@ msgstr "Az oldal jelenleg karbantartás alatt van, hamarosan újra használható msgid "Index" msgstr "Index" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "Értesítésre beállított alkatrészek" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "Értesítésre beállított kategóriák" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "Legújabb alkatrészek" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "Jóváhagyásra váró alkatrészjegyzék" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "Nemrég frissítve" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "Kimerült készlet" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "Gyártáshoz szükséges" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "Lejárt készlet" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "Állott készlet" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "Folyamatban lévő gyártások" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "Késésben lévő gyártások" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "Kintlévő beszerzési rendelések" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "Késésben lévő beszerzések" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "Függő vevői rendelések" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "Késésben lévő vevői rendelések" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "InvenTree hírek" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "Jelenlegi hírek" @@ -8655,7 +8694,7 @@ msgstr "Alkatrész importálás" msgid "Import Part" msgstr "Alkatrész importálása" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "Alkatrész paraméter sablonok" @@ -8676,63 +8715,42 @@ msgstr "Plugin beállítások" msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." msgstr "Az alábbi beállítások módosításához a kiszolgáló azonnali újraindítása szükséges. Aktív használat közben ne változtass ezeken." -#: templates/InvenTree/settings/plugin.html:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "Pluginok" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "Plugin Telepítése" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "Külső pluginok nincsenek engedélyezve" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "Verzió" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "Aktív pluginok" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "Inaktív pluginok" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "Plugin hibatároló" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "Szakasz" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "Üzenet" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "Beépített" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "Minta" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "Plugin információ" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "Verzió" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "nincs megadva verzió információ" @@ -8765,6 +8783,11 @@ msgstr "Ez a plugin a lokális kiszolgáló útvonalon található" msgid "Installation path" msgstr "Telepítési útvonal" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "Beépített" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "Ez egy beépített plugin amit nem lehet letiltani" @@ -8787,14 +8810,6 @@ msgstr "Commit hash" msgid "Commit Message" msgstr "Commit üzenet" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "Aláírás státusza" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "Aláíró kulcs" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "Beszerzési rendelés beállításai" @@ -8890,12 +8905,12 @@ msgid "No category parameter templates found" msgstr "Nincs kategória paraméter sablon" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "Sablon szerkesztése" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "Sablon törlése" @@ -8933,7 +8948,7 @@ msgid "Home Page" msgstr "Főoldal" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9010,6 +9025,7 @@ msgid "Unverified" msgstr "Nem ellenőrzött" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "Elsődleges" @@ -9158,7 +9174,7 @@ msgstr "Néhány nyelv nem teljes" #: templates/InvenTree/settings/user_display.html:97 msgid "Show only sufficient" -msgstr "" +msgstr "Csak a szükséges megjelenítése" #: templates/InvenTree/settings/user_display.html:99 msgid "and hidden." @@ -9190,7 +9206,7 @@ msgstr "Keresési beállítások" #: templates/InvenTree/settings/user_sso.html:9 msgid "Single Sign On Accounts" -msgstr "" +msgstr "SSO fiókok" #: templates/InvenTree/settings/user_sso.html:16 msgid "You can sign in to your account using any of the following third party accounts:" @@ -9206,7 +9222,7 @@ msgstr "SSO fiók Hozzáadása" #: templates/InvenTree/settings/user_sso.html:67 msgid "Single Sign On is not enabled for this server" -msgstr "" +msgstr "SSO nincs engedélyezve ezen a szerveren" #: templates/about.html:9 msgid "InvenTree Version" @@ -9224,44 +9240,48 @@ msgstr "Naprakész" msgid "Update Available" msgstr "Frissítés elérhető" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "Commit branch" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "Inventree dokumentáció" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "API verzió" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "Python verzió" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "Django verzió" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "Megtekintés a GitHubon" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "Közreműködők" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "Mobil alkalmazás" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "Hibabejelentés küldése" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "vágólapra másolás" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "verzió információk másolása" @@ -9455,14 +9475,6 @@ msgstr "Link hozzáadása" msgid "Add Attachment" msgstr "Melléklet hozzáadása" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "Kiválasztott mellékletek törlése" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "Mellékletek törlése" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "Vonalkód azonosító" @@ -9507,7 +9519,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:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "Szükséges mennyiség" @@ -9521,7 +9533,7 @@ 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:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "Minimum mennyiség" @@ -9593,23 +9605,35 @@ msgstr "Hiba kód" msgid "All selected attachments will be deleted" msgstr "Az összes kijelölt melléklet törlésre kerül" -#: templates/js/translated/attachment.js:255 +#: templates/js/translated/attachment.js:129 +msgid "Delete Attachments" +msgstr "Mellékletek törlése" + +#: templates/js/translated/attachment.js:205 +msgid "Delete attachments" +msgstr "Mellékletek törlése" + +#: templates/js/translated/attachment.js:253 +msgid "Attachment actions" +msgstr "Mellékletek műveletei" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "Nem találhatók mellékletek" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "Melléklet szerkesztése" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "Feltöltés dátuma" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "Melléklet szerkesztése" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "Melléklet törlése" @@ -9666,7 +9690,7 @@ msgstr "Ez törli a vonalkód hozzárendelést" msgid "Unlink" msgstr "Leválasztás" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "Készlet tétel törlése" @@ -9724,743 +9748,837 @@ msgstr "Készlet áthelyezése a leolvasott helyre" msgid "Barcode does not match a valid location" msgstr "A vonalkód nem egyezik egy ismert hellyel sem" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "Alkatrészjegyzék tétel létrehozása" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "Sor adatok mutatása" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "Sor adat" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "Bezárás" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "Alkarészjegyzék sablon letöltése" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "Többszintű alkatrészjegyzék" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "Alszerelvények alkatrészlistáinak felhasználása" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "Szintek" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "Válaszd ki a maximum alkatrészjegyzék szintet amit exportáljunk (0=összes szintet)" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "Alternatív alkatrészekkel együtt" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "Alternatív alkatrészek megjelenítése az exportált alkatrészjegyzékben" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "Paraméter adattal együtt" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "Alkatrész paraméter adatok megjelenítése az exportált alkatrészjegyzékben" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "Készlet adatokkal együtt" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "Készlet adatok megjelenítése az exportált alkatrészjegyzékben" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "Gyártói adatokkal együtt" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "Gyártói adatok megjelenítése az exportált alkatrészjegyzékben" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "Beszállítói adatokkal együtt" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "Beszállítói adatok megjelenítése az exportált alkatrészjegyzékben" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "Ár adatokkal együtt" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "Ár adatok megjelenítése az exportált alkatrészjegyzékben" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "Helyettesítő alkatrész törlése" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "Válassz és adj hozzá új helyettesítő alkatrészt a lenti mezőben" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "Biztosan törölni akarod ezt a helyettesítő alkatrész hozzárendelést?" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "Helyettesítő alkatrész törlése" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "Helyettesítő hozzáadása" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "Alkatrészjegyzék tétel helyettesítők szerkesztése" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "Az összes kijelölt alkatrészjegyzék tétel törlésre kerül" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "Töröljük a kiválasztott alkatrészjegyzék tételeket?" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "Tételek törlése" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "Alkatrészjegyzék betöltése az al-gyártmányhoz" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "Vannak helyettesítők" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "Készletváltozatok engedélyezve" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "Helyettesítõk" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "Alkatrészjegyzék árazása teljes" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "Alkatrészjegyzék árazása nem teljes" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "Nincsenek árak" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "Nincs szabad" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "Változatokkal és helyettesítőkkel együtt" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "Változatokkal együtt" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "Helyettesítőkkel együtt" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "Fogyóeszköz tétel" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "Alkatrészjegyzék tétel jóváhagyása" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "Ez a sor jóvá lett hagyva" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "Helyettesítő alkatrészek szerkesztése" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "Alkatrészjegyzék tétel szerkesztése" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "Alkatrészjegyzék tétel törlése" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "Alkatrészjegyzék megtekintése" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "Nem találhatók alkatrészjegyzék tételek" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "Szükséges alkatrész" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "Örökölve a szülő alkatrészjegyzéktől" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "Gyártási utasítás szerkesztése" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "Gyártási utasítás létrehozása" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "Gyártási utasítás törlése" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "Biztosan meg szeretnéd szakítani ezt a gyártást?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "Ehhez a gyártáshoz készlet lett hozzárendelve" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "Ennek a gyártásnak befejezetlen kimenetei vannak" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "Gyártási utasítás készen áll a befejezésre" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "A rendelés nem jelölhető késznek mivel függő kimenetek vannak" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "Gyártási utasítás befejezetlen" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "Gyártási utasítás befejezése" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "Következő szabad sorozatszám" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "Legutolsó sorozatszám" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "Az alkatrészjegyzék követésre kötelezett alkatrészeket tartalmaz" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "A gyártási kimeneteket egyesével kell előállítani" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "A követésre kötelezett alkatrészekhez sorozatszámot lehet rendelni" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "Adj meg sorozatszámokat a több egyedi gyártási kimenet létrehozásához" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "Gyártási kimenet létrehozása" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "Készlet tételek foglalása ehhez a gyártási kimenethez" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "Készlet felszabadítása a gyártási kimenetből" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "Gyártási kimenet befejezése" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "Gyártási kimenet selejtezése" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "Gyártási kimenet törlése" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "Biztosan szeretnéd a már lefoglalt készlet tételeket felszabadítani ebből a gyártási utasításból?" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "Készlet tételek felszabadítása" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "Gyártási kimenetek kiválasztása" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "Legalább egy gyártási kimenetet ki kell választani" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" -msgstr "" +msgstr "A kiválasztott gyártási kimenetek késznek lesznek jelölve" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "Kimenet" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "Gyártási kimenetek befejezése" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" -msgstr "" +msgstr "A kiválasztott gyártási kimenetek selejtnek lesznek jelölve" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" -msgstr "" +msgstr "Selejtezett kimenetek elutasítottnak jelölve" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" -msgstr "" +msgstr "A lefoglalt készlet már nem lesz elérhető" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" -msgstr "" +msgstr "A befejezési státusza a gyártásnak nem fog változni" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "Gyártási kimenetek selejtezése" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" -msgstr "" +msgstr "A kiválasztott gyártási kimenetek törölve lesznek" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" -msgstr "" +msgstr "A gyártási kimenet adatai véglegesen törölve lesznek" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" -msgstr "" +msgstr "A lefoglalt készlet tételek újra készletre kerülnek" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "Gyártási kimenetek törlése" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "Nincs gyártási utasításhoz történő foglalás" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "Lefoglalt mennyiség" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "Hely nincs megadva" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "Befejezett kimenetek" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "Kimenetek selejtezése" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "Kimenetek törlése" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "gyártás kimenet" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "gyártás kimenetek" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "Gyártási kimenet műveletei" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "Nem található aktív gyártási kimenet" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" -msgstr "Lefoglalt készlet" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" +msgstr "Lefoglalt sorok" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" -msgstr "Nincsenek követett alkatrészjegyzék tételek ehhez a gyártáshoz" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" +msgstr "Szükséges tesztek" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "Befejezett tesztek" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "Nincsenek szükséges tesztek ehhez a gyártáshoz" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "Készlet foglalások szerkesztése" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "Készlet foglalások törlése" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "Foglalás szerkesztése" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "Foglalás törlése" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "Vannak helyettesítő alkatrészek" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "Szükséges/db" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "Nincs elegendő" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "Van elegendő" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "Gyártási készlet" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "Készlet rendelés" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "Lefoglalt készlet" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "Kiválasztott alkatrészek" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "Legalább egy alkatrész választása szükséges a foglaláshoz" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "Készlet foglalási mennyiség megadása" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "Minden alkatrész lefoglalva" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "Minden kiválasztott alkatrész teljesen lefoglalva" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "Válassz forrás helyet (vagy hagyd üresen ha bárhonnan)" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "Készlet foglalása a gyártási utasításhoz" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "Nincs egyező készlethely" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "Nincs egyező készlet" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "Automatikus készlet foglalás" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "A készlet automatikusan lefoglalásra kerül ehhez a gyártási utasításhoz, a következő feltételek szerint" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "Ha egy készlet hely meg van adva, akkor készlet csak arról a helyről lesz foglalva" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "Ha a készlet helyettesíthetőnek minősül, akkor az első rendelkezésre álló helyről lesz lefoglalva" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 msgid "If substitute stock is allowed, it will be used where stock of the primary part cannot be found" msgstr "Ha a helyettesítő készlet engedélyezve van, akkor ott az lesz használva ha az elsődleges alkatrésznek nincs készlete" -#: templates/js/translated/build.js:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "Készlet tételek foglalása" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "Nincs a lekérdezéssel egyező gyártási utasítás" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "Kiválaszt" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "Gyártás késésben van" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "Haladás" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "Nincs felhasználói információ" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "csoport" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" -msgstr "Nincs lefoglalt alkatrész ehhez" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" +msgstr "Készlet foglalások szerkesztése" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "Készlet foglalások törlése" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "Foglalás szerkesztése" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "Foglalás törlése" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "gyártás sor" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "gyártás sorok" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "Nincsenek gyártási sorok" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "Követésre kötelezett alkatrész" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "Mennyiségi egység" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "Nincs elegendő" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "Van elegendő" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "Fogyóeszköz tétel" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "Követett tétel" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "Gyártási készlet" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "Készlet rendelés" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "Lefoglalt készlet" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "Készlet foglalások törlése" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "Gyártó hozzáadása" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "Gyártói alkatrész hozzáadása" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "Gyártói alkatrész szerkesztése" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "Beszállító hozzáadása" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "Beszállítói alkatrész hozzáadása" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "Az összes kiválasztott beszállítói alkatrész törölve lesz" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "Beszállítói alkatrészek törlése" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "Új cég hozzáadása" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "Beszállított alkatrészek" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "Gyártott alkatrészek" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "Nem található céginformáció" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "Új névjegy létrehozása" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "Névjegy szerkesztése" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "A kiválasztott névjegyek törlésre kerülnek" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "Szerepkör" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "Névjegyek törlése" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "Nem található névjegy" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "Telefonszám" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "E-mail cím" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "Névjegy törlése" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "Új cím létrehozása" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "Cím szerkesztése" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "Az összes kijelölt cím törlésre kerül" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "Címek törlése" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "Nincsenek címek" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "Város" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "Állam/Megye" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "Futár megjegyzések" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "Belső megjegyzések" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "Cím törlése" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "Az összes kijelölt gyártói alkatrész törlésre kerül" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "Gyártói alkatrészek törlése" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "Az összes kijelölt paraméter törlésre kerül" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "Paraméterek törlése" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Alkatrész rendelés" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "Gyártói alkatrészek törlése" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "Gyártói alkatrész műveletek" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "Nincs gyártói alkatrész" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "Sablon alkatrész" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "Gyártmány alkatrész" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "Nem található paraméter" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "Paraméter szerkesztése" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "Paraméter törlése" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "Paraméter szerkesztése" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "Paraméter törlése" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "Beszállítói alkatrész törlése" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "Nincs beszállítói alkatrész" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" -msgstr "" +msgstr "Egység" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "Elérhetőség" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "Beszállítói alkatrész szerkesztése" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "Beszállítói alkatrész törlése" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "Ársáv törlése" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "Ársáv szerkesztése" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "Nincs ársáv információ" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "Utoljára módosítva" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "Ársáv szerkesztése" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "Ársáv törlése" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "igaz" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "hamis" @@ -10468,31 +10586,31 @@ msgstr "hamis" msgid "Select filter" msgstr "Szűrők kiválasztása" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "Címkék nyomtatása" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "Riportok nyomtatása" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "Táblázat letöltése" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "Táblázat frissítése" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "Új szűrő hozzáadása" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "Összes szűrő törlése" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "Szűrő létrehozása" @@ -10517,6 +10635,12 @@ msgstr "Törlés nem engedélyezett" msgid "View operation not allowed" msgstr "Megtekintés nem engedélyezett" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Törlés" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "Form nyitva tartása" @@ -10534,23 +10658,23 @@ msgstr "Form hibák vannak" msgid "No results found" msgstr "Nincs eredmény" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "Keresés" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "Bevitel törlése" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "Fájl oszlop" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "Mező név" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "Oszlopok kiválasztása" @@ -10564,11 +10688,19 @@ msgstr "NEM" #: templates/js/translated/helpers.js:93 msgid "True" -msgstr "" +msgstr "Igaz" #: templates/js/translated/helpers.js:94 msgid "False" -msgstr "" +msgstr "Hamis" + +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "Nem szükséges alkatrész a gyártáshoz" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "Lefoglalt készlet" #: templates/js/translated/label.js:58 msgid "Select Printer" @@ -10671,7 +10803,7 @@ msgstr "Nem találhatók hírek" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "Azonosító" @@ -10720,7 +10852,7 @@ msgid "Delete Line" msgstr "Sor törlése" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "Nem találhatók sortételek" @@ -10736,370 +10868,410 @@ msgstr "Sor szerkesztése" msgid "Delete line" msgstr "Sor törlése" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "Alkatrész tulajdonságok" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "Alkatrész létrehozási opciók" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "Alkatrész másolási opciók" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "Alkatrész kategória hozzáadása" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "Felsőbb szintű alkatrész kategória" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "Ikon (opcionális) - Az összes ikon felfedezése itt" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "Alkatrész kategória létrehozása" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "Új kategória létrehozása ez után" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "Alkatrész kategória létrehozva" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "Alkatrész kategória szerkesztése" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 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:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "Áthelyezés fentebbi kategóriába" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "Alkatrész kategória törlése" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "A kategóriában lévő alkatrészek kezelése" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "Alkategóriák kezelése" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "Alkatrész létrehozása" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "Új alkatrész létrehozása ez után" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "Alkatrész sikeresen létrehozva" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "Alkatrész szerkesztése" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "Alkatrész módosítva" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "Alkatrész változat létrehozása" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "Aktív alkatrész" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 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:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "Ezen alkatrész törlése nem vonható vissza" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 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:527 +#: templates/js/translated/part.js:526 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:528 +#: templates/js/translated/part.js:527 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:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "Alkatrész törlése" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 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:573 +#: templates/js/translated/part.js:572 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:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "Értesítések kérése erre a tételre" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "Értesítések letiltva erre a tételre" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 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:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "Alkatrészjegyzék jóváhagyása" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "Alkatrészjegyzék jóvá lett hagyva" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "Alkatrészjegyzék másolása" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "Alacsony készlet" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "Nincs szabad" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "Igény" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "Me" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "Követésre kötelezett alkatrész" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "Virtuális alkatrész" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "Értesítésre beállított alkatrész" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "Értékesíthető alkatrész" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "Új leltár riport ütemezése." -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 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:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "Leltár riport létrehozása" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "Leltár riport beütemezve" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "Nincs elérhető leltár előzmény" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "Leltár bejegyzés szerkesztése" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "Leltár bejegyzés törlése" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "Nincs több változat" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "Nincs alkatrész paraméter sablon" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "Alkatrész paraméter sablon módosítása" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 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:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "Alkatrész paraméter sablon törlése" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "Nem található beszerzési rendelés" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "Ez a sortétel késésben van" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "Sortétel bevételezése" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "Alkatrész kapcsolatok törlése" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "Alkatrész kapcsolatok törlése" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "Nincs alkatrész" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "alkatrészek" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "Nincs kategória" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "Megjelenítés listaként" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "Megjelenítés rácsnézetként" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 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:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "Alkatrész kategória beállítása" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" -msgstr "Alkatrész kategória kiválasztása" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "Kategória beállítása" -#: templates/js/translated/part.js:2495 -msgid "Category is required" -msgstr "Kategória megadása kötelező" +#: templates/js/translated/part.js:2253 +msgid "parts" +msgstr "alkatrészek" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "Nincs kategória" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "Megjelenítés listaként" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "Megjelenítés rácsnézetként" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "Nem találhatóak alkategóriák" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "Megjelenítés fában" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "Alkategóriák betöltése" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "Értesítésre beállított kategória" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "Nincs a lekérdezéssel egyező teszt sablon" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "Teszt eredmény szerkesztése" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "Teszt eredmény törlése" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 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:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "Teszt eredmény sablon szerkesztése" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "Teszt eredmény sablon törlése" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "Nincs megadva dátum" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "A megadott dátum a múltban van" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "Spekulatív" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 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:3037 +#: templates/js/translated/part.js:3016 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:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "Ütemezett készlet mennyiség" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "Minimum mennyiség" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "Minimális készlet" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "Nem találhatók pluginok" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "Ez a plugin aktív" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "Ez a plugin nem aktív" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "Plugin leírása" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "Minta" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "Plugin kikapcsolása" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "Plugin bekapcsolása" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "A plugin telepítve lett" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "Biztosan bekapcsolod ezt a plugint?" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "Biztosan kikapcsolod ezt a plugint?" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "Bekapcsolás" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "Kikapcsolás" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "Plugin frissítve" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "Pénznem adatok lekérdezése sikertelen" @@ -11140,234 +11312,234 @@ msgstr "Nincs alkatrészváltozat infomáció" msgid "Variant Part" msgstr "Alkatrészváltozat" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "Válaszd ki a lemásolandó beszerzési rendelést" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "Sortételek másolása" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "Összes sortétel másolása a kiválasztott rendelésből" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "Egyéb tételek másolása" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "Összes egyéb tétel másolása a kiválasztott rendelésből" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "Beszerzési rendelés szerkesztése" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "Másolási opciók" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "Beszerzési rendelés befejezése" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "Rendelés befejezettnek jelölése?" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "Minden sortétel megérkezett" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "Ez a rendelés olyan sortételeket tartalmaz amik még nem érkeztek be." -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "A rendelés befejezésével jelölésével annak adatai és sortételei a továbbiakban már nem lesznek szerkeszthetők." -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "Beszerzési rendelés törlése" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "Biztosan törölni szeretnéd ezt a beszerzési rendelést?" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "Ezt a beszerzési rendelést nem lehet törölni" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "A kiküldés után a sortételek már nem lesznek szerkeszthetők." -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "Beszerzési rendelés kiküldése" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "Legalább egy beszerezhető alkatrészt ki kell választani" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "Rendelendő mennyiség" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "Új beszállítói alkatrész" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "Új beszerzési rendelés" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "Hozzáadás beszerzési rendeléshez" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "Nincsenek egyező beszállítói alkatrészek" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "Nincsenek egyező beszerzési rendelések" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "Sortételek kiválasztása" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "Legalább egy sortételt ki kell választani" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "Beérkezett mennyiség" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "Érkező mennyiség" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "Készlet állapota" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "Vonalkód hozzáadása" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "Vonalkód eltávolítása" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "Add meg a helyet" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "Batch kód hozzáadása" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "Sorozatszám hozzáadása" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "Sorozatszámok" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "Rendelési kód" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "Érkező mennyiség" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "Bevételezés megerősítése" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "Beszerzési rendelés tételeinek bevételezése" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "Tétel vonalkód beolvasása" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "Beérkezett tétel vonalkódjának leolvasása (egyik meglévő készlet tétellel sem egyezhet)" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "Érvénytelen vonalkód adat" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "Rendelés késésben" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "Tételek" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "Az összes kijelölt sortétel törlésre kerül" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "Töröljük a kiválasztott sortételeket?" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "Sortétel másolása" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "Sortétel szerkesztése" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "Sortétel törlése" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "Sortétel másolása" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "Sortétel szerkesztése" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "Sortétel törlése" @@ -11396,943 +11568,975 @@ msgstr "Nem található riport sablon a kiválasztott tételekhez" msgid "Add Customer" msgstr "Vevő hozzáadása" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "Visszavételi utasítás létrehozása" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "Visszavételi utasítás szerkesztése" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "Visszavételi utasítás kiadása" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "Biztosan törölni szeretnéd ezt a visszavételi utasítást?" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "Visszavételi utasítás törlése" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "Visszavételi utasítás befejezése" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "Nem található visszavételi utasítás" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "Érvénytelen vevő" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "Visszavételi utasítás tételeinek bevételezése" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "Nincs egyező sortétel" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "Tétel bevételezve" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "Vevői rendelés létrehozása" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "Vevői rendelés szerkesztése" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "Ehhez a szállítmányhoz nincs készlet hozzárendelve" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "A következő készlet tételek ki lesznek szállítva" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "Függő szállítmányok kiszállítása" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "Szállítmány megerősítése" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "Nincs függő szállítmány" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "A függő a szállítmányokhoz nincs készlet hozzárendelve" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "Függő szállítmányok kiszállítása" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "Kihagyás" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "Ez a rendelés olyan sortételeket tartalmaz amik még nem teljesítettek." -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "Vissza lett igazolva ez a vevői rendelés?" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "Vevői rendelés visszaigazolása" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "Vevő rendelés törlése" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "A rendelés törlésével annak adatai a továbbiakban már nem lesznek szerkeszthetők." -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "Szállítmány létrehozása" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "Nem található vevői rendelés" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "Szállítmány szerkesztése" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "Szállítmány kiszállítása" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "Szállítmány törlése" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "Szállítmány szerkesztése" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "Szállítmány törlése" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "Nincs egyező szállímány" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "Szállítmány azonosító" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "Nincs kiszállítva" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "Nyomkövetés" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "Számla" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "Szállítmány hozzáadása" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "Készlet foglalás megerősítése" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "Készlet foglalása a vevői rendeléshez" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "Nincs vevői rendeléshez történő foglalás" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "Készlet foglalások szerkesztése" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "Törlési művelet megerősítése" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "Készlet foglalások törlése" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "Vevőnek kiszállítva" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "Készlethely nincs megadva" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "Sorozatszámok kiosztása" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "Készletrendelés" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "Árszámítás" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "Nem törölhető mivel a tételek ki lettek szállítva" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "Nem törölhető mivel tételek vannak lefoglalva" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "Sorozatszámok kiosztása" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "Egységár módosítása" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "Nincs találat" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "Add meg a keresési lekérdezést" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "eredmény" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "találat" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "Eredmények összezárása" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "Eredmények eltávolítása" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "Készlet tétel sorszámozása" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "Készlet sorozatszámozás megerősítése" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "Felsőbb szintű készlet hely" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "Készlet hely szerkesztése" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "Új készlet hely" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "Új készlethely létrehozása ez után" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "Készlet hely létrehozva" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "Biztosan törölni szeretnéd ezt a készlet helyet?" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "Szülő készlet helyre mozgatás" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "Készlethely törlése" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "Műveletek az ezen a helyen lévő tételekhez" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "Műveletek az al-helyekhez" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "Ezt az alkatrészt nem lehet sorozatszámozni" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" -msgstr "" +msgstr "Mennyiség hozzáadása csomagolási egységenként egyedi tételek helyett" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "Add meg a kezdeti mennyiséget ehhez a készlet tételhez" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Add meg az új készlet tételhez tartozó sorozatszámokat (vagy hagyd üresen)" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "Készlet tétel lemásolva" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "Készlet tétel másolása" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "Biztosan törölni szeretnéd ezt a készlet tételt?" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "Készlet tétel törlése" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "Készlet tétel szerkesztése" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "Új tétel létrehozása ez után" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "Készlet tétel létrehozva" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "Több készlet tétel létre lett hozva" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "Sorozatszám keresése" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "Sorozatszám megadása" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "Adj meg egy sorozatszámot" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "Nincs egyező sorozatszám" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "Több egyező eredmény is van" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "Készlet hozzárendelés jóváhagyása" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "Készlet vevőhöz rendelése" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "Figyelem: az összevonási művelet nem vonható vissza" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "Némi információ elveszik a készlet összevonás során" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "A készlettörténet törölve lesz az összevont tételeknél" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "A beszállítói alkatrész információk törlődnek az összevont tételeknél" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "Készlet összevonás megerősítése" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "Készlet tételek összevonása" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "Készlet áthelyezése" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "Áthelyezés" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "Leltározás" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "Mennyiség" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "Készlet csökkentése" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "Kivesz" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "Készlet növelése" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "Hozzáad" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "Készlet törlése" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "Egyedi követésre kötelezett tételeknél a menyiség nem módosítható" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "Készlet mennyiség megadása" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "Készlet tételek kiválasztása" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" -msgstr "Ki kell választanod legalább egy rendelkezésre álló készlet tételt" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" +msgstr "Válassz legalább egy rendelkezésre álló készlet tételt" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "Készlet módosítás jóváhagyása" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "SIKER" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "SIKERTELEN" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "NINCS EREDMÉNY" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "Teszt sikeres" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "Teszt eredmény hozzáadása" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "Nincs teszt eredmény" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "Teszt dátuma" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "Teszt eredmény szerkesztése" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "Teszt eredmény törlése" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "Gyártásban" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "Beépítve készlet tételbe" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "Vevő rendeléshez hozzárendelve" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "Nincs hely megadva" -#: templates/js/translated/stock.js:1746 +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" +msgstr "Készlet állapot módosítása" + +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" +msgstr "Készlet összevonása" + +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" +msgstr "Készlet törlése" + +#: templates/js/translated/stock.js:1885 msgid "stock items" msgstr "készlet tételek" -#: templates/js/translated/stock.js:1850 +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "Beolvasás helyre" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "Készlet műveletek" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "Beépített tételek betöltése" + +#: templates/js/translated/stock.js:2023 msgid "Stock item is in production" msgstr "Készlet tétel gyártás alatt" -#: templates/js/translated/stock.js:1855 +#: templates/js/translated/stock.js:2028 msgid "Stock item assigned to sales order" msgstr "Készlet tétel hozzárendelve egy vevői rendeléshez" -#: templates/js/translated/stock.js:1858 +#: templates/js/translated/stock.js:2031 msgid "Stock item assigned to customer" msgstr "Készlet tétel hozzárendelve egy vevőhöz" -#: templates/js/translated/stock.js:1861 +#: templates/js/translated/stock.js:2034 msgid "Serialized stock item has been allocated" msgstr "Egyedi követésre kötelezett készlet tétel lefoglalva" -#: templates/js/translated/stock.js:1863 +#: templates/js/translated/stock.js:2036 msgid "Stock item has been fully allocated" msgstr "Készlet tétel teljes egészében lefoglalva" -#: templates/js/translated/stock.js:1865 +#: templates/js/translated/stock.js:2038 msgid "Stock item has been partially allocated" msgstr "Készlet tétel részben lefoglalva" -#: templates/js/translated/stock.js:1868 +#: templates/js/translated/stock.js:2041 msgid "Stock item has been installed in another item" msgstr "Készlet tétel beépítve egy másikba" -#: templates/js/translated/stock.js:1870 +#: templates/js/translated/stock.js:2043 msgid "Stock item has been consumed by a build order" -msgstr "" +msgstr "Készlet tétel fel lett használva egy gyártásban" -#: templates/js/translated/stock.js:1874 +#: templates/js/translated/stock.js:2047 msgid "Stock item has expired" msgstr "Készlet tétel lejárt" -#: templates/js/translated/stock.js:1876 +#: templates/js/translated/stock.js:2049 msgid "Stock item will expire soon" msgstr "Készlet tétel hamarosan lejár" -#: templates/js/translated/stock.js:1881 +#: templates/js/translated/stock.js:2054 msgid "Stock item has been rejected" msgstr "Készlet tétel elutasítva" -#: templates/js/translated/stock.js:1883 +#: templates/js/translated/stock.js:2056 msgid "Stock item is lost" msgstr "Készlet tétel elveszett" -#: templates/js/translated/stock.js:1885 +#: templates/js/translated/stock.js:2058 msgid "Stock item is destroyed" msgstr "Készlet tétel megsemmisült" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 msgid "Depleted" msgstr "Kimerült" -#: templates/js/translated/stock.js:2031 +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "Beszállítói alkatrész nincs megadva" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "Készletérték" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "Nincs a lekérdezésnek megfelelő készlet tétel" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "készlethelyek" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "Alhelyek betöltése" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "Részletek" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" -msgstr "Nem változott" +msgstr "Nincs változás" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "Alkatrész információ nem áll rendelkezésre" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "A hely már nem létezik" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "A gyártási utasítás már nem létezik" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "Beszerzési megrendelés már nem létezik" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "Vevői megrendelés már nem létezik" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "Visszavételi utasítás már nem létezik" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "Vevő már nem létezik" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "A készlet tétel már nem létezik" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "Hozzáadva" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "Eltávolítva" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "Nincsenek beépített tételek" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "Készlet tétel kiszedése" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "Válaszd ki a kiszedni való készlet tételt" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "Másik tétel beépítése ebbe a készlet tételbe" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "Készlet tételek csak akkor építhetők be ha teljesítik a következő kritériumokat" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "A készlet tétel egy olyan alkatrészre mutat ami alkatrészjegyzéke ennek a készlet tételnek" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "A készlet tétel jelenleg elérhető készleten" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "A készlet tétel még nem épült be egy másik tételbe" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "A készlet tétel követett vagy sorozatszámmal vagy batch kóddal" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "Válaszd ki a beépítendő alkatrészt" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "Válassz ki egy vagy több készlet tételt" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "Kiválasztott készlet tételek" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "Készlet állapot módosítása" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "Van projektszáma" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "Rendelés állapota" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "Kintlévő" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "Hozzám rendelt" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "Követésre kötelezett" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "Gyártmány alkatrész" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "Van elérhető készlete" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "Készlet változatok engedélyezése" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "Van árazás" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "Alhelyekkel együtt" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "Helyekkel együtt" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "Alkategóriákkal együtt" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "Értesítés beállítva" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "Sorozatszámos" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "Sorozatszám >=" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "Sorozatszám nagyobb vagy egyenlő mint" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "Sorozatszám <=" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "Sorozatszám kisebb vagy egyenlő mint" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "Sorozatszám" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "Batch kód" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "Aktív alkatrész" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "Aktív alkatrészek készletének megjelenítése" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "Az alkatrész egy gyártmány" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "Lefoglalt" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "Az tétel lefoglalásra került" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "Felhasználható készlet" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "Alhelyeken lévő készlettel együtt" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "Kimerült készlet tételek megjelenítése" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "Készleten lévő tételek megjelenítése" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "Gyártásban" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "Gyártásban lévő tételek megjelenítése" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "Változatokkal együtt" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "Alkatrészváltozatok készletével együtt" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "Beépítve" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "Másik tételbe beépült tételek mutatása" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "Készlet tételek melyek hozzá vannak rendelve egy vevőhöz" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "Készlet állapota" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "Van batch kódja" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "Követett" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "Követett készlet tétel sorozatszámmal vagy batch kóddal" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "Van beszerzési ára" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "Beszerzési árral rendelkező készlet tételek megjelenítése" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "Lejárat előtt" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "Lejárat után" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "Lejárt készlet tételek megjelenítése" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "Hamarosan lejáró készlet tételek megjelenítése" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "Teszten megfelelt" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "Beépített tételekkel együtt" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "Gyártási állapot" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "Alkategóriákkal együtt" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "Aktív alkatrészek megjelenítése" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "Elérhető" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" -msgstr "" +msgstr "Van mértékegysége" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" -msgstr "" +msgstr "Az alkatrésznek van megadva mértékegysége" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "Van IPN-je" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "Van belső cikkszáma" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "Készleten" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "Beszerezhető" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "Volt leltár" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" -msgstr "" +msgstr "Vannak lehetőségei" #: templates/js/translated/tables.js:92 msgid "Display calendar view" @@ -12362,51 +12566,51 @@ msgstr "Táblázat exportálása" msgid "Select File Format" msgstr "Fájlfomátum kiválasztása" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "Adatok betöltése" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "sor oldalanként" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "Összes sor mutatása" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "Látható" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "-" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "a" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "sorból," -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "Nincs egyező eredmény" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "Lapozó elrejtése/megjelenítése" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "Átváltás" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "Oszlopok" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "Összes" @@ -12508,11 +12712,11 @@ msgstr "Tovább" #: templates/socialaccount/login.html:29 msgid "Invalid SSO Provider" -msgstr "" +msgstr "Érvénytelen SSO szolgáltató" #: templates/socialaccount/login.html:31 msgid "The selected SSO provider is invalid, or has not been correctly configured" -msgstr "" +msgstr "A kiválasztott SSO kiszolgáló érvénytelen, vagy nincs megfelelően konfigurálva" #: templates/socialaccount/signup.html:10 #, python-format @@ -12522,11 +12726,11 @@ msgstr "A %(provider_name)s felhasználói fiókodat fogod használni a %(site_n #: templates/socialaccount/snippets/provider_list.html:26 msgid "Provider has not been configured" -msgstr "" +msgstr "A kiszolgáló nincs konfigurálva" #: templates/socialaccount/snippets/provider_list.html:35 msgid "No SSO providers have been configured" -msgstr "" +msgstr "Nincs SSO kiszolgáló konfigurálva" #: templates/stats.html:13 msgid "Instance Name" @@ -12588,50 +12792,6 @@ msgstr "Email beállítások" msgid "Email settings not configured" msgstr "Email beállítások hiányoznak" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "Vonalkód műveletek" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "Készlet opciók" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "Kiválasztott tételek mennyiségének növelése" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "Kiválasztott tételek mennyiségének csökkentése" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "Kiválasztott készlet tételek leltározása" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "Kiválasztott tételek áthelyezése" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "Kiválasztott tételek összevonása" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "Készlet összevonása" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "Kiválasztott tételek megrendelése" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "Kiválasztott tételek törlése" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "Készlet törlése" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "Igen" @@ -12664,35 +12824,35 @@ msgstr "Jogosultságok" msgid "Important dates" msgstr "Fontos dátumok" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "Jogosultságok" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "Csoport" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "Nézet" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "Jogosultság tételek megtekintéséhez" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "Jogosultság tételek hozzáadásához" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "Módosítás" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "Jogosultság tételek szerkesztéséhez" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "Jogosultság tételek törléséhez" diff --git a/InvenTree/locale/id/LC_MESSAGES/django.po b/InvenTree/locale/id/LC_MESSAGES/django.po index 93205ffc44..b72243a06f 100644 --- a/InvenTree/locale/id/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:53\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -23,52 +23,52 @@ msgstr "API endpoint tidak ditemukan" #: InvenTree/api.py:299 msgid "User does not have permission to view this model" -msgstr "" +msgstr "Pengguna tidak memiliki izin untuk melihat model ini" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" -msgstr "" +msgstr "Nilai tidak tersedia" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" -msgstr "" +msgstr "Nilai yang diberikan bukan angka yang valid" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" -msgstr "" +msgstr "Nilai yang diberikan mengandung satuan yang tidak valid" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" -msgstr "" +msgstr "Nilai yang diberikan tidak dapat dikonversi ke satuan yang dipilih" #: InvenTree/exceptions.py:90 msgid "Error details can be found in the admin panel" -msgstr "" +msgstr "Detail terkait galat dapat dilihat di panel admin" #: InvenTree/fields.py:131 msgid "Enter date" msgstr "Masukkan tanggal" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Catatan" @@ -79,49 +79,53 @@ msgstr "" #: InvenTree/format.py:162 msgid "Provided value does not match required pattern: " -msgstr "" +msgstr "Nilai yang diberikan tidak sesuai dengan pola yang ditentukan: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Masukkan sandi" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Masukkan kata sandi baru" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Konfirmasikan kata sandi" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Konfirmasi sandi baru" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Kata sandi lama" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Email (ulang)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Konfirmasi alamat email" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Masukkan email yang sama." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." -msgstr "" +msgstr "Alamat surel utama yang diberikan tidak valid." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." +msgstr "Domain surel yang diberikan tidak perbolehkan." + +#: InvenTree/forms.py:345 +msgid "Registration is disabled." msgstr "" -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Jumlah yang diberikan tidak valid" @@ -159,7 +163,7 @@ msgstr "" #: InvenTree/helpers.py:751 msgid "Remove HTML tags from this value" -msgstr "" +msgstr "Hapus tag-tag HTML dari nilai ini" #: InvenTree/helpers_model.py:133 msgid "Connection error" @@ -237,9 +241,9 @@ msgstr "File tidak ditemukan" msgid "Missing external link" msgstr "Tautan eksternal tidak ditemukan" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Lampiran" @@ -247,29 +251,30 @@ msgstr "Lampiran" msgid "Select file to attach" msgstr "Pilih file untuk dilampirkan" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Tautan" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Tautan menuju URL eksternal" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Komentar" @@ -277,13 +282,13 @@ msgstr "Komentar" msgid "File comment" msgstr "Komentar file" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Pengguna" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "Pilihan tidak valid" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Nama" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Keterangan" @@ -384,7 +389,7 @@ msgid "parent" msgstr "induk" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Direktori" @@ -420,16 +425,16 @@ msgstr "Terjadi Kesalahan Server" msgid "An error has been logged by the server." msgstr "Sebuah kesalahan telah dicatat oleh server." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Harus berupa angka yang valid" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" -msgstr "" +msgstr "Mata Uang" #: InvenTree/serializers.py:93 msgid "Select currency from available options" @@ -498,316 +503,319 @@ msgstr "URL file gambar external" msgid "Downloading images from remote URL is not enabled" msgstr "Unduhan gambar dari URL external tidak aktif" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Ceko" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Denmark" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Jerman" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Yunani" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Inggris" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Spanyol" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Spanyol (Meksiko)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Farsi / Persia" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Perancis" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Ibrani" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Hungaria" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Itali" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Jepang" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Korea" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Belanda" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norwegia" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polandia" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugis" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugis (Brasil)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Rusia" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Swedia" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Thai" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Turki" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnam" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Cina" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" -msgstr "" +msgstr "Pengecekan kesehatan sistem InvenTree gagal" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Diletakkan" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Selesai" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Dibatalkan" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Hilang" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Dikembalikan" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Dikirim" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Butuh perhatian" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Rusak" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Hancur" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Ditolak" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Item stok dibuat" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Item stok diubah" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Nomor seri yang ditetapkan" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Stok terhitung" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Stok yang ditambahkan manual" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Stok yang dikurangi manual" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Lokasi berubah" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Dirakit ke" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Diambil dari" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Komponen terpasang" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Komponen terlepas" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Dipisah dari item induk" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Pisah item dari barang induk" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Stok item digabungkan" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Dikonversi ke variasi" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Terkirim ke pelanggan" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Dikembalikan pelanggan" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Output order produksi dibuat" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Order output produksi selesai" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Terpakai oleh order produksi" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Terkirim ke pelanggan" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Dikembalikan pelanggan" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Produksi" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "Kelebihan tidak boleh melebihi 100%" msgid "Invalid value for overage" msgstr "Nilai kelebihan tidak valid" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Ubah Informasi User" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Atur Kata Sandi" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Bidang kata sandi tidak cocok" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Kata sandi yang salah" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Informasi Sistem" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Tentang InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Pesanan harus dibatalkan sebelum dapat dihapus" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Order Produksi" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Order Produksi" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Pilihan produksi induk tidak valid" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Referensi Order Produksi" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Referensi" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Produksi Induk" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Produksi induk dari produksi ini" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Produksi induk dari produksi ini" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Bagian" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Pilih bagian untuk diproduksi" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Referensi Order Penjualan" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Order penjualan yang teralokasikan ke pesanan ini" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Lokasi Sumber" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Lokasi Tujuan" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Pilih lokasi di mana item selesai akan disimpan" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Jumlah Produksi" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Jumlah item stok yang akan dibuat" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Item selesai" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Jumlah stok item yang telah diselesaikan" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Status pembuatan" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Kode status pembuatan" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Kode Kelompok" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Kode kelompok untuk hasil produksi ini" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Tanggal Pembuatan" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Target tanggal selesai" -#: build/models.py:258 +#: build/models.py:262 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:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Tanggal selesai" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "diselesaikan oleh" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Diserahkan oleh" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Pengguna yang menyerahkan order ini" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Penanggung Jawab" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Tautan eksternal" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Tidak ada hasil produksi yang ditentukan" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Hasil produksi sudah selesai" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Hasil produksi tidak sesuai dengan order produksi" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "Jumlah harus lebih besar daripada nol" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -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:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Item stok teralokasikan terlalu banyak" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Jumlah yang dialokasikan harus lebih dari nol" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Jumlah harus 1 untuk stok dengan nomor seri" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Item stok yang dipilih tidak ditemukan dalam daftar barang order" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Produksi" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Stok Item" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Sumber stok item" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Jumlah" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +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:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Item stok teralokasikan terlalu banyak" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Jumlah yang dialokasikan harus lebih dari nol" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Jumlah harus 1 untuk stok dengan nomor seri" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Stok Item" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Sumber stok item" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Jumlah stok yang dialokasikan ke produksi" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Pasang ke" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Tujuan stok item" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Hasil Produksi" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "Hasil produksi tidak sesuai dengan produksi induk" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "Hasil bagian tidak sesuai dengan bagian dalam order produksi" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Hasil produksi ini sudah diselesaikan" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "Hasil produksi tidak dialokasikan sepenuhnya" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Masukkan jumlah hasil pesanan" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "Jumlah bagian yang dapat dilacak harus berupa angka bulat" -#: build/serializers.py:261 +#: build/serializers.py:269 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:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Nomor Seri" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Masukkan nomor seri untuk hasil pesanan" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "Alokasikan nomor seri secara otomatis" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "Alokasikan item yang diperlukan dengan nomor seri yang sesuai secara otomatis" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" -msgstr "" +msgstr "Nomor-nomor seri berikut sudah ada atau tidak valid" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "Daftar hasil pesanan harus disediakan" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Lokasi" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "Lokasi hasil pesanan yang selesai" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Status" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "Terima Alokasi Tidak Lengkap" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "Terima Tidak Teralokasikan" -#: build/serializers.py:649 +#: build/serializers.py:657 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:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "Stok yang diperlukan belum teralokasikan sepenuhnya" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Terima Tidak Selesai" -#: build/serializers.py:665 +#: build/serializers.py:673 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:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "Jumlah produksi yang diperlukan masih belum cukup" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "Order memiliki hasil produksi yang belum dilengkapi" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "Item tagihan material" +#: build/serializers.py:722 +msgid "Build Line" +msgstr "" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "Hasil produksi" -#: build/serializers.py:732 +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "Hasil pesanan harus mengarah ke pesanan yang sama" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 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:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "Item harus tersedia dalam stok" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Jumlah tersedia ({q}) terlampaui" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "Hasil produksi harus ditentukan untuk mengalokasikan bagian yang terlacak" -#: build/serializers.py:859 +#: build/serializers.py:866 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:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "Stok item ini telah dialokasikan ke hasil produksi ini" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "Item yang dialokasikan harus disediakan" -#: build/serializers.py:943 +#: build/serializers.py:947 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:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "Lokasi tidak termasuk" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "Jangan ambil stok item dari lokasi yang dipilih" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "Stok bergantian" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Item stok di beberapa lokasi dapat digunakan secara bergantian" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "Stok pengganti" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "Izinkan alokasi bagian pengganti" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1550,7 +1604,7 @@ msgstr "" #: stock/templates/stock/item_base.html:45 #: stock/templates/stock/location.html:56 templates/qr_button.html:1 msgid "Show QR Code" -msgstr "" +msgstr "Tampilkan kode QR" #: build/templates/build/build_base.html:46 #: company/templates/company/supplier_part.html:42 @@ -1616,69 +1670,67 @@ msgstr "Selesaikan Produksi" msgid "Build Description" msgstr "Deskripsi Produksi" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "Tidak ada hasil pesanan yang dibuat oleh pesanan ini" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2297,8 +2294,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,10 +2303,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2317,10 +2314,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" -msgstr "" +msgid "Email required" +msgstr "Surel diperlukan" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" -msgstr "" +msgstr "Surel" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3872,6 +3947,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN harus sesuai dengan pola regex {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "Item tagihan material" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Tidak ada tindakan yang ditentukan" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7202,7 +7212,7 @@ msgstr "" #: plugin/builtin/integration/core_notifications.py:40 #: plugin/builtin/integration/core_notifications.py:81 msgid "Enable email notifications" -msgstr "" +msgstr "Aktifkan surel pemberitahuan" #: plugin/builtin/integration/core_notifications.py:41 #: plugin/builtin/integration/core_notifications.py:82 @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" -msgstr "" +msgstr "Lampiran perlu diunggah untuk tes ini" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Produksi" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -8998,17 +9013,18 @@ msgstr "" #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" -msgstr "" +msgstr "Alamat surel berikut dikaitkan dengan akun Anda:" #: templates/InvenTree/settings/user.html:76 msgid "Verified" -msgstr "" +msgstr "Terverifikasi" #: templates/InvenTree/settings/user.html:78 msgid "Unverified" -msgstr "" +msgstr "Tidak terverifikasi" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9030,15 +9046,15 @@ msgstr "" #: templates/InvenTree/settings/user.html:105 msgid "Add Email Address" -msgstr "" +msgstr "Tambah Alamat Surel" #: templates/InvenTree/settings/user.html:110 msgid "Add Email" -msgstr "" +msgstr "Tambah Surel" #: templates/InvenTree/settings/user.html:120 msgid "Multifactor" -msgstr "" +msgstr "Multifaktor" #: templates/InvenTree/settings/user.html:125 msgid "You have these factors available:" @@ -9046,7 +9062,7 @@ msgstr "" #: templates/InvenTree/settings/user.html:135 msgid "TOTP" -msgstr "" +msgstr "TOTP" #: templates/InvenTree/settings/user.html:141 msgid "Static" @@ -9090,15 +9106,15 @@ msgstr "" #: templates/InvenTree/settings/user.html:189 msgid "IP Address" -msgstr "" +msgstr "Alamat IP" #: templates/InvenTree/settings/user.html:190 msgid "Device" -msgstr "" +msgstr "Perangkat" #: templates/InvenTree/settings/user.html:191 msgid "Last Activity" -msgstr "" +msgstr "Aktivitas Terakhir" #: templates/InvenTree/settings/user.html:204 #, python-format @@ -9112,7 +9128,7 @@ msgstr "" #: templates/InvenTree/settings/user.html:218 msgid "Do you really want to remove the selected email address?" -msgstr "" +msgstr "Apakah Anda benar-benar ingin menghapus alamat surel yang dipilih?" #: templates/InvenTree/settings/user_display.html:9 msgid "Display Settings" @@ -9132,7 +9148,7 @@ msgstr "" #: templates/InvenTree/settings/user_display.html:58 msgid "Language Settings" -msgstr "" +msgstr "Pengaturan Bahasa" #: templates/InvenTree/settings/user_display.html:67 msgid "Select language" @@ -9185,7 +9201,7 @@ msgstr "" #: templates/InvenTree/settings/user_search.html:9 msgid "Search Settings" -msgstr "" +msgstr "Pengaturan Pencarian" #: templates/InvenTree/settings/user_sso.html:9 msgid "Single Sign On Accounts" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9271,12 +9291,12 @@ msgstr "" #: templates/account/email_confirm.html:6 #: templates/account/email_confirm.html:9 msgid "Confirm Email Address" -msgstr "" +msgstr "Konfirmasi alamat surel" #: templates/account/email_confirm.html:15 #, python-format msgid "Please confirm that %(email)s is an email address for user %(user_display)s." -msgstr "" +msgstr "Harap konfirmasikan bahwa %(email)s adalah alamat surel untuk pengguna %(user_display)s." #: templates/account/email_confirm.html:21 templates/js/translated/forms.js:726 msgid "Confirm" @@ -9331,7 +9351,7 @@ 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 "" +msgstr "Lupa kata sandi? Masukkan alamat surel Anda di bawah ini, dan kami akan mengirimkan surel yang memungkinkan Anda untuk mengatur ulangnya." #: templates/account/password_reset.html:23 msgid "Reset My Password" @@ -9388,7 +9408,7 @@ msgstr "" #: templates/allauth_2fa/authenticate.html:5 msgid "Two-Factor Authentication" -msgstr "" +msgstr "Autentikasi Dua-Faktor" #: templates/allauth_2fa/authenticate.html:13 msgid "Authenticate" @@ -9396,7 +9416,7 @@ msgstr "" #: templates/allauth_2fa/backup_tokens.html:6 msgid "Two-Factor Authentication Backup Tokens" -msgstr "" +msgstr "Token Cadangan untuk Autentikasi Dua-Faktor" #: 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." @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,21 +9518,21 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 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 "" +msgstr "Anda menerima surel ini karena Anda berlangganan pemberitahuan untuk bagian ini " #: 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:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" -msgstr "" +msgstr "Alamat Surel" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12435,7 +12639,7 @@ msgstr "" #: templates/notes_buttons.html:6 templates/notes_buttons.html:7 msgid "Save" -msgstr "" +msgstr "Simpan" #: templates/notifications.html:9 msgid "Show all notifications and history" @@ -12507,7 +12711,7 @@ msgstr "" #: templates/socialaccount/login.html:29 msgid "Invalid SSO Provider" -msgstr "" +msgstr "Penyedia SSO tidak valid" #: templates/socialaccount/login.html:31 msgid "The selected SSO provider is invalid, or has not been correctly configured" @@ -12581,56 +12785,12 @@ msgstr "" #: templates/stats.html:75 msgid "Email Settings" -msgstr "" +msgstr "Pengaturan Surel" #: templates/stats.html:78 msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12653,7 +12813,7 @@ msgstr "" #: users/admin.py:222 msgid "Personal info" -msgstr "" +msgstr "Data pribadi" #: users/admin.py:223 msgid "Permissions" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/it/LC_MESSAGES/django.po b/InvenTree/locale/it/LC_MESSAGES/django.po index a89e765f5e..1311be69ea 100644 --- a/InvenTree/locale/it/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -25,19 +25,19 @@ msgstr "Endpoint API non trovato" msgid "User does not have permission to view this model" msgstr "L'utente non ha i permessi per vedere questo modello" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "I dettagli dell'errore possono essere trovati nel pannello di amministra msgid "Enter date" msgstr "Inserisci la data" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Note" @@ -81,47 +81,51 @@ msgstr "Il valore '{name}' non è nel formato del pattern" msgid "Provided value does not match required pattern: " msgstr "Il valore fornito non corrisponde al modello richiesto: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Inserire la password" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Inserire una nuova password" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Conferma la password" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Conferma la nuova password" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Vecchia password" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Email (ancora)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Conferma indirizzo email" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "È necessario digitare la stessa e-mail ogni volta." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "L'indirizzo email principale fornito non è valido." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "L'indirizzo di posta elettronica fornito non è approvato." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Quantità inserita non valida" @@ -237,9 +241,9 @@ msgstr "File mancante" msgid "Missing external link" msgstr "Link esterno mancante" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Allegato" @@ -247,29 +251,30 @@ msgstr "Allegato" msgid "Select file to attach" msgstr "Seleziona file da allegare" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Collegamento" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Link a URL esterno" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Commento" @@ -277,13 +282,13 @@ msgstr "Commento" msgid "File comment" msgstr "Commento del file" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Utente" @@ -324,54 +329,54 @@ msgstr "Nomi duplicati non possono esistere sotto lo stesso genitore" msgid "Invalid choice" msgstr "Scelta non valida" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Nome" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Descrizione" @@ -384,7 +389,7 @@ msgid "parent" msgstr "genitore" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Percorso" @@ -420,12 +425,12 @@ msgstr "Errore del server" msgid "An error has been logged by the server." msgstr "Un errore è stato loggato dal server." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Deve essere un numero valido" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "URL del file immagine remota" msgid "Downloading images from remote URL is not enabled" msgstr "Il download delle immagini da URL remoto non è abilitato" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Ceco" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Danese" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Tedesco" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Greco" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Inglese" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Spagnolo" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Spagnolo (Messicano)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Farsi / Persiano" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Francese" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Ebraico" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Ungherese" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italiano" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Giapponese" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Coreano" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Olandese" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norvegese" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polacco" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portoghese" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portoghese (Brasile)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Russo" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Sloveno" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Svedese" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Thailandese" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Turco" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamita" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Cinese" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Controllo in background non riuscito" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "Server di posta non configurato" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "Controlli di sistema InvenTree falliti" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "In attesa" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Inviato" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Completo" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Annullato" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Perso" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Reso" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "In corso" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Spedito" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Attenzione necessaria" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Danneggiato" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Distrutto" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Respinto" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "In quarantena" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Voce di tracciamento stock preesistente" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Elemento stock creato" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Elemento stock modificato" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Numero di serie assegnato" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Stock contato" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Stock aggiunto manualmente" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Stock rimosso manualmente" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Posizione cambiata" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Installato nell'assemblaggio" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Rimosso dall'assemblaggio" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Componente installato" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Elemento componente rimosso" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Diviso dall'elemento genitore" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Dividi elemento figlio" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Elemento stock raggruppato" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Convertito in variante" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Inviato al cliente" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Restituito dal cliente" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Genera l'output dell'ordine creato" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Build order output completato" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Impegnato dall'ordine di costruzione" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "Spedito contro l'ordine di vendita" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "Ricevuto contro l'ordine di acquisto" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "Restituito contro l'ordine di ritorno" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Inviato al cliente" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Restituito dal cliente" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Produzione" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "Indietro" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "Riparare" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "Rimborso" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "Sostituire" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "Rimborso" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "Rifiuta" @@ -831,99 +839,127 @@ msgstr "L'eccesso non deve superare il 100%" msgid "Invalid value for overage" msgstr "Valore non valido per eccedenza" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Modifica informazioni utente" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Imposta Password" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Le password devono coincidere" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Password inserita non corretta" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Informazioni sistema" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Informazioni Su InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "La produzione deve essere annullata prima di poter essere eliminata" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "Consumabile" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "Opzionale" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "Monitorato" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "Allocato" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Ordine di Produzione" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Ordini di Produzione" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Scelta non valida per la produzione genitore" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Riferimento Ordine Di Produzione" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Riferimento" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "Breve descrizione della build (facoltativo)" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Produzione Genitore" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Ordine di produzione a cui questa produzione viene assegnata" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Ordine di produzione a cui questa produzione viene assegnata" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Articolo" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Selezionare parte da produrre" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Numero di riferimento ordine di vendita" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Ordine di vendita a cui questa produzione viene assegnata" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Posizione Di Origine" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Posizione Della Destinazione" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Seleziona il luogo in cui gli articoli completati saranno immagazzinati" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Quantità Produzione" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Numero di articoli da costruire" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Articoli completati" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Numero di articoli di magazzino che sono stati completati" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Stato Produzione" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Codice stato di produzione" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Codice Lotto" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Codice del lotto per questa produzione" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Data di creazione" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Data completamento obiettivo" -#: build/models.py:258 +#: build/models.py:262 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:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Data di completamento" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "Completato da" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Rilasciato da" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Utente che ha emesso questo ordine di costruzione" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Responsabile" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "Utente o gruppo responsabile di questo ordine di produzione" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Collegamento esterno" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "Priorità di produzione" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "Priorità di questo ordine di produzione" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "Codice del progetto" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "L'ordine di produzione {build} è stato completato" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "L'ordine di produzione è stato completato" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Nessun output di produzione specificato" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "La produzione è stata completata" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "L'output della produzione non corrisponde all'ordine di compilazione" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "La quantità deve essere maggiore di zero" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -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:1265 +msgid "Build object" +msgstr "" -#: build/models.py:1281 -#, 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:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "L'articolo in giacenza è sovrallocato" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "La quantità di assegnazione deve essere maggiore di zero" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "La quantità deve essere 1 per lo stock serializzato" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Articolo in giacenza selezionato non trovato nel BOM" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Produzione" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Costruisci per allocare gli articoli" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Articoli in magazzino" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Origine giacenza articolo" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Quantità" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +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:1371 +#, 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:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "L'articolo in giacenza è sovrallocato" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "La quantità di assegnazione deve essere maggiore di zero" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "La quantità deve essere 1 per lo stock serializzato" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Articoli in magazzino" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Origine giacenza articolo" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Quantità di magazzino da assegnare per la produzione" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Installa in" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Destinazione articolo in giacenza" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Genera Output" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "L'output generato non corrisponde alla produzione principale" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "L'output non corrisponde alle parti dell'ordine di produzione" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Questa produzione è stata già completata" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "Questo output non è stato completamente assegnato" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Inserisci la quantità per l'output di compilazione" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "Quantità totale richiesta per articoli rintracciabili" -#: build/serializers.py:261 +#: build/serializers.py:269 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:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Codice Seriale" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Inserisci i numeri di serie per gli output di compilazione (build option)" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "Numeri di Serie Assegnazione automatica" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "Assegna automaticamente gli articoli richiesti con i numeri di serie corrispondenti" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 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:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "Deve essere fornito un elenco dei risultati di produzione" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Posizione" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "Posizione per gli output di build completati" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Stato" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "Accetta Assegnazione Incompleta" -#: build/serializers.py:502 +#: build/serializers.py:510 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:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "Rimuovi Giacenze Allocate" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "Detrai qualsiasi scorta che è stata già assegnata a questa produzione" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "Rimuovi Output Incompleti" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "Elimina gli output di produzione che non sono stati completati" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "Accetta come consumato da questo ordine di produzione" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "Non assegnare prima di aver completato questo ordine di produzione" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "Giacenza in eccesso assegnata" -#: build/serializers.py:633 +#: build/serializers.py:641 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:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "Alcuni articoli di magazzino sono stati assegnati in eccedenza" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "Accetta Non Assegnato" -#: build/serializers.py:649 +#: build/serializers.py:657 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:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "La giacenza richiesta non è stata completamente assegnata" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Accetta Incompleta" -#: build/serializers.py:665 +#: build/serializers.py:673 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:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "La quantità di produzione richiesta non è stata completata" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "L'ordine di produzione ha output incompleti" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "Distinta base (Bom)" +#: build/serializers.py:722 +msgid "Build Line" +msgstr "" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "Genera Output" -#: build/serializers.py:732 +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "L'output di produzione deve puntare alla stessa produzione" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 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:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "L'articolo deve essere disponibile" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Quantità disponibile ({q}) superata" -#: build/serializers.py:852 +#: build/serializers.py:859 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:859 +#: build/serializers.py:866 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:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "Questa giacenza di magazzino è già stato assegnato a questa produzione" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "Deve essere indicata l'allocazione dell'articolo" -#: build/serializers.py:943 +#: build/serializers.py:947 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:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "Escludi Ubicazione" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "Escludi gli elementi stock da questa ubicazione selezionata" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "Scorte Intercambiabili" -#: build/serializers.py:958 +#: build/serializers.py:962 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:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "Sostituisci Giacenze" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "Consenti l'allocazione delle parti sostitutive" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "Articoli Opzionali" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "Assegna gli elementi opzionali della distinta base all'ordine di produzione" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Azioni Barcode" @@ -1616,69 +1670,67 @@ msgstr "Completa Produzione" msgid "Build Description" msgstr "Descrizione Produzione" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "Nessun output di produzione è stato creato per questo ordine di produzione" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "L'ordine di produzione è pronto per essere contrassegnato come completato" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "L'ordine di produzione non può essere completato poiché gli output rimangono in sospeso" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "La quantità di produzione richiesta non è stata completata" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 msgid "Stock has not been fully allocated to this Build Order" msgstr "Lo stock non è stato completamente assegnato a questo ordine di produzione" -#: build/templates/build/build_base.html:160 -#: build/templates/build/detail.html:138 order/models.py:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Data scadenza" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "Questa produzione era in scadenza il %(target)s" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "In ritardo" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Completato" +#: build/templates/build/build_base.html:178 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" +msgstr "Outputs Completati" -#: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "Completato" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Ordini di Vendita" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Inviato da" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "Priorità" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "Elimina Ordine Build" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "Genera Codice QR Ordine" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "Collega il codice a barre all'ordine di build" @@ -1727,8 +1779,8 @@ 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:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Destinazione" @@ -1742,21 +1794,21 @@ msgstr "Articoli Assegnati" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Lotto" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Creato" @@ -1764,147 +1816,106 @@ msgstr "Creato" msgid "No target date set" msgstr "Nessuna data di destinazione impostata" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Completato" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "Build Completata" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "Ordine di Produzione Subordinato" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "Assegna Scorte alla Produzione" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" -msgstr "Scorte Non Assegnate" +#: 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 "Unallocate Stock" -msgstr "Scorte Non Assegnate" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "Assegna automaticamente le scorte per la produzione" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "Assegnazione Automatica" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "Assegna manualmente le scorte per la produzione" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "Assegna Scorte" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Ordina articoli richiesti" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Ordine Articoli" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "Le scorte non rintracciabili sono state completamente assegnate per questo ordine di produzione" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "Le scorte non rintracciabili non sono state completamente assegnate per questo ordine di produzione" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "Assegna i prodotti selezionati" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "Questo ordine di produzione non ha alcun articolo rintracciabile nella distinta base" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "Produzione Incompleta" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "Crea nuova produzione" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "Nuova Produzione" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "Azioni di output" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "Completa la produzione selezionata" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "Completa gli outputs" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "Cancella la produzione selezionata" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "Cancella l'output" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "Produzioni Completate" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Allegati" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Genera Note" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "Assegnazione Completa" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" -msgstr "Tutte le giacenze non tracciate sono state assegnate" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" +msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Nuovo Ordine di Produzione" @@ -1912,14 +1923,10 @@ msgstr "Nuovo Ordine di Produzione" msgid "Build Order Details" msgstr "Dettagli Ordine di Produzione" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "Output Incompleti" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "Outputs Completati" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "Aggiornato" msgid "Timestamp of last update" msgstr "Orario dell'ultimo aggiornamento" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "Codice del progetto" - #: common/models.py:105 msgid "Unique project code" msgstr "Codice unico del progetto" @@ -2126,8 +2123,8 @@ 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:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "giorni" @@ -2259,9 +2256,9 @@ msgstr "Copia Template Parametri Categoria" msgid "Copy category parameter templates when creating a part" msgstr "Copia i modelli dei parametri categoria quando si crea un articolo" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Modello" @@ -2269,10 +2266,10 @@ msgstr "Modello" msgid "Parts are templates by default" msgstr "Gli articoli sono modelli per impostazione predefinita" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Assemblaggio" @@ -2280,8 +2277,8 @@ msgstr "Assemblaggio" 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:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Componente" @@ -2289,7 +2286,7 @@ msgstr "Componente" msgid "Parts can be used as sub-components by default" msgstr "Gli articoli possono essere assemblati da altri componenti per impostazione predefinita" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Acquistabile" @@ -2297,8 +2294,8 @@ msgstr "Acquistabile" msgid "Parts are purchaseable by default" msgstr "Gli articoli sono acquistabili per impostazione predefinita" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Vendibile" @@ -2306,10 +2303,10 @@ msgstr "Vendibile" msgid "Parts are salable by default" msgstr "Gli articoli sono acquistabili per impostazione predefinita" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Tracciabile" @@ -2317,10 +2314,10 @@ msgstr "Tracciabile" msgid "Parts are trackable by default" msgstr "Gli articoli sono tracciabili per impostazione predefinita" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Virtuale" @@ -2352,7 +2349,7 @@ msgstr "Dati iniziali dello stock" 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:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Dati iniziali del fornitore" @@ -2377,525 +2374,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "Icona predefinita Categoria Articolo (vuoto significa nessuna icona)" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "Usa Prezzi Fornitore" -#: common/models.py:1276 +#: common/models.py:1283 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:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "Ignora la Cronologia Acquisti" -#: common/models.py:1283 +#: common/models.py:1290 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:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "Utilizzare i prezzi degli articoli in stock" -#: common/models.py:1290 +#: common/models.py:1297 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:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "Età dei prezzi degli articoli in stock" -#: common/models.py:1297 +#: common/models.py:1304 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:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "Utilizza Variazione di Prezzo" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "Includi la variante dei prezzi nei calcoli dei prezzi complessivi" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "Solo Varianti Attive" -#: common/models.py:1315 +#: common/models.py:1322 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:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 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:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "Prezzi interni" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "Abilita prezzi interni per gli articoli" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "Sovrascrivi Prezzo Interno" -#: common/models.py:1340 +#: common/models.py:1347 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:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "Abilita stampa etichette" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "Abilita la stampa di etichette dall'interfaccia web" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "Etichetta Immagine DPI" -#: common/models.py:1354 +#: common/models.py:1361 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:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "Abilita Report di Stampa" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "Abilita generazione di report di stampa" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Modalità Debug" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "Genera report in modalità debug (output HTML)" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Dimensioni pagina" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Dimensione predefinita della pagina per i report PDF" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "Abilita Rapporto di Prova" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "Abilita generazione di stampe di prova" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "Allega Rapporto di Prova" -#: common/models.py:1396 +#: common/models.py:1403 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:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "Seriali Unici Globali" -#: common/models.py:1403 +#: common/models.py:1410 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:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "Auto Riempimento Numeri Seriali" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "Auto riempimento numeri nel modulo" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "Elimina scorte esaurite" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "Determina il comportamento predefinito quando un elemento stock è esaurito" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "Modello Codice a Barre" -#: common/models.py:1424 +#: common/models.py:1431 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:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "Scadenza giacenza" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "Abilita funzionalità di scadenza della giacenza" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "Vendi giacenza scaduta" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "Consenti la vendita di stock scaduti" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "Tempo di Scorta del Magazzino" -#: common/models.py:1444 +#: common/models.py:1451 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:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "Crea giacenza scaduta" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "Permetti produzione con stock scaduto" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "Controllo della proprietà della giacenza" -#: common/models.py:1459 +#: common/models.py:1466 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:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "Icona Predefinita Ubicazione di Magazzino" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "Icona Predefinita Ubicazione di Magazzino (vuoto significa nessuna icona)" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "Modello Di Riferimento Ordine Di Produzione" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "Modello richiesto per generare il campo di riferimento ordine di produzione" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" -msgstr "" +msgid "Build Order Reference Pattern" +msgstr "Modello Di Riferimento Ordine Di Produzione" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" -msgstr "" +msgid "Required pattern for generating Build Order reference field" +msgstr "Modello richiesto per generare il campo di riferimento ordine di produzione" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 +msgid "Return Order Reference Pattern" +msgstr "" + +#: common/models.py:1500 +msgid "Required pattern for generating Return Order reference field" +msgstr "" + +#: common/models.py:1506 +msgid "Edit Completed Return Orders" +msgstr "" + +#: common/models.py:1507 +msgid "Allow editing of return orders after they have been completed" +msgstr "" + +#: common/models.py:1513 msgid "Sales Order Reference Pattern" msgstr "Modello Di Riferimento Ordine Di Vendita" -#: common/models.py:1500 +#: common/models.py:1514 msgid "Required pattern for generating Sales Order reference field" msgstr "Modello richiesto per generare il campo di riferimento ordine di vendita" -#: common/models.py:1506 +#: common/models.py:1520 msgid "Sales Order Default Shipment" msgstr "Spedizione Predefinita Ordine Di Vendita" -#: common/models.py:1507 +#: common/models.py:1521 msgid "Enable creation of default shipment with sales orders" msgstr "Abilita la creazione di spedizioni predefinite con ordini di vendita" -#: common/models.py:1513 +#: common/models.py:1527 msgid "Edit Completed Sales Orders" msgstr "Modifica Ordini Di Vendita Completati" -#: common/models.py:1514 +#: common/models.py:1528 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:1520 +#: common/models.py:1534 msgid "Purchase Order Reference Pattern" msgstr "Modello di Riferimento Ordine D'Acquisto" -#: common/models.py:1521 +#: common/models.py:1535 msgid "Required pattern for generating Purchase Order reference field" msgstr "Modello richiesto per generare il campo di riferimento ordine di acquisto" -#: common/models.py:1527 +#: common/models.py:1541 msgid "Edit Completed Purchase Orders" msgstr "Modifica Ordini Di Acquisto Completati" -#: common/models.py:1528 +#: common/models.py:1542 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:1535 +#: common/models.py:1549 msgid "Enable password forgot" msgstr "Abilita password dimenticata" -#: common/models.py:1536 +#: common/models.py:1550 msgid "Enable password forgot function on the login pages" msgstr "Abilita la funzione password dimenticata nelle pagine di accesso" -#: common/models.py:1542 +#: common/models.py:1556 msgid "Enable registration" msgstr "Abilita registrazione" -#: common/models.py:1543 +#: common/models.py:1557 msgid "Enable self-registration for users on the login pages" msgstr "Abilita auto-registrazione per gli utenti nelle pagine di accesso" -#: common/models.py:1549 +#: common/models.py:1563 msgid "Enable SSO" msgstr "SSO abilitato" -#: common/models.py:1550 +#: common/models.py:1564 msgid "Enable SSO on the login pages" msgstr "Abilita SSO nelle pagine di accesso" -#: common/models.py:1556 +#: common/models.py:1570 msgid "Enable SSO registration" msgstr "Abilita registrazione SSO" -#: common/models.py:1557 +#: common/models.py:1571 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:1563 +#: common/models.py:1577 msgid "Email required" msgstr "Email richiesta" -#: common/models.py:1564 +#: common/models.py:1578 msgid "Require user to supply mail on signup" msgstr "Richiedi all'utente di fornire una email al momento dell'iscrizione" -#: common/models.py:1570 +#: common/models.py:1584 msgid "Auto-fill SSO users" msgstr "Riempimento automatico degli utenti SSO" -#: common/models.py:1571 +#: common/models.py:1585 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:1577 +#: common/models.py:1591 msgid "Mail twice" msgstr "Posta due volte" -#: common/models.py:1578 +#: common/models.py:1592 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:1584 +#: common/models.py:1598 msgid "Password twice" msgstr "Password due volte" -#: common/models.py:1585 +#: common/models.py:1599 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:1591 +#: common/models.py:1605 msgid "Allowed domains" msgstr "Domini consentiti" -#: common/models.py:1592 +#: common/models.py:1606 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:1598 +#: common/models.py:1612 msgid "Group on signup" msgstr "Gruppo iscrizione" -#: common/models.py:1599 +#: common/models.py:1613 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:1605 +#: common/models.py:1619 msgid "Enforce MFA" msgstr "Applica MFA" -#: common/models.py:1606 +#: common/models.py:1620 msgid "Users must use multifactor security." msgstr "Gli utenti devono utilizzare la sicurezza a due fattori." -#: common/models.py:1612 +#: common/models.py:1626 msgid "Check plugins on startup" msgstr "Controlla i plugin all'avvio" -#: common/models.py:1613 +#: common/models.py:1627 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:1620 -msgid "Check plugin signatures" -msgstr "Controlla le firme del plugin" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "Controlla e mostra le firme per i plugin" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "Abilita l'integrazione URL" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "Attiva plugin per aggiungere percorsi URL" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "Attiva integrazione navigazione" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "Abilita i plugin per l'integrazione nella navigazione" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "Abilita l'app integrata" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "Abilita plugin per aggiungere applicazioni" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "Abilita integrazione pianificazione" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "Abilita i plugin per eseguire le attività pianificate" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "Abilita eventi integrati" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "Abilita plugin per rispondere agli eventi interni" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "Funzionalità Dell'Inventario" -#: common/models.py:1676 +#: common/models.py:1683 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:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "Inventario periodico automatico" -#: common/models.py:1683 +#: common/models.py:1690 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:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 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:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "Tasto impostazioni (deve essere univoco - maiuscole e minuscole" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "Nessuna stampante (Esporta in PDF)" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" -msgstr "" +msgstr "Nascondi Articoli Inattivi" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "Mostra articoli sottoscritti" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "Mostra gli articoli sottoscritti nella homepage" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "Mostra le categorie sottoscritte" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "Mostra le categorie dei componenti sottoscritti nella homepage" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Mostra ultimi articoli" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "Mostra gli ultimi articoli sulla homepage" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "Conteggio Ultimi Articoli" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "Numero di articoli da visualizzare sulla pagina indice" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "Mostra distinta base non convalidata" @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "Mostra le giacenze modificate di recente nella homepage" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "Recente Conteggio Giacenze" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "Numero di giacenze recenti da visualizzare sulla pagina indice" - -#: common/models.py:1807 msgid "Show low stock" msgstr "Mostra disponibilità scarsa delle giacenze" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "Mostra disponibilità scarsa degli articoli sulla homepage" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "Mostra scorte esaurite" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "Mostra disponibilità scarsa delle scorte degli articoli sulla homepage" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "Mostra scorte necessarie" -#: common/models.py:1822 +#: common/models.py:1815 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:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "Mostra scorte esaurite" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "Mostra gli articoli stock scaduti nella home page" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "Mostra scorte obsolete" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "Mostra gli elementi obsoleti esistenti sulla home page" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "Mostra produzioni in attesa" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "Mostra produzioni in attesa sulla homepage" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "Mostra produzioni in ritardo" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "Mostra produzioni in ritardo sulla home page" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "Mostra ordini di produzione inevasi" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "Mostra ordini di produzione inevasi sulla home page" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "Mostra Ordini di Produzione in ritardo" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "Mostra Ordini di Produzione in ritardo sulla home page" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "Mostra Ordini di Vendita inevasi" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "Mostra Ordini di Vendita inevasi sulla home page" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "Mostra Ordini di Vendita in ritardo" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "Mostra Ordini di Vendita in ritardo sulla home page" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "Mostra Notizie" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "Mostra notizie sulla home page" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "Visualizzazione dell'etichetta in linea" -#: common/models.py:1899 +#: common/models.py:1892 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:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "Stampante per etichette predefinita" -#: common/models.py:1906 +#: common/models.py:1899 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:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "Visualizzazione dell'etichetta in linea" -#: common/models.py:1913 +#: common/models.py:1906 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:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "Cerca Articoli" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "Mostra articoli della ricerca nella finestra di anteprima" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "Mostra articoli del fornitore nella finestra di anteprima" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "Cerca Articoli Produttore" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "Mostra articoli del produttore nella finestra di anteprima" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "Nascondi Articoli Inattivi" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "Escludi articoli inattivi dalla finestra di anteprima della ricerca" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "Cerca Categorie" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "Mostra categorie articolo nella finestra di anteprima di ricerca" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "Cerca Giacenze" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "Mostra articoli in giacenza nella finestra di anteprima della ricerca" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "Nascondi elementi non disponibili" -#: common/models.py:1962 +#: common/models.py:1955 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:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "Cerca Ubicazioni" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "Mostra ubicazioni delle giacenze nella finestra di anteprima di ricerca" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "Cerca Aziende" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "Mostra le aziende nella finestra di anteprima di ricerca" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "Cerca Ordini Di Produzione" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "Mostra gli ordini di produzione nella finestra di anteprima di ricerca" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "Cerca Ordini di Acquisto" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "Mostra gli ordini di acquisto nella finestra di anteprima di ricerca" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "Escludi Ordini D'Acquisto Inattivi" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "Escludi ordini di acquisto inattivi dalla finestra di anteprima di ricerca" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "Cerca Ordini Di Vendita" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "Visualizzazione degli ordini di vendita nella finestra di anteprima della ricerca" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "Escludi Ordini Di Vendita Inattivi" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "Escludi ordini di vendita inattivi dalla finestra di anteprima di ricerca" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "Cerca Ordini Di Reso" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "Risultati Dell'Anteprima Di Ricerca" -#: common/models.py:2032 +#: common/models.py:2025 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:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "Ricerca con regex" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "Mostra quantità nei moduli" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "Visualizzare la quantità di pezzi disponibili in alcuni moduli" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "Il tasto Esc chiude i moduli" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "Utilizzare il tasto Esc per chiudere i moduli modali" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "Barra di navigazione fissa" -#: common/models.py:2067 +#: common/models.py:2060 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:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "Formato Data" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "Formato predefinito per visualizzare le date" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Programmazione Prodotto" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "Mostra informazioni sulla pianificazione del prodotto" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventario Prodotto" -#: common/models.py:2096 +#: common/models.py:2089 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:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "Lunghezza Stringa Tabella" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "Limite massimo di lunghezza per le stringhe visualizzate nelle viste della tabella" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "Quantità prezzo limite" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Prezzo" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "Prezzo unitario in quantità specificata" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "Scadenza" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "Scadenza in cui questa notifica viene ricevuta" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "Nome per questa notifica" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "Attivo" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "È questa notifica attiva" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "Token" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "Token per l'accesso" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "Segreto" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "Segreto condiviso per HMAC" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "ID Messaggio" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "Identificatore unico per questo messaggio" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "Host" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "Host da cui questo messaggio è stato ricevuto" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "Intestazione" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "Intestazione di questo messaggio" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "Contenuto" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "Contenuto di questo messaggio" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "Scadenza in cui questo messaggio è stato ricevuto" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "Lavorato il" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "Il lavoro su questo messaggio è terminato?" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "Id" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "Titolo" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "Pubblicato" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "Autore" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "Riepilogo" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "Letto" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "Queste notizie sull'elemento sono state lette?" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "Queste notizie sull'elemento sono state lette?" msgid "Image" msgstr "Immagine" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "File immagine" @@ -3497,7 +3487,7 @@ msgstr "Descrizione dell'azienda" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Sito Web" @@ -3505,303 +3495,388 @@ msgstr "Sito Web" msgid "Company website URL" msgstr "Sito web aziendale" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Indirizzo" - -#: company/models.py:119 -msgid "Company address" -msgstr "Indirizzo dell'azienda" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Telefono" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Numero di telefono di contatto" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "Email" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Indirizzo email" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Contatto" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Punto di contatto" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "Collegamento alle informazioni aziendali esterne" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "è un cliente" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "Vendi oggetti a questa azienda?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "è un fornitore" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "Acquistate articoli da questa azienda?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "è un produttore" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "Questa azienda produce articoli?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "Valuta predefinita utilizzata per questa azienda" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Azienda" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Articolo di base" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Seleziona articolo" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Produttore" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Seleziona Produttore" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "Codice articolo produttore (MPN)" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "Codice articolo produttore" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "URL dell'articolo del fornitore" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "Descrizione articolo costruttore" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Codice articolo produttore" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Nome parametro" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Valore" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Valore del parametro" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Unità" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "Unità parametri" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "L'articolo del costruttore collegato deve riferirsi alla stesso articolo" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Fornitore" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Seleziona fornitore" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "SKU" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "Unità di giacenza magazzino fornitore" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "Selezionare un produttore" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "URL dell'articolo del fornitore" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "Descrizione articolo fornitore" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Nota" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "costo base" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "Onere minimo (ad esempio tassa di stoccaggio)" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "Confezionamento" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "Imballaggio del pezzo" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "Quantità Confezione" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "multiplo" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "Ordine multiplo" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "Disponibile" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "Quantità disponibile dal fornitore" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "Disponibilità Aggiornata" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "Data dell’ultimo aggiornamento dei dati sulla disponibilità" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "Valuta predefinita utilizzata per questo fornitore" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Crea ordine d'acquisto" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "Modifica le informazioni dell'azienda" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Modifica azienda" @@ -3854,17 +3929,17 @@ msgstr "Scarica immagine dall'URL" msgid "Delete image" msgstr "Elimina immagine" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Cliente" @@ -3872,6 +3947,13 @@ msgstr "Cliente" msgid "Uses default currency" msgstr "Valuta predefinita" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Indirizzo" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Telefono" @@ -3904,7 +3986,7 @@ msgstr "Download Immagine" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Articoli fornitore" @@ -3914,129 +3996,121 @@ msgstr "Crea nuovo fornitore" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Nuovo fornitore articolo" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Articoli ordinati" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Cancella articoli" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Cancella articoli" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 msgid "Manufacturer Parts" msgstr "Articoli Produttore" -#: company/templates/company/detail.html:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Crea nuovo articolo produttore" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Nuovo Produttore Articoli" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Giacenza Fornitore" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Ordine di acquisto" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Crea nuovo ordine di acquisto" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Nuovo Ordine di Acquisto" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "Ordini di Vendita" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Crea nuovo ordine di vendita" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "Nuovo Ordine di Vendita" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "Assegna Giacenza" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "Ordini di reso" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "Crea nuovo ordine di reso" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "Nuovo Ordine Di Reso" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Note Dell'Azienda" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "Contatti Azienda" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: company/templates/company/detail.html:187 +#: company/templates/company/detail.html:188 msgid "Add Contact" msgstr "Aggiungi contatti" +#: 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/index.html:8 msgid "Supplier List" msgstr "Elenco dei fornitori" @@ -4048,17 +4122,17 @@ msgstr "Produttori" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "Articoli ordinati" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "Modifica articolo produttore" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "Cancella articolo produttore" @@ -4078,40 +4152,22 @@ msgstr "Nessuna informazione sul produttore disponibile" msgid "Suppliers" msgstr "Fornitori" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "Elimina articolo fornitore" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Elimina" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Parametri" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "Nuovo Parametro" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Elimina il parametro" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "Aggiungi parametro" @@ -4135,23 +4191,28 @@ msgstr "Elementi in Giacenza Impegnati" msgid "Contacts" msgstr "Contatti" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "Articolo Fornitore" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "Azioni Articolo Fornitore" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "Ordine Articolo" @@ -4162,13 +4223,13 @@ msgstr "Aggiorna Disponibilità" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "Modifica fornitore articolo" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "Duplica Articoli Fornitore" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "Fornitore articolo in giacenza" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "Crea nuova allocazione magazzino" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "Nuovo Elemento in giacenza" @@ -4203,37 +4264,37 @@ msgstr "Nuovo Elemento in giacenza" msgid "Supplier Part Orders" msgstr "Ordini articoli fornitore" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Informazioni Prezzi" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "Aggiungi riduzione prezzo" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "Codice Articolo Fornitore QR" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "Collega Codice a Barre con l'Articolo Fornitore" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "Aggiorna Disponibilità Articolo" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Articoli in magazzino" @@ -4259,7 +4320,7 @@ msgstr "Clienti" msgid "New Customer" msgstr "Nuovo cliente" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Aziende" @@ -4267,77 +4328,70 @@ msgstr "Aziende" msgid "New Company" msgstr "Nuova Azienda" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "Nome etichetta" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "Descrizione etichetta" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "Etichetta" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "File modello etichetta" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "Abilitato" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "Modello di etichetta abilitato" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Larghezza [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "Larghezza dell'etichetta, specificata in mm" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Altezza [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "Larghezza dell'etichetta, specificata in mm" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "Formato del nome file" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "Formato del nome file per la generazione etichetta" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," -msgstr "Filtri di ricerca (elenco separato da virgole key=coppia di valori)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" +msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Filtri" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "Filtri di ricerca (elenco separato da virgole key=coppia di valori" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "Articolo Filtri di ricerca (elenco separato da virgole key=coppia di valori)" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "Prezzo Totale" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "Nessun ordine di acquisto corrispondente trovato" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Ordine D'Acquisto" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "Restituisci ordine" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "Sconosciuto" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "Prezzo totale dell'ordine" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "Il contatto non corrisponde all'azienda selezionata" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "Descrizione dell'ordine (opzionale)" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "Seleziona il codice del progetto per questo ordine" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "Collegamento a un sito web esterno" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Data prevista per la consegna dell'ordine. L'ordine scadrà dopo questa data." -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "Creato Da" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "Utente o gruppo responsabile di questo ordine" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "Punto di contatto per questo ordine" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "Riferimento ordine" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "Stato ordine d'acquisto" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "Azienda da cui sono stati ordinati gli articoli" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "Riferimento fornitore" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "Codice di riferimento ordine fornitore" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "ricevuto da" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "Data di emissione" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "Data di emissione ordine" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "Data ordine completato" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "Il fornitore dell'articolo deve corrispondere al fornitore dell'ordine di produzione" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "La quantità deve essere un numero positivo" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "Azienda da cui sono stati ordinati gli elementi" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "Riferimento Cliente " -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "Codice di riferimento Ordine del Cliente" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "Data di spedizione" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "spedito da" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "L'ordine non può essere completato perché nessun articolo è stato assegnato" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "Solo un ordine aperto può essere contrassegnato come completo" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "L'ordine non può essere completato in quanto ci sono spedizioni incomplete" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "L'ordine non può essere completato perché ci sono elementi di riga incompleti" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "Quantità Elementi" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "Riferimento Linea Elemento" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "Note linea elemento" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Data di destinazione per questa voce di riga (lasciare vuoto per utilizzare la data di destinazione dall'ordine)" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "Contesto" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "Contesto aggiuntivo per questa voce" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "Prezzo unitario" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "L'articolo del fornitore deve corrispondere al fornitore" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "eliminato" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "Ordine" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "Articolo Fornitore" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "Ricevuto" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "Numero di elementi ricevuti" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Prezzo di Acquisto" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "Prezzo di acquisto unitario" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "Dove l'Acquirente desidera che questo elemento venga immagazzinato?" -#: order/models.py:1288 +#: order/models.py:1304 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:1293 +#: order/models.py:1309 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:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "Prezzo di Vendita" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "Prezzo unitario di vendita" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "Quantità spedita" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "Data di spedizione" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "Verificato Da" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "Utente che ha controllato questa spedizione" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "Spedizione" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "Numero di spedizione" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "Numero di monitoraggio" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "Informazioni di monitoraggio della spedizione" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "Numero Fattura" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "Numero di riferimento per la fattura associata" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "La spedizione è già stata spedita" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "La spedizione non ha articoli di stock assegnati" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "L'elemento di magazzino non è stato assegnato" -#: order/models.py:1589 +#: order/models.py:1605 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:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "Impossibile allocare stock a una riga senza un articolo" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "La quantità di ripartizione non puo' superare la disponibilità della giacenza" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "La quantità deve essere 1 per l'elemento serializzato" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "L'ordine di vendita non corrisponde alla spedizione" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "La spedizione non corrisponde all'ordine di vendita" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "Linea" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "Riferimento della spedizione ordine di vendita" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "Elemento" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "Seleziona elemento stock da allocare" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "Inserisci la quantità assegnata alla giacenza" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "Seleziona l'elemento da restituire dal cliente" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "Data di ricezione" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "Risultati" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "L'ordine non può essere cancellato" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "Consenti di chiudere l'ordine con elementi di riga incompleti" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "L'ordine ha elementi di riga incompleti" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "L'ordine non è aperto" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "Valuta prezzo d'acquisto" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "L'articolo del fornitore deve essere specificato" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "L'ordine di acquisto deve essere specificato" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "Il fornitore deve essere abbinato all'ordine d'acquisto" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "L'ordine di acquisto deve essere abbinato al fornitore" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "Elemento Riga" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "L'elemento di riga non corrisponde all'ordine di acquisto" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "Seleziona la posizione di destinazione per gli elementi ricevuti" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "Inserisci il codice univoco per gli articoli in arrivo" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "Inserisci i numeri di serie per gli articoli stock in arrivo" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Codice a Barre" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "Codice a barre scansionato" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "Il codice a barre è già in uso" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "Deve essere fornita una quantità intera per gli articoli rintracciabili" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "Gli elementi di linea devono essere forniti" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "La destinazione deve essere specificata" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "I valori dei codici a barre forniti devono essere univoci" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "Valuta prezzo di vendita" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "Nessun dettaglio di spedizione fornito" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "L'elemento di riga non è associato a questo ordine" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "La quantità deve essere positiva" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "Inserisci i numeri di serie da assegnare" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "La spedizione è già stata spedita" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "La spedizione non è associata con questo ordine" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "Nessuna corrispondenza trovata per i seguenti numeri di serie" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "I seguenti numeri di serie sono già assegnati" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "Ordine D'Acquisto in ritardo" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "L'ordine d'acquisto {po} è in ritardo" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "Ordini Di Vendita in ritardo" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "L'ordine di vendita {so} è ora in ritardo" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "Ricevere articoli" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "Ricevi elementi" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "Contrassegna ordine come completato" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "Completa l'ordine" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "Riferimento ordine" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "Descrizione Dell'Ordine" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "Stato dell'ordine" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "Nessuna informazione sul fornitore disponibile" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "Elementi della linea completati" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "Incompleto" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "Emesso" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "Costo totale" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "Il costo totale non può essere calcolato" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "Collega il codice a barre all'ordine d'acquisto" @@ -5083,13 +5133,13 @@ msgstr "Duplica selezionati" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "Elimina riga" @@ -5150,9 +5200,9 @@ msgstr "Elementi D'Ordine D'Acquisto" #: 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "Aggiungi Elemento Riga" @@ -5163,30 +5213,25 @@ msgstr "Aggiungi Elemento Riga" msgid "Receive Line Items" msgstr "Ricevi Oggetti Riga" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "Elimina Elementi Riga" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: order/templates/order/return_order_detail.html:45 +#: order/templates/order/sales_order_detail.html:41 msgid "Extra Lines" msgstr "Linee Extra" -#: order/templates/order/purchase_order_detail.html:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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 "Aggiungi Linea Extra" -#: order/templates/order/purchase_order_detail.html:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "Elementi Ricevuti" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "Note dell'Ordine" @@ -5206,29 +5251,29 @@ msgstr "Stampa lista d'imballaggio" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "Riferimento Cliente" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "Costo Totale" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "Spedisci oggetti" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "Completa Ordine Di Vendita" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "Questo Ordine di Vendita non è stato assegnato completamente" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: order/templates/order/sales_order_detail.html:99 #: order/templates/order/so_sidebar.html:11 msgid "Completed Shipments" msgstr "Spedizioni Completate" -#: order/templates/order/sales_order_base.html:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "Elementi Ordine di Vendita" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 msgid "Pending Shipments" msgstr "Spedizione in sospeso" -#: order/templates/order/sales_order_detail.html:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "Azioni" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "Nuova spedizione" @@ -5309,12 +5353,12 @@ 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:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "Codice Articolo" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "Nome Articolo" @@ -5323,19 +5367,20 @@ msgstr "Nome Articolo" msgid "Part Description" msgstr "Descrizione Articolo" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "IPN - Numero di riferimento interno" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "Revisione" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "Parole Chiave" @@ -5356,24 +5401,24 @@ msgstr "Posizione Predefinita ID" msgid "Default Supplier ID" msgstr "ID Fornitore Predefinito" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "Variante Di" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "Scorta Minima" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "In magazzino" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "Ordinato" @@ -5381,23 +5426,16 @@ msgstr "Ordinato" msgid "Used In" msgstr "Utilizzato In" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "Allocato" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "In Costruzione" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "Costo Minimo" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "Costo Massimo" @@ -5414,13 +5452,13 @@ msgstr "Nome Principale" msgid "Category Path" msgstr "Percorso Categoria" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Articoli" @@ -5437,7 +5475,7 @@ msgstr "ID Elemento Distinta Base" msgid "Parent IPN" msgstr "IPN Principale" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "IPN Articolo" @@ -5451,35 +5489,35 @@ msgstr "Prezzo Minimo" msgid "Maximum Price" msgstr "Prezzo Massimo" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "Ordine D'Acquisto In Arrivo" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "Ordine di Vendita in Uscita" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "Giacenza prodotta dall'Ordine di Costruzione" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "Giacenza richiesta per l'Ordine di Produzione" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "Valido" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "Convalida l'intera Fattura dei Materiali" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "Questa opzione deve essere selezionata" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "Posizione Predefinita" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "Giacenze Totali" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "Disponibilità in magazzino" @@ -5497,917 +5535,913 @@ msgstr "Disponibilità in magazzino" msgid "Input quantity for price calculation" msgstr "Digita la quantità per il calcolo del prezzo" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Categoria Articoli" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "Categorie Articolo" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "Posizione predefinita per gli articoli di questa categoria" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "Strutturale" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Le parti non possono essere assegnate direttamente a una categoria strutturale, ma possono essere assegnate a categorie subordinate." -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "Keywords predefinite" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "Parole chiave predefinite per gli articoli in questa categoria" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "Icona" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "Icona (facoltativa)" -#: part/models.py:163 +#: part/models.py:165 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:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "Scelta non valida per l'articolo principale" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "L'articolo '{p1}' è usato nella Distinta Base per '{p2}' (ricorsivo)" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN deve corrispondere al modello regex {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "Esiste già un elemento stock con questo numero seriale" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "Non è consentito duplicare IPN nelle impostazioni dell'articolo" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "Un articolo con questo Nome, IPN e Revisione esiste già." -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "Gli articoli non possono essere assegnati a categorie articolo principali!" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "Nome articolo" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "È Template" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "Quest'articolo è un articolo di template?" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "Questa parte è una variante di un altro articolo?" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "Parole chiave per migliorare la visibilità nei risultati di ricerca" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "Categoria" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "Categoria articolo" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "Numero Dell'articolo Interno" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "Numero di revisione o di versione" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "Dove viene normalmente immagazzinato questo articolo?" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "Fornitore predefinito" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "Articolo fornitore predefinito" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "Scadenza Predefinita" -#: part/models.py:974 +#: part/models.py:979 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:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "Livello minimo di giacenza consentito" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "Unita di misura per questo articolo" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "Questo articolo può essere costruito da altri articoli?" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "Questo articolo può essere utilizzato per costruire altri articoli?" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "Questo articolo ha il tracciamento per gli elementi unici?" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "Quest'articolo può essere acquistato da fornitori esterni?" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "Questo pezzo può essere venduto ai clienti?" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "Quest'articolo è attivo?" -#: part/models.py:1028 +#: part/models.py:1033 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:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "Somma di controllo Distinta Base" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "Somma di controllo immagazzinata Distinta Base" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "Distinta Base controllata da" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "Data di verifica Distinta Base" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "Creazione Utente" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "Utente responsabile di questo articolo" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "Ultimo Inventario" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "Vendita multipla" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "Valuta utilizzata per calcolare i prezzi" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "Costo Minimo Distinta Base" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "Costo minimo dei componenti dell'articolo" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "Costo Massimo Distinta Base" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "Costo massimo dei componenti dell'articolo" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "Importo Acquisto Minimo" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "Costo minimo di acquisto storico" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "Importo massimo acquisto" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "Costo massimo di acquisto storico" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "Prezzo Interno Minimo" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "Costo minimo basato su interruzioni di prezzo interne" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "Prezzo Interno Massimo" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "Costo massimo basato su interruzioni di prezzo interne" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "Prezzo Minimo Fornitore" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "Prezzo minimo articolo da fornitori esterni" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "Prezzo Massimo Fornitore" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "Prezzo massimo dell'articolo proveniente da fornitori esterni" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "Variazione di costo minimo" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "Costo minimo calcolato di variazione dell'articolo" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "Massima variazione di costo" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "Costo massimo calcolato di variazione dell'articolo" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "Costo minimo totale calcolato" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "Costo massimo totale calcolato" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "Prezzo Di Vendita Minimo" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "Prezzo minimo di vendita basato sulle interruzioni di prezzo" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "Prezzo Di Vendita Massimo" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "Prezzo massimo di vendita basato sulle interruzioni di prezzo" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "Costo Di Vendita Minimo" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "Prezzo storico minimo di vendita" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "Costo Di Vendita Minimo" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "Prezzo storico massimo di vendita" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "Articolo per l'inventario" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "Contatore Elemento" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "Numero di scorte individuali al momento dell'inventario" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "Totale delle scorte disponibili al momento dell'inventario" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "Data" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "Data in cui è stato effettuato l'inventario" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "Note aggiuntive" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "Utente che ha eseguito questo inventario" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "Costo Minimo Scorta" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "Costo minimo stimato di magazzino a disposizione" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "Costo Massimo Scorte" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "Costo massimo stimato di magazzino a disposizione" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "Report" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "File Report Inventario (generato internamente)" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "Conteggio Articolo" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "Numero di articoli oggetto d'inventario" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "Utente che ha richiesto questo report inventario" -#: part/models.py:3232 +#: part/models.py:3275 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:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "Una prova con questo nome esiste già per questo articolo" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "Nome Test" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "Inserisci un nome per la prova" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "Descrizione Di Prova" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "Inserisci descrizione per questa prova" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "Richiesto" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "Questa prova è necessaria per passare?" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "Valore richiesto" -#: part/models.py:3288 +#: part/models.py:3331 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:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "Allegato Richiesto" -#: part/models.py:3294 +#: part/models.py:3337 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:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "Il nome del modello del parametro deve essere univoco" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "Nome Parametro" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "Descrizione del parametro" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "Articolo principale" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "Modello Parametro" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "Dati" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "Valore del Parametro" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "Valore Predefinito" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "Valore Parametro Predefinito" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "ID articolo o nome articolo" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "Valore ID articolo univoco" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "Valore IPN articolo" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "Livello" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "Livello distinta base" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "Distinta base (Bom)" + +#: part/models.py:3812 msgid "Select parent part" msgstr "Seleziona articolo principale" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "Articolo subordinato" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "Seleziona l'articolo da utilizzare nella Distinta Base" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "Quantità Distinta Base per questo elemento Distinta Base" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "Opzionale" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "Questo elemento della Distinta Base è opzionale" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "Consumabile" - -#: part/models.py:3784 +#: part/models.py:3838 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:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Eccedenza" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Quantità stimata scarti di produzione (assoluta o percentuale)" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "Riferimento Elemento Distinta Base" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "Note Elemento Distinta Base" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "Codice di controllo" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "Codice di controllo Distinta Base" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "Convalidato" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 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:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "Consenti Le Varianti" -#: part/models.py:3817 +#: part/models.py:3871 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:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "La quantità deve essere un valore intero per gli articoli rintracciabili" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "L'articolo subordinato deve essere specificato" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "Elemento Distinta Base Sostituito" -#: part/models.py:4051 +#: part/models.py:4105 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:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "Elemento principale Distinta Base" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "Sostituisci l'Articolo" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "Articolo 1" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "Articolo 2" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "Seleziona Prodotto Relativo" -#: part/models.py:4109 +#: part/models.py:4163 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:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "La relazione duplicata esiste già" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "Valuta di acquisto di questo articolo in stock" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "Articolo Originale" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "Seleziona l'articolo originale da duplicare" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "Copia immagine" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "Copia immagine dall'articolo originale" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Copia Distinta Base" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "Copia fattura dei materiali dall'articolo originale" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "Copia parametri" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "Copia i dati dei parametri dall'articolo originale" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "Quantità iniziale" -#: part/serializers.py:327 +#: part/serializers.py:388 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:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "Ubicazione Iniziale Magazzino" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "Specificare l'ubicazione iniziale del magazzino per questo Articolo" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "Seleziona il fornitore (o lascia vuoto per saltare)" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "Seleziona il produttore (o lascia vuoto per saltare)" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "Codice articolo Produttore" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "L'azienda selezionata non è un fornitore valido" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "L'azienda selezionata non è un produttore valido" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "L'articolo del produttore che corrisponde a questo MPN esiste già" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "L'articolo del fornitore che corrisponde a questo SKU esiste già" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "Duplica articolo" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "Copia i dati iniziali da un altro Articolo" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Stock iniziale" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "Crea Articolo con quantità di scorta iniziale" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "Informazioni Fornitore" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "Aggiungi le informazioni iniziali del fornitore per questo articolo" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "Copia Parametri Categoria" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "Copia i parametri dai modelli della categoria articolo selezionata" -#: part/serializers.py:842 +#: part/serializers.py:920 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:848 +#: part/serializers.py:926 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:854 +#: part/serializers.py:932 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:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "Genera Report" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "Genera file di report contenente dati di inventario calcolati" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "Aggiorna Articoli" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "Aggiorna gli articoli specificati con i dati calcolati di inventario" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "La funzione Inventario non è abilitata" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "Aggiorna" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "Aggiorna i prezzi per questo articolo" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "Seleziona l'articolo da cui copiare la distinta base" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "Rimuovi Dati Esistenti" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "Rimuovi elementi distinta base esistenti prima di copiare" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "Includi Ereditato" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "Includi gli elementi Distinta Base ereditati da prodotti template" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "Salta Righe Non Valide" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "Abilita questa opzione per saltare le righe non valide" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "Copia Articoli sostitutivi" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "Copia articoli sostitutivi quando duplichi gli elementi distinta base" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "Cancella Distinta Base esistente" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "Rimuovi elementi distinta base esistenti prima del caricamento" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "Nessuna colonna articolo specificata" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "Trovati più articoli corrispondenti" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "Nessun articolo corrispondente trovato" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "L'articolo non è indicato come componente" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "Quantità non fornita" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "Quantità non valida" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "Almeno un elemento della distinta base è richiesto" @@ -6420,9 +6454,9 @@ msgstr "Notifica di magazzino bassa" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "Lo stock disponibile per {part.name} è sceso sotto il livello minimo configurato" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "Quantità Totale" @@ -6460,14 +6494,6 @@ msgstr "La distinta base per %(part)s è stato controllato da %(checker msgid "The BOM for %(part)s has not been validated." msgstr "La distinta base per %(part)s non è stata convalidata." -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "Azioni Distinta Base" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "Elimina Elementi" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "Esegui inventario per questa categoria articolo" @@ -6504,7 +6530,7 @@ msgstr "Cancella categoria" msgid "Top level part category" msgstr "Categoria articolo di livello superiore" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Sottocategorie" @@ -6517,33 +6543,21 @@ msgstr "Articoli (incluse le sottocategorie)" msgid "Create new part" msgstr "Crea nuovo articolo" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "Nuovo articolo" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "Opzioni" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "Imposta categoria" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "Imposta Categoria" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "Parametri articolo" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "Crea nuova categoria articoli" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "Nuova categoria" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "Aggiorna i dati di pianificazione" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "Aggiorna" @@ -6591,7 +6605,7 @@ msgstr "Aggiungi informazioni inventario" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "Inventario" @@ -6603,101 +6617,101 @@ msgstr "Modelli Articoli Test" msgid "Add Test Template" msgstr "Aggiungi Modelli Test" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "Assegnazione Ordine Di Vendita" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "Note Articolo" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "Varianti articolo" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "Crea nuova variante" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "Nuova variante" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "Aggiungi un nuovo parametro" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "Articoli correlati" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "Aggiungi Correlato" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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 "Distinta base" -#: part/templates/part/detail.html:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "Esporta azioni" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "Esporta Distinta Base" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "Stampa il report Distinta Base" -#: part/templates/part/detail.html:295 +#: part/templates/part/detail.html:272 +msgid "BOM actions" +msgstr "Azioni Distinta Base" + +#: part/templates/part/detail.html:276 msgid "Upload BOM" msgstr "Carica Distinta Base" -#: part/templates/part/detail.html:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "Valida Distinta Base" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "Aggiungi elemento Distinta Base" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "Assembla" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "Articoli prodotti" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "Costruisci le ubicazioni degli ordini" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "Fornitori articoli" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "Componenti Produttori" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "Elimina articoli produttore" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "Articoli correlati" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "Aggiungi articolo correlato" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "Aggiungi risultato modello test" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "Scarica il Modello Articolo Importato" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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 "Formato" #: part/templates/part/import_wizard/part_upload.html:93 -#: templates/js/translated/bom.js:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "Seleziona il formato del file" @@ -6766,7 +6780,7 @@ msgstr "Mostra informazioni sui prezzi" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "Azioni magazzino" @@ -6778,7 +6792,7 @@ msgstr "Conta articoli magazzino" msgid "Transfer part stock" msgstr "Trasferisci giacenza" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "Azioni articolo" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "L'articolo non è attivo" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "Inattivo" @@ -6849,7 +6863,7 @@ msgstr "Assegnato agli Ordini di Produzione" msgid "Allocated to Sales Orders" msgstr "Assegnato agli Ordini di Vendita" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "Puoi produrre" @@ -6857,8 +6871,8 @@ msgstr "Puoi produrre" msgid "Minimum stock level" msgstr "Livello minimo di giacenza" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "QR Code Articolo" msgid "Link Barcode to Part" msgstr "Collega il codice a barre all'Articolo" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "Varianti" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Magazzino" @@ -6988,9 +7002,9 @@ msgstr "Aggiorna prezzo articolo" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "Ultimo aggiornamento" @@ -7053,12 +7067,12 @@ msgstr "Prezzo di Vendita" msgid "Add Sell Price Break" msgstr "Aggiungi Prezzo Ribassato di Vendita" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "Nessuna giacenza" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "Disponibilità scarsa" @@ -7141,10 +7155,6 @@ msgstr "Immagine articolo non trovata" msgid "Part Pricing" msgstr "Prezzo Articolo" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "Il tuo ambiente ha una versione git obsoleta. Questo impedisce a InvenTree di caricare i dettagli del plugin." - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Nessuna azione specificata" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "Corrispondenza trovata per i dati del codice a barre" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "Il codice a barre corrisponde a un elemento esistente" @@ -7229,47 +7239,43 @@ msgstr "Questo URL è stato utilizzato per inviare messaggi a un canale rallenta msgid "Open link" msgstr "Apri collegamento" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "Configurazione Plugin" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "Configurazioni Plugin" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "Key" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "Key dei plugin" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "PluginName del plugin" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "Il plugin è attivo" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "Non disponibile" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "Plugin di esempio" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "Plugin Integrato" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "Plugin" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "Metodo" @@ -7277,21 +7283,17 @@ msgstr "Metodo" msgid "No author found" msgstr "Nessun autore trovato" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "Nessuna data trovata" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "Scegli l'impostazione" msgid "A setting with multiple choices" msgstr "Un'impostazione con scelte multiple" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "URL di origine" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "Fonte per il pacchetto - questo può essere un registro personalizzato o un percorso VCS" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "Nome Pacchetto" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "Nome per il Pacchetto Plugin - può anche contenere un indicatore di versione" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "Conferma installazione plugin" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "Questo plugin verrà installato ora nell'istanza corrente. L'istanza andrà in manutenzione." -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "Installazione non confermata" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "Deve essere fornito uno dei nomi del pacchetto URL" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "Nessun oggetto valido fornito nel modello" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "Il file del modello '{template}' è mancante o non esiste" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "Report test" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "Nome modello" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "File modello di report" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "Descrizione del modello report" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "Numero di revisione del rapporto (auto-incrementi)" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "Sequenza per generare i nomi dei file report" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "Modello report abilitato" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "Filtri di ricerca elementi di stock (elenco separato da virgole key=coppia di valori)" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "Includi Test Installati" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "Includi i risultati dei test per gli elementi stock installati all'interno dell'elemento assemblato" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "Filtri di produzione" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "Filtri di ricerca produzione (elenco separato da virgole key=coppia di valori" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "Filtri Articolo" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "Filtri di ricerca articolo (elenco separato da virgole key=coppia di valori" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "Ordine di Acquisto filtra la ricerca" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "Ordine di Vendita filtra la ricerca" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "Snippet" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "Report file snippet" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "Descrizione file snippet" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "Risorsa" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "Report file risorsa" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "File risorsa descrizione" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "Materiali necessari" @@ -7478,8 +7492,8 @@ msgstr "Il fornitore è stato eliminato" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "Prezzo Unitario" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "Totale" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Numero Seriale" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "Test Report Elemento Stock" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "Risultati Test" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "Test" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "Risultato" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "Elementi installati" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "Seriale" @@ -7564,8 +7582,8 @@ msgstr "ID Posizione" msgid "Location Name" msgstr "Nome Ubicazione" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "Percorso Ubicazione" @@ -7620,31 +7638,31 @@ msgstr "Elimina al esaurimento" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "Data di Scadenza" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "Ubicazione Esterna" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "La quantità è richiesta" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "Deve essere fornita un articolo valido" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 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" @@ -7654,8 +7672,8 @@ msgstr "I numeri di serie non possono essere forniti per un articolo non traccia msgid "Stock Location" msgstr "Ubicazione magazzino" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "Posizioni magazzino" @@ -7673,8 +7691,8 @@ msgstr "Seleziona Owner" 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:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "Esterno" @@ -7690,7 +7708,7 @@ msgstr "Non puoi rendere strutturale questa posizione di magazzino perché alcun 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:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "Non è possibile creare un elemento di magazzino per articoli virtuali" @@ -7803,233 +7821,242 @@ msgstr "Prezzo di acquisto unitario al momento dell’acquisto" msgid "Converted to part" msgstr "Convertito in articolo" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "L'articolo non è impostato come tracciabile" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "La quantità deve essere un numero intero" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "La quantità non deve superare la quantità disponibile ({n})" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "I numeri di serie devono essere numeri interi" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "La quantità non corrisponde ai numeri di serie" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "Numeri di serie già esistenti" -#: stock/models.py:1473 +#: stock/models.py:1474 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:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "L'elemento di magazzino è installato in un altro elemento" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "L'elemento di magazzino contiene altri elementi" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "L'elemento di magazzino è stato assegnato a un cliente" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "L'elemento di magazzino è attualmente in produzione" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "Il magazzino serializzato non può essere unito" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "Duplica elementi di magazzino" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "Gli elementi di magazzino devono riferirsi allo stesso articolo" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "Gli elementi di magazzino devono riferirsi allo stesso articolo fornitore" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "I codici di stato dello stock devono corrispondere" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "Le giacenze non possono essere spostate perché non disponibili" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "Note d'ingresso" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "Il valore deve essere fornito per questo test" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "L'allegato deve essere caricato per questo test" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "Nome Test" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "Risultato Test" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "Test valore output" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "Risultato della prova allegato" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "Note del test" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "Il numero di serie è troppo grande" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "Inserisci il numero di elementi di magazzino da serializzare" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, 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:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "Inserisci i numeri di serie per i nuovi elementi" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "Posizione magazzino di destinazione" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "Note opzionali elemento" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "Numeri di serie non possono essere assegnati a questo articolo" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "Seleziona elementi di magazzino da installare" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "Elemento di magazzino non disponibile" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "L'articolo selezionato non è nella Fattura dei Materiali" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "Posizione di destinazione per gli elementi disinstallati" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "Aggiungi nota di transazione (opzionale)" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "Elemento di magazzino non disponibile" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "L'articolo selezionato non è nella Fattura dei Materiali" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "Posizione di destinazione per gli elementi disinstallati" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "Seleziona l'articolo in cui convertire l'elemento di magazzino" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "L'articolo selezionato non è una valida opzione per la conversione" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "Posizione di destinazione per l'elemento restituito" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "L'articolo deve essere vendibile" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "L'elemento è assegnato a un ordine di vendita" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "Elemento assegnato a un ordine di costruzione" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "Cliente a cui assegnare elementi di magazzino" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "L'azienda selezionata non è un cliente" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "Note sull'assegnazione delle scorte" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "Deve essere fornito un elenco degli elementi di magazzino" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "Note di fusione di magazzino" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "Consenti fornitori non corrispondenti" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 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:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "Consenti stato non corrispondente" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 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:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "Devono essere riforniti almeno due elementi in magazzino" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "Valore di chiave primaria StockItem" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "Note sugli spostamenti di magazzino" @@ -8037,48 +8064,48 @@ msgstr "Note sugli spostamenti di magazzino" msgid "Stock Tracking Information" msgstr "Informazioni di Tracciamento Magazzino" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "Elementi Secondari Magazzino" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "Questo elemento di magazzino non ha nessun elemento secondario" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "Dati di Test" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "Rapporto del Test" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "Elimina Dati di Test" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "Aggiungi Dati Di Test" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "Note Elemento di magazzino" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "Elementi di magazzino installati" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "Installa Elemento Magazzino" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "Elimina tutti i risultati del test per questo elemento di magazzino" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "Aggiungi Risultato Test" @@ -8086,13 +8113,13 @@ msgstr "Aggiungi Risultato Test" msgid "Locate stock item" msgstr "Individua elemento di magazzino" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "Scansiona nella posizione" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "Impostazioni di stampa" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "Azioni adeguamento giacenza" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "Conta giacenza" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "Aggiungi giacenza" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "Rimuovi giacenza" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "Serializza magazzino" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "Trasferisci giacenza" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "Assegna al cliente" @@ -8162,6 +8192,11 @@ msgstr "Modifica elemento di magazzino" msgid "Delete stock item" msgstr "Cancella elemento di magazzino" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Produzione" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "Elemento principale" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "Non sei nell'elenco dei proprietari di questo elemento. Questo elemento di magazzino non può essere modificato." #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "Sola lettura" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "Quantità Disponibile" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "Nessuna posizione impostata" @@ -8242,7 +8277,7 @@ 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:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "Scaduto" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "Questo Elemento Stock scade il %(item.expiry_date)s" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "Obsoleto" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "Nessun inventario eseguito" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "Scansiona il contenitore magazzino in questa posizione" msgid "Scan In Container" msgstr "Scansiona container" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "Azioni posizione" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "Modifica la posizione" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "Elimina la posizione" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "Posizione stock di livello superiore" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "Proprietario Posizione" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "Non sei nell'elenco dei proprietari di questa posizione. Questa posizione di giacenza non può essere modificata." -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Sottoallocazioni" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "Crea nuova posizione di magazzino" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "Nuova Posizione" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "Container magazzino scansionato in questa posizione" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "Codice QR Ubicazione Magazzino" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "Collega il Codice a Barre alla Posizione Magazzino" @@ -8454,71 +8493,71 @@ msgstr "Il sito è attualmente in manutenzione e dovrebbe essere online presto!" msgid "Index" msgstr "Indice" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "Articoli Sottoscritti" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "Categoria sottoscritta" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "Articoli Recenti" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "Distinta base In Attesa Di Convalida" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "Aggiornamento Recente" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "Stock esaurito" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "Richiesto per gli Ordini di Produzione" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "Stock Scaduto" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "Stock obsoleto" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "Ordini di Produzione Attivi" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "Ordini Di Produzione Scaduti" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "Ordini Di Acquisto In Corso" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "Ordini Di Acquisto In Ritardo" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "Ordini Di Vendita In Corso" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "Ordini Di Vendita in ritardo" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "Novità InvenTree" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "Notizie Attuali" @@ -8654,7 +8693,7 @@ msgstr "Importa Articolo" msgid "Import Part" msgstr "Importa Articolo" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "Modelli parametro articolo" @@ -8675,63 +8714,42 @@ msgstr "Impostazioni Plugin" msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." msgstr "Cambiando le impostazioni qui sotto, si richiede di riavviare immediatamente il server. Non cambiare le impostazioni durante l'utilizzo." -#: templates/InvenTree/settings/plugin.html:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "Plugin" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "Installa Plugin" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "I plugin esterni non sono abilitati per questa installazione InvenTree" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "Versione" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "Plugin inattivi" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "Plugin Errore Stack" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "Stage" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "Messaggio" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "Integrato" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "Esempio" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "Informazioni Plugin" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "Versione" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "nessuna informazione di versione fornita" @@ -8764,6 +8782,11 @@ msgstr "Questo plugin è stato trovato in un percorso server locale" msgid "Installation path" msgstr "Percorso d'installazione" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "Integrato" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "Questo è un plugin integrato che non può essere disabilitato" @@ -8786,14 +8809,6 @@ msgstr "Commit Hash" msgid "Commit Message" msgstr "Commit Messaggio" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "Stato Firma" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "Chiave Di Firma" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "Impostazioni Ordine di Acquisto" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "Nessun parametro di categoria trovato" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "Modifica Template" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "Elimina Template" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "Home Page" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "Non verificato" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "Principale" @@ -9223,44 +9239,48 @@ msgstr "Aggiornato" msgid "Update Available" msgstr "Aggiornamento Disponibile" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "Documentazione InvenTree" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "Versione API" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "Versione di Python" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "Versione Django" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "Visualizza codice sorgente su GitHub" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "Crediti" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "App Mobile" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "Invia Segnalazione Bug" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "copia negli appunti" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "copia informazioni versione" @@ -9454,14 +9474,6 @@ msgstr "Aggiungi Collegamento" msgid "Add Attachment" msgstr "Aggiungi allegato" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "Elimina allegati selezionati" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "Elimina Allegati" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "Codice a Barre Identificativo" @@ -9506,7 +9518,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:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "Quantità richiesta" @@ -9520,7 +9532,7 @@ 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:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "Quantità minima" @@ -9592,23 +9604,35 @@ msgstr "Codice errore" msgid "All selected attachments will be deleted" msgstr "Tutti gli allegati selezionati saranno eliminati" -#: templates/js/translated/attachment.js:255 +#: templates/js/translated/attachment.js:129 +msgid "Delete Attachments" +msgstr "Elimina Allegati" + +#: templates/js/translated/attachment.js:205 +msgid "Delete attachments" +msgstr "" + +#: templates/js/translated/attachment.js:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "Allegati non trovati" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "Modifica allegato" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "Data di Upload" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "Modifica allegato" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "Cancella allegato" @@ -9665,7 +9689,7 @@ msgstr "Questo rimuoverà il collegamento al codice a barre associato" msgid "Unlink" msgstr "Scollega" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "Rimuovere l'articolo in magazzino" @@ -9723,743 +9747,837 @@ msgstr "Controlla Nella Posizione" msgid "Barcode does not match a valid location" msgstr "Il codice a barre non corrisponde a una posizione valida" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "Creare un elemento della distinta base" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "Visualizzare i dati" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "Dati" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "Chiudi" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "Scarica il modello di distinta base" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "Distinta base multilivello" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "Includere i dati della distinta base per i sottoassiemi" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "Livelli" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "Selezionare il numero massimo di livelli di distinta base da esportare (0 = tutti i livelli)" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "Includere Articoli Alternativi" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "Includere articoli alternativi nella distinta base esportata" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "Includere i dati dei parametri" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "Includere i dati dei parametri degli articoli nella distinta base esportata" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "Includere i dati delle scorte" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "Includere i dati delle scorte dei pezzi nella distinta base esportata" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "Includere i dati del produttore" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "Includere i dati del produttore delle parti nella distinta base esportata" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "Includere i dati dei fornitori" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "Includere i dati del fornitore di parti nella distinta base esportata" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "Includere i prezzi" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "Includere i prezzi delle parti nella distinta base esportata" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "Rimuovi articolo sostitutivo" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "Seleziona e aggiungi un nuovo articolo sostitutivo utilizzando l'input qui sotto" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "Sei sicuro di voler rimuovere questo collegamento all' articolo sostitutivo?" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "Rimuovi Articolo Sostitutivo" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "Aggiungi Sostitutivo" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "Modifica Elementi Sostitutivi Distinta Base" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "Tutti gli elementi selezionati della Distinta Base saranno eliminati" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "Elimina gli Elementi selezionati della Distinta Base?" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "Carica la Distinta Base per il sotto assemblaggio" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "Sostituti Disponibili" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "Variante stock consentita" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "Sostituti" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "I prezzi Distinta Base sono completi" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "I prezzi Distinta Base sono incompleti" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "Nessun prezzo disponibile" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "Nessuna Scorta Disponibile" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "Include variante e scorte sostitutive" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "Comprende varianti magazzino" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "Comprende le scorte sostitutive" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "Elementi consumabili" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "Convalida elemento Distinta Base" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "Questa linea è stata convalidata" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "Modifica articoli sostitutivi" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "Modifica elemento Distinta Base" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "Cancella elemento Distinta Base" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "Visualizza Distinta Base" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "Nessun elemento trovato in Distinta Base" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "Articolo richiesto" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "Ereditato dalla Distinta Base principale" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "Modifica Ordine di produzione" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "Crea Ordine di Produzione" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "Annulla Ordine Di Produzione" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "Sei sicuro di voler annullare questa produzione?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "Gli elementi di magazzino è stata assegnata a questo ordine di produzione" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "Ci sono output incompleti rimanenti per questo ordine di produzione" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "L'ordine di produzione è pronto per essere completato" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "Questo ordine di produzione non può essere completato in quanto ci sono output incompleti" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "L'Ordine di Produzione è incompleto" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "Completa l'Ordine di Produzione" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "Il prossimo numero di serie disponibile è" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "Ultimo Numero Di Serie" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "La distinta base contiene articoli tracciabili" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "Gli outputs della produzione devono essere generati singolarmente" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "Gli articoli tracciabili possono avere numeri di serie specificati" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "Inserisci i numeri seriali per generare più output di produzione" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "Crea Output di Produzione" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "Assegna gli elementi di magazzino a questo output di produzione" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" -msgstr "Non assegnare stock all'output di produzione" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" +msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "Completa output di produzione" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "Cancella output di produzione" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" -msgstr "Sei sicuro di voler annullare l'allocazione degli elementi stock da questa produzione?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" +msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" -msgstr "Non assegnare Elementi Stock" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" +msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "Seleziona Output di produzione" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "Almeno un output di produzione deve essere selezionato" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "Output" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "Completa l'output di produzione" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "Cancella l'output di produzione" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "Nessuna allocazione per l'ordine di produzione trovato" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "Posizione non specificata" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "Completa gli outputs" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "Cancella l'output" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "Nessun output di produzione attivo trovato" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" -msgstr "Scorte Assegnate" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" +msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" -msgstr "Nessun elemento Distinta Base tracciato per questa produzione" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" +msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "Test Completati" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "Nessun test richiesto per questa produzione" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "Modifica allocazione magazzino" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "Elimina posizione giacenza" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "Modifica Posizione" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "Rimuovi Posizione" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "Articoli sostitutivi disponibili" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "Quantità Per" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "Scorte insufficienti disponibili" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "Scorte sufficienti disponibili" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "Produci scorta" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "Ordina scorta" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "Assegna scorta" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "Seleziona Articoli" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "È necessario selezionare almeno un articolo da assegnare" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "Specificare il quantitativo assegnato allo stock" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "Tutti gli articoli assegnati" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "Tutti gli articoli selezionati sono stati completamente assegnati" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "Seleziona la posizione di origine (lascia vuoto per prendere da tutte le posizioni)" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "Assegna gli Elementi Stock all'Ordine di Produzione" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "Nessuna posizione di magazzino corrispondente" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "Nessun elemento corrispondente trovato" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "Assegna Automaticamente Scorte" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "Gli elementi in magazzino saranno automaticamente assegnati a questo ordine di produzione, secondo le linee guida fornite" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "Se viene specificata una posizione, le scorte saranno assegnate solo da quella ubicazione" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "Se lo stock è considerato intercambiabile, sarà assegnato dal primo luogo in cui viene trovato" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 msgid "If substitute stock is allowed, it will be used where stock of the primary part cannot be found" msgstr "Se lo stock sostitutivo è ammesso, sarà utilizzato nel caso in cui lo stock dell'articolo primario non possa essere trovato" -#: templates/js/translated/build.js:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "Assegna Elementi di Magazzino" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "Nessuna produzione corrispondente alla ricerca" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "Seleziona" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "L'ordine di produzione è in ritardo" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "Avanzamento" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "Nessuna informazione utente" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "gruppo" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" -msgstr "Nessun articolo assegnato per" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" +msgstr "Modifica allocazione magazzino" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "Elimina posizione giacenza" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "Modifica Posizione" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "Rimuovi Posizione" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "Parte tracciabile" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "Scorte insufficienti disponibili" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "Scorte sufficienti disponibili" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "Produci scorta" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "Ordina scorta" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "Assegna scorta" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "Aggiungi Produttore" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "Aggiungi Articolo Produttore" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "Modifica Articolo Produttore" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "Aggiungi fornitore" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "Aggiungi fornitore articolo" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "Tutte gli articoli del fornitore selezionati saranno eliminati" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "Cancella Articoli Fornitore" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "Aggiungi nuova Azienda" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "Fornitori articoli" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "Articoli prodotti" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "Nessuna informazione azienda trovata" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "Crea nuovo contatto" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "Modifica contatto" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "Ruolo" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "Nessun contatto trovato" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "Numero di telefono" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "Indirizzo email" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "Elimina contatto" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "Tutti gli articoli del produttore selezionati saranno eliminati" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "Elimina Articoli Produttore" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "Tutti i parametri selezionati saranno cancellati" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "Elimina Parametri" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Articoli ordinati" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "Elimina articoli produttore" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "Nessun articolo produttore trovato" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "Modello Articolo" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "Articolo assemblato" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "Nessun parametro trovato" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "Modifica parametro" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "Elimina il parametro" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "Modifica parametro" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "Elimina Parametri" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "Elimina articolo fornitore" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "Nessun fornitore trovato" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "Disponibilità" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "Modifica articolo fornitore" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "Elimina articolo fornitore" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "Elimina riduzione di prezzo" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "Modifica Prezzo Limite" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "Nessuna informazione di riduzione di prezzo trovata" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "Ultimo aggiornamento" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "Modifica riduzione di prezzo" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "Cancella riduzione di prezzo" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "vero" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "falso" @@ -10467,31 +10585,31 @@ msgstr "falso" msgid "Select filter" msgstr "Seleziona filtro" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "Stampa Etichette" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "Stampa report" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "Aggiungi nuovo filtro" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "Cancella tutti i filtri" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "Crea filtro" @@ -10516,6 +10634,12 @@ msgstr "Operazione di eliminazione non consentita" msgid "View operation not allowed" msgstr "Mostra operazione non consentita" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Elimina" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "Mantieni aperto questo modulo" @@ -10533,23 +10657,23 @@ msgstr "Esistono errori nel modulo" msgid "No results found" msgstr "Nessun risultato trovato" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "Ricerca" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "Cancella input" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "Colonna File" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "Nome del campo" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "Seleziona Colonne" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "Seleziona Stampante" @@ -10670,7 +10802,7 @@ msgstr "Nessuna notizia trovata" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "ID" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "Cancella Linea" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "Nessuna linea elementi trovata" @@ -10735,370 +10867,410 @@ msgstr "Modifica linea" msgid "Delete line" msgstr "Cancella linea" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "Attributi Articolo" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "Opzioni Creazione Articolo" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "Opzioni Duplicazione Articolo" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "Aggiungi Categoria Articolo" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "Categoria articolo principale" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "Icona (opzionale) - Esplora tutte le icone disponibili su" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "Crea Categoria Articolo" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "Crea una nuvoa categoria dopo questa" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "Modifica Categoria Articoli" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "Sei sicuro di voler eliminare questa categoria articolo?" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "Sposta nella categoria superiore" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "Elimina categoria" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "Azione articoli in questa categoria" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "Azione per categorie secondarie" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "Crea Articolo" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "Crea un altro articolo dopo questo" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "Articolo creato con successo" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "Modifica l'articolo" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "Articolo modificato" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "Crea Varianti Articolo" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "Articolo Attivo" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "L'articolo non può essere eliminato poiché è attualmente attivo" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "L'eliminazione di questo articolo non è reversibile" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "Tutte le giacenze per questo articolo verranno eliminate" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "Questo articolo verrà eliminato da qualsiasi Fattura dei Materiali" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "Tutte le informazioni del produttore e del fornitore per questo articolo verranno eliminate" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "Cancella Articolo" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "Sei iscritto alle notifiche per questo elemento" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "Hai sottoscritto le notifiche per questo elemento" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "Sottoscrivi le notifiche per questo elemento" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "Hai annullato l'iscrizione alle notifiche per questo elemento" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "La convalida della Distinta Base segnerà ogni voce di riga come valida" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "Convalida la distinta dei materiali" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "Valida Fattura dei Materiali" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "Copia Fattura dei Materiali" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "In esaurimento" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "Nessuno stock disponibile" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "Richieste" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "Unità" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "Parte tracciabile" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "Parte virtuale" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "Parte sottoscritta" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "Parte vendibile" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "Programmare la generazione di un nuovo report inventario." -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "Una volta completato, il report inventario sarà disponibile per il download." -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "Genera Report Inventario" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "Programma report inventario" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "Nessuna informazione sull'inventario disponibile" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "Modifica Voce Inventario" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "Elimina Voce Inventario" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "Nessuna variante trovata" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "Nessun parametro dell'articolo templates trovato" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "Modifica Parametro Articolo Template" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "Ogni parametro che fa riferimento a questo modello verrà eliminato" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "Elimina Parametro Articolo Template" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "Nessun ordine d'acquisto trovato" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "Questo elemento è in ritardo" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "Ricevi linea elemento" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "Elimina relazione tra i componenti" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "Elimina Relazione Articolo" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "Nessun articolo trovato" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "Nessuna categoria" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "Visualizza come elenco" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "Visualizza come griglia" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "Imposta la categoria prodotto per i prodotti selezionati" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "Imposta categoria articolo" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" -msgstr "Seleziona Categoria Articolo" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "Imposta categoria" -#: templates/js/translated/part.js:2495 -msgid "Category is required" -msgstr "Carica Sotto Categorie" +#: templates/js/translated/part.js:2253 +msgid "parts" +msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "Nessuna categoria" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "Visualizza come elenco" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "Visualizza come griglia" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "Visualizza come struttura ad albero" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "Carica Sotto Categorie" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "Categoria sottoscritta" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "Nessun modello di test corrispondente" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "Modificare il risultato del test" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "Cancellare il risultato del test" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "Questo test è definito per un articolo principale" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "Modifica Modello Risultato Test" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "Elimina Modello Risultato Test" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "Nessuna data specificata" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "La data specificata è nel passato" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "Speculativo" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "Nessuna informazione di pianificazione disponibile per questo prodotto" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "Errore nel recupero delle informazioni di programmazione per questo articolo" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "Quantità Di Scorte Programmate" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "Quantità Massima" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "Livello Minimo Stock" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "Esempio" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "Il Plugin è stato installato" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "Errore durante il recupero dati" @@ -11139,234 +11311,234 @@ msgstr "Non sono disponibili dati varianti" msgid "Variant Part" msgstr "Variante Articolo" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "Selezione l'ordine di acquisto da duplicare" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "Duplica linee degli elementi" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "Duplica tutte le linee elementi dall'ordine selezionato" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "Duplica Linee Extra" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "Duplica elementi linee extra dall'ordine selezionato" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "Modifica ordine d'acquisto" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "Opzioni Duplicazione" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "Completa Ordine D'Acquisto" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "Contrassegnare questo ordine come completato?" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "Tutti gli elementi della riga sono stati ricevuti" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "Questo ordine ha elementi di riga che non sono stati contrassegnati come ricevuti." -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "Completare questo ordine significa che l'ordine e gli elementi della riga non saranno più modificabili." -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "Annulla Ordine di Acquisto" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "Sei sicuro di voler annullare questo ordine di acquisto?" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "Questo ordine d'acquisto non può essere cancellato" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "Dopo aver effettuato questo ordine, gli elementi della riga non saranno più modificabili." -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "Problema Ordine di Acquisto" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "Deve essere selezionata almeno un articolo acquistabile" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "Quantità da ordinare" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "Nuovo articolo fornitore" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "Nuovo ordine d'acquisto" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "Aggiungi ordine d'acquisto" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "Nessun fornitore articolo corrispondente" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "Nessun ordine di acquisto corrispondente trovato" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "Seleziona Linee Elementi" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "È necessario selezionare almeno una linea elemento" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "Quantità Ricevuta" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "Quantità da ricevere" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "Stato giacenza" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "Aggiungi codice a barre" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "Rimuovi il codice a barre" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "Specifica la posizione" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "Aggiungi codice lotto" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "Aggiungi numeri seriali" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "Seriale" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "Codice ordine" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "Quantità da Ricevere" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "Conferma la ricezione degli elementi" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "Ricevi Elementi Ordine D'Acquisto" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "Scansiona codice a barre" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "Scansiona il codice a barre sull'elemento in arrivo (non deve corrispondere a nessun articolo disponibile esistente)" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "Dati codice a barre non validi" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "L'Ordine è in ritardo" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "Elementi" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "Duplica Linee Elementi" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "Modifica Linee Elementi" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "Cancella Linea Elemento" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "Duplica linea elemento" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "Modifica linea elemento" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "Cancella linea elemento" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "Aggiungi cliente" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "Crea Ordine Di Reso" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "Modifica Ordine Di Reso" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "Cliente non valido" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "Nessun elemento di riga corrispondente" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "Crea Ordine di Vendita" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "Modifica Ordine di Vendita" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "Nessun elemento di magazzino disponibile è stato assegnato a questa spedizione" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "I seguenti elementi in magazzino saranno spediti" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "Completa Spedizione" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "Conferma Spedizione" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "Nessuna spedizione in sospeso trovata" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "Nessun elemento di magazzino disponibile è stato assegnato a questa spedizione" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "Spedizioni Completate" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "Salta" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "Questo ordine ha elementi di riga che non sono stati completati." -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "Annulla Ordine di Vendita" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "Cancellando questo ordine, l'ordine non sarà più modificabile." -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "Crea Nuova Spedizione" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "Non sono state trovati ordini di vendita" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "Modifica spedizione" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "Completa spedizione" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "Elimina spedizione" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "Modifica spedizione" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "Elimina Spedizione" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "Nessuna spedizione corrispondente trovata" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "Riferimento della spedizione" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "Non spedito" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "Tracciamento" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "Fattura" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "Aggiungi Spedizione" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "Conferma l'assegnazione della giacenza" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "Assegna Elementi di Magazzino all'Ordine di Vendita" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "Nessun ordine di vendita trovato" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "Modifica posizione giacenza" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "Conferma Operazione Eliminazione" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "Elimina posizione giacenza" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "Spedito al cliente" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "Nessun posizione specificata" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "Assegna Numeri di Serie" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "Prezzo d'acquisto" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "Calcola il prezzo" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "Non può essere eliminato perché gli elementi sono stati spediti" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "Non può essere eliminato perché gli elementi sono stati assegnati" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "Assegna Numeri di Serie" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "Aggiorna Prezzo Unitario" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "Nessun risultato" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "risultato" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "risultati" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "Minimizza risultati" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "Rimuovi risultati" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "Serializza Elementi di Magazzino" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "Conferma Serializzazione Magazzino" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "Posizione giacenza principale" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "Modifica Posizione Giacenza" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "Nuova posizione giacenza" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "Crea un'altra posizione dopo questa" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "Posizione magazzino creata" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "Sei sicuro di voler eliminare questa posizione?" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "Sposta nella posizione principale magazzino" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "Elimina Posizione di Giacenza" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "Azione per gli elementi stock in questa posizione magazzino" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "Azione per sotto-ubicazioni" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "Questo articolo non può essere serializzato" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "Inserisci quantità iniziale per questo articolo in giacenza" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Inserire i numeri di serie per la nuova giacenza (o lasciare vuoto)" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "Elemento di magazzino duplicato" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "Duplica elemento di magazzino" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "Sei sicuro di voler rimuovere questo elemento di magazzino?" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "Cancella Elemento di Magazzino" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "Modifica elemento magazzino" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "Crea un altro oggetto dopo questo" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "Crea nuova allocazione magazzino" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "Creato più elementi stock" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "Trova Numero Di Serie" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "Inserisci numero di serie" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "Inserisci un numero di serie" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "Nessun numero di serie corrispondente" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "Trovati più di un risultato corrispondente" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "Conferma l'assegnazione delle scorte" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "Assegnare la scorta al cliente" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "Attenzione: L'operazione di unione non può essere annullata" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "Alcune informazioni andranno perse durante la fusione degli articoli di magazzino" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "La cronologia delle transazioni di magazzino verrà eliminata per gli articoli uniti" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "Le informazioni sulle parti del fornitore verranno eliminate per gli articoli uniti" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "Confermare l'unione degli articoli di magazzino" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "Unire gli articoli di magazzino" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "Trasferisci giacenza" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "Sposta" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "Conta giacenza" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "Conta" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "Rimuovi giacenza" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "Prendi" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "Aggiungi giacenza" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "Aggiungi" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "Elimina Stock" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "La quantità non può essere regolata per le scorte serializzate" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "Specificare la quantità di magazzino" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "Seleziona Elementi Magazzino" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" -msgstr "Devi selezionare almeno un articolo disponibile" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" +msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "Confermare l'adeguamento delle scorte" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "OK" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "FALLITO" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "NESSUN RISULTATO" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "Test OK" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "Aggiungi risultato test" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "Nessun risultato di prova trovato" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "Data del test" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "Modifica del risultato del test" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "Cancellare il risultato del test" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "In produzione" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "Installato nell'elemento stock" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "Assegnato all'ordine di vendita" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "Nessuna giacenza impostata" -#: templates/js/translated/stock.js:1746 +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" +msgstr "" + +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" +msgstr "Unisce la giacenza" + +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" +msgstr "Elimina Stock" + +#: templates/js/translated/stock.js:1885 msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1850 +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 msgid "Stock item is in production" msgstr "L'articolo di magazzino è in produzione" -#: templates/js/translated/stock.js:1855 +#: templates/js/translated/stock.js:2028 msgid "Stock item assigned to sales order" msgstr "Articolo di magazzino assegnato all'ordine di vendita" -#: templates/js/translated/stock.js:1858 +#: templates/js/translated/stock.js:2031 msgid "Stock item assigned to customer" msgstr "Articolo stock assegnato al cliente" -#: templates/js/translated/stock.js:1861 +#: templates/js/translated/stock.js:2034 msgid "Serialized stock item has been allocated" msgstr "L'articolo di magazzino serializzato è stato assegnato" -#: templates/js/translated/stock.js:1863 +#: templates/js/translated/stock.js:2036 msgid "Stock item has been fully allocated" msgstr "La voce di magazzino è stata completamente assegnata" -#: templates/js/translated/stock.js:1865 +#: templates/js/translated/stock.js:2038 msgid "Stock item has been partially allocated" msgstr "La voce di magazzino è stata parzialmente allocata" -#: templates/js/translated/stock.js:1868 +#: templates/js/translated/stock.js:2041 msgid "Stock item has been installed in another item" msgstr "L'elemento stock è stato installato in un altro articolo" -#: templates/js/translated/stock.js:1870 +#: templates/js/translated/stock.js:2043 msgid "Stock item has been consumed by a build order" msgstr "" -#: templates/js/translated/stock.js:1874 +#: templates/js/translated/stock.js:2047 msgid "Stock item has expired" msgstr "L'articolo stock è scaduto" -#: templates/js/translated/stock.js:1876 +#: templates/js/translated/stock.js:2049 msgid "Stock item will expire soon" msgstr "Articolo in giacenza prossimo alla scadenza" -#: templates/js/translated/stock.js:1881 +#: templates/js/translated/stock.js:2054 msgid "Stock item has been rejected" msgstr "L'articolo stock è stato rifiutato" -#: templates/js/translated/stock.js:1883 +#: templates/js/translated/stock.js:2056 msgid "Stock item is lost" msgstr "L'articolo di magazzino è andato perso" -#: templates/js/translated/stock.js:1885 +#: templates/js/translated/stock.js:2058 msgid "Stock item is destroyed" msgstr "Articolo di magazzino distrutto" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 msgid "Depleted" msgstr "Esaurito" -#: templates/js/translated/stock.js:2031 +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "Fornitore dell'articolo non specificato" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "Valore Scorte" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "Nessun articolo in magazzino corrispondente alla richiesta" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "Caricare sublocazioni" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "Dettagli" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "Informazioni sull'articolo non disponibili" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "La posizione non esiste più" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "L'ordine di acquisto non esiste più" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "L'ordine di vendita non esiste più" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "L'ordine di ritorno non esiste più" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "Il cliente non esiste più" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "L'articolo in magazzino non esiste più" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "Aggiunto" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "Rimosso" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "Nessun elemento installato" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "Disinstallare l'articolo di magazzino" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "Selezionare l'articolo di magazzino da disinstallare" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "Installare un altro articolo di magazzino in questo articolo" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "Gli articoli in magazzino possono essere installati solo se soddisfano i seguenti criteri" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "L'articolo di magazzino si collega a un'articolo che è la distinta base di questo articolo di magazzino" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "L'articolo in stock è attualmente disponibile in magazzino" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "L'articolo di magazzino non è già installato in un altro articolo" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "L'articolo di magazzino è tracciato da un codice di lotto o da un numero di serie" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "Selezionare la parte da installare" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "Ha il codice del progetto" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "Stato dell'ordine" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "In Sospeso" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "Assegnato a me" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "Articolo tracciabile" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "Articolo assemblato" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "Ha scorte disponibili" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "Varianti consentite" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "Prezzo" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "Includi sottoallocazioni/posizioni" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "Includi posizioni" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "Includi sottocategorie" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "Sottoscritto" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "E' Serializzato" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "Numero di serie GTE" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "Numero di serie maggiore di o uguale a" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "Numero di serie LTE" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "Numero di serie inferiore di o uguale a" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "Numero di serie" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "Codice Lotto" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "Elementi attivi" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "Mostra stock per gli articoli attivi" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "L'articolo è un assemblato" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "È assegnato" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "L'elemento è stato posizionato" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "Stock disponibile per l'utilizzo" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "Includi elementi in giacenza nelle sottoallocazioni" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "Mostra gli elementi di magazzino che sono esauriti" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "Mostra gli elementi che sono in giacenza" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "In Produzione" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "Mostra gli elementi in produzione" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "Includi Varianti" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "Includi gli articoli stock per le varianti degli articoli" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "Installato" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "Mostra gli elementi stock che sono installati in un altro elemento" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "Mostra elementi che sono stati assegnati a un cliente" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "Stato magazzino" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "Ha codice lotto" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "Monitorato" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "L'articolo stock è monitorato dal codice lotto o dal numero di serie" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "Ha il prezzo d'acquisto" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "Mostra gli articoli di magazzino che hanno un prezzo di acquisto impostato" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "Data di scadenza precedente" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "Data di scadenza successiva" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "Mostra gli elementi in giacenza scaduti" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "Mostra giacenza prossima alla scadenza" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "Test superato" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "Includi Elementi Installati" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "Stato Build" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "Includi articoli nelle sottocategorie" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "Visualizza articoli attivi" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "Stock disponibile" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "Ha IPN" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "L'articolo possiede un part number interno" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "In giacenza" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "Acquistabile" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "Ha voci d'inventario" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "Esporta Dati Tabella" msgid "Select File Format" msgstr "Seleziona Formato File" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "Caricamento dati" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "righe per pagina" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "Mostra tutte le righe" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "Visualizzo" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "a" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "di" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "righe" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "Nessun risultato corrispondente" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "Mostra/nascondi la paginazione" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "Attiva/disattiva" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "Colonne" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "Tutti" @@ -12588,50 +12792,6 @@ msgstr "Impostazioni e-mail" msgid "Email settings not configured" msgstr "Impostazioni dell'email non configurate" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "Azioni Barcode" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "Opzioni Magazzino" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "Aggiungi alle voci stock selezionate" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "Rimuovi dagli elementi stock selezionati" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "Inventario articoli di magazzino selezionati" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "Sposta gli elementi stock selezionati" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "Unisce gli articoli di magazzino selezionati" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "Unisce la giacenza" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "Ordina articolo selezionato" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "Elimina articoli selezionati" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "Elimina Stock" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "Si" @@ -12664,35 +12824,35 @@ msgstr "Permessi" msgid "Important dates" msgstr "Date Importanti" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "Impostazione autorizzazioni" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "Gruppo" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "Visualizza" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "Autorizzazione a visualizzare gli articoli" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "Autorizzazione ad aggiungere elementi" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "Modificare" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "Permessi per modificare gli elementi" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "Autorizzazione ad eliminare gli elementi" diff --git a/InvenTree/locale/ja/LC_MESSAGES/django.po b/InvenTree/locale/ja/LC_MESSAGES/django.po index 4f4c6c4279..875151e55a 100644 --- a/InvenTree/locale/ja/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -25,19 +25,19 @@ msgstr "APIエンドポイントが見つかりません" msgid "User does not have permission to view this model" msgstr "ユーザーにこのモデルを表示する権限がありません" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "値がありません" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "指定された値は有効な数値ではありません。" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "指定された値に無効な単位があります" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "指定された値は指定された単位に変換できませんでした" @@ -49,26 +49,26 @@ msgstr "エラーの詳細は管理者パネルで確認できます" msgid "Enter date" msgstr "日付を入力する" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "メモ" @@ -81,47 +81,51 @@ msgstr "値 '{name}' はパターン形式で表示されません" msgid "Provided value does not match required pattern: " msgstr "指定された値が必要なパターンと一致しません: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "パスワードを入力してください" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "新しいパスワードを入力してください。" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "パスワードの確認" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "新しいパスワードの確認" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "古いパスワード" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "メールアドレス(確認用)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "メールアドレスの確認" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "毎回同じメールアドレスを入力する必要があります。" -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "指定されたプライマリEメールアドレスは無効です。" -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "指定されたメールドメインは承認されていません。" -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "数量コードが無効です" @@ -237,9 +241,9 @@ msgstr "ファイルがありません" msgid "Missing external link" msgstr "外部リンクが見つかりません。" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "添付ファイル" @@ -247,29 +251,30 @@ msgstr "添付ファイル" msgid "Select file to attach" msgstr "添付ファイルを選択" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "リンク" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "外部 サイト へのリンク" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "コメント:" @@ -277,13 +282,13 @@ msgstr "コメント:" msgid "File comment" msgstr "ファイルコメント" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "ユーザー" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "無効な選択です" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "お名前" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "説明" @@ -384,7 +389,7 @@ msgid "parent" msgstr "親" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "" @@ -420,12 +425,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "有効な数字でなければなりません" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "" msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "ドイツ語" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "ギリシャ語" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "英語" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "スペイン語" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "スペイン語(メキシコ)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "フランス語" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "ヘブライ語" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "ハンガリー語" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "イタリア語" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "日本語" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "韓国語" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "オランダ語" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "ノルウェー語" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "ポーランド語" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "ポルトガル語" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "ポルトガル語 (ブラジル)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "ロシア語" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "スロベニア語" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "スウェーデン語" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "タイ語" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "トルコ語" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "ベトナム語" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "中国語" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "バックグラウンドワーカーのチェックに失敗しました" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "メールアドレスが未設定です" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "InvenTree システムのヘルスチェックに失敗しました" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "処理待ち" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "設置済" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "完了" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "キャンセル済" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "紛失" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "返品済" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "処理中" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "発送済み" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "注意が必要です" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "破損" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "破壊されました" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "却下済み" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "在庫商品を作成しました" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "在庫商品編集済み" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "割り当てられたシリアル番号" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "在庫数" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "手動在庫追加が完了しました" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "手動在庫削除が完了しました" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "ロケーションが変更されました" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "アセンブリへインストールしました" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "アセンブリから削除しました" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "インストール済みのコンポーネント項目" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "コンポーネント項目を削除しました" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "親アイテムから分割する" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "子項目を分割" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "商品在庫をマージしました" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "顧客に送信されました" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "顧客からの返品" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "組立注文の出力が作成されました" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "組立注文の出力が完了しました" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "顧客に送信されました" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "顧客からの返品" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "生産" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "ユーザー情報を編集" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "パスワードを設定" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "システム情報" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "InvenTree について" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "パーツ" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "作成日時" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "組立" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "パーツを割り当てるためにビルドする" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "在庫商品" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "数量" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "在庫商品" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "ステータス" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "注文必須パーツ" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "パーツの注文" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "テンプレート" @@ -2269,10 +2266,10 @@ msgstr "テンプレート" msgid "Parts are templates by default" msgstr "パーツはデフォルトのテンプレートです" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "アセンブリ" @@ -2280,8 +2277,8 @@ msgstr "アセンブリ" msgid "Parts can be assembled from other components by default" msgstr "パーツはデフォルトで他のコンポーネントから組み立てることができます" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "コンポーネント" @@ -2289,7 +2286,7 @@ msgstr "コンポーネント" msgid "Parts can be used as sub-components by default" msgstr "パーツはデフォルトでサブコンポーネントとして使用できます" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "購入可能" @@ -2297,8 +2294,8 @@ msgstr "購入可能" msgid "Parts are purchaseable by default" msgstr "パーツはデフォルトで購入可能です" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,10 +2303,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "パーツはデフォルトで販売可能です" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "追跡可能" @@ -2317,10 +2314,10 @@ msgstr "追跡可能" msgid "Parts are trackable by default" msgstr "パーツはデフォルトで追跡可能です" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "デバッグモード" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "メッセージ ID:" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "製造元" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "メーカー・パーツ" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "仕入先" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3872,6 +3947,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "サプライヤー・パーツ" @@ -3914,129 +3996,121 @@ msgstr "新しいサプライヤー・パーツを作成" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "新しいサプライヤー・パーツ" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "パーツの注文" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "パーツを削除" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "パーツを削除" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "新しいメーカー・パーツを作成" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "新しいメーカ―・パーツ" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "パーツの注文" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "メーカー・パーツの編集" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "メーカー・パーツを削除" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "仕入先" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "購入金額" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "パーツ" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "カテゴリ" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "新規パーツ" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "新規カテゴリ" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "在庫" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "在庫切れ" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "アクションが指定されていません" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "組立" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "期限切れ" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "期限切れ在庫" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "メーカー・パーツの編集" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "パーツの注文" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "続けて別のパーツを作る" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "許可" msgid "Important dates" msgstr "重要な日付" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "パーミッション設定" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "グループ" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "表示" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "項目を表示する権限" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "項目を追加する権限" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "変更" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "項目を編集する権限" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "項目を削除する権限" diff --git a/InvenTree/locale/ko/LC_MESSAGES/django.po b/InvenTree/locale/ko/LC_MESSAGES/django.po index cd6af45512..7c3a33da90 100644 --- a/InvenTree/locale/ko/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -25,19 +25,19 @@ msgstr "API endpoint 없음" msgid "User does not have permission to view this model" msgstr "이 모델을 볼 수 있는 권한이 없습니다." -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "오류 세부 정보는 관리자 패널에서 찾을 수 있습니다." msgid "Enter date" msgstr "날짜 입력" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "메모" @@ -81,47 +81,51 @@ msgstr "" msgid "Provided value does not match required pattern: " msgstr "" -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "비밀번호를 입력하세요" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "새로운 비밀번호를 입력하세요" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "비밀번호 확인" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "새 비밀번호 확인" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "이전 암호" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "이메일 (다시 입력)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "이메일 주소 확인" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "" -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "" -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "" @@ -237,9 +241,9 @@ msgstr "" msgid "Missing external link" msgstr "" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "첨부파일" @@ -247,29 +251,30 @@ msgstr "첨부파일" msgid "Select file to attach" msgstr "첨부할 파일을 선택하세요" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "링크" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "외부 URL로 링크" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "" @@ -277,13 +282,13 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "사용자" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "이름" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "설명" @@ -384,7 +389,7 @@ msgid "parent" msgstr "" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "" @@ -420,12 +425,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "유효한 숫자여야 합니다" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "" msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "체코어" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "독일어" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "그리스어" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "영어" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "스페인어" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "스페인어 (멕시코)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "파르시어/페르시아어" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "프랑스어" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "히브리어" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "헝가리어" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "이탈리아어" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "일본어" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "한국어" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "네덜란드어" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "노르웨이어" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "폴란드어" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "러시아어" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "스웨덴어" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "태국어" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "터키어" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "베트남어" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "중국어" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "취소됨" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "파손됨" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "파괴됨" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "사용자 정보 수정" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "비밀번호 설정" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "비밀번호가 일치해야 합니다" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "시스템 정보" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "외부 링크" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "수량 값은 0보다 커야 합니다" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "수량" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "일련번호" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "위치" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "상태" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "구입 가능" @@ -2297,8 +2294,8 @@ msgstr "구입 가능" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "판매 가능" @@ -2306,10 +2303,10 @@ msgstr "판매 가능" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2317,10 +2314,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "디버그 모드" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "페이지 크기" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "PDF 보고서 기본 페이지 크기" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" -msgstr "SSO 활성화" +msgid "Enable password forgot" +msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" -msgstr "로그인 페이지에서 SSO 활성화" +msgid "Enable password forgot function on the login pages" +msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" -msgstr "이메일 필요" +msgid "Enable SSO" +msgstr "SSO 활성화" #: common/models.py:1564 -msgid "Require user to supply mail on signup" -msgstr "" +msgid "Enable SSO on the login pages" +msgstr "로그인 페이지에서 SSO 활성화" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" -msgstr "두 번 보내기" +msgid "Email required" +msgstr "이메일 필요" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" -msgstr "" +msgid "Mail twice" +msgstr "두 번 보내기" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "작성자" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "이미지" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "웹사이트" @@ -3505,303 +3495,388 @@ msgstr "웹사이트" msgid "Company website URL" msgstr "회사 웹사이트 URL" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "주소" - -#: company/models.py:119 -msgid "Company address" -msgstr "회사 주소" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "전화번호" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "이메일" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "회사" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "회사 정보 수정" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "회사 수정" @@ -3854,17 +3929,17 @@ msgstr "URL에서 이미지 다운로드" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "고객" @@ -3872,6 +3947,13 @@ msgstr "고객" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "주소" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "전화번호" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "삭제" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "신규 고객" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "새 회사" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "너비 [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "높이 [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "바코드" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "이미 사용 중인 바코드입니다" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "데이터" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "이미지 복사" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "키" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "단가" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "일련번호" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "일련번호가 이미 존재합니다" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "버전" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "메시지" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "버전" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "홈페이지" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "InvenTree 문서" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "API 버전" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "Python 버전" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "Django 버전" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "GitHub에서 코드 보기" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "모바일 앱" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "버전 정보 복사" @@ -9454,14 +9474,6 @@ msgstr "링크 추가" msgid "Add Attachment" msgstr "첨부파일 추가" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "선택" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "삭제" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "부품 명세서 복사" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "일련번호 찾기" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "일련번호를 입력하세요" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "일련번호를 입력하세요" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "일치하는 일련번호가 없습니다" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "일련번호" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/nl/LC_MESSAGES/django.po b/InvenTree/locale/nl/LC_MESSAGES/django.po index cfe1dc4879..25e11c66ad 100644 --- a/InvenTree/locale/nl/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -25,21 +25,21 @@ msgstr "API eindpunt niet gevonden" msgid "User does not have permission to view this model" msgstr "Gebruiker heeft geen rechten om dit model te bekijken" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" -msgstr "" +msgstr "Geen waarde opgegeven" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" -msgstr "" +msgstr "Opgegeven waarde is geen geldig nummer" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" -msgstr "" +msgstr "De opgegeven waarde heeft een ongeldige eenheid" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" -msgstr "" +msgstr "De opgegeven waarde kon niet geconverteerd worden naar de opgegeven eenheid" #: InvenTree/exceptions.py:90 msgid "Error details can be found in the admin panel" @@ -49,26 +49,26 @@ msgstr "Error details kunnen worden gevonden in het admin scherm" msgid "Enter date" msgstr "Voer datum in" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Opmerkingen" @@ -81,47 +81,51 @@ msgstr "Waarde '{name}' verschijnt niet in patroonformaat" msgid "Provided value does not match required pattern: " msgstr "Opgegeven waarde komt niet overeen met vereist patroon: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Voer wachtwoord in" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Voer een nieuw wachtwoord in" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Wachtwoord bevestigen" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Nieuw wachtwoord bevestigen" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Oude wachtwoord" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "E-mailadres (opnieuw)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "E-mailadres bevestiging" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Er moet hetzelfde e-mailadres ingevoerd worden." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Het opgegeven primaire e-mailadres is ongeldig." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Het ingevoerde e-maildomein is niet goedgekeurd." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "Registratie is uitgeschakeld." + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Ongeldige hoeveelheid ingevoerd" @@ -195,15 +199,15 @@ msgstr "Opgegeven URL is geen geldig afbeeldingsbestand" #: InvenTree/models.py:82 msgid "Metadata must be a python dict object" -msgstr "" +msgstr "Metadata moeten een python dict object zijn" #: InvenTree/models.py:86 msgid "Plugin Metadata" -msgstr "" +msgstr "Plugin Metadata" #: InvenTree/models.py:87 msgid "JSON metadata field, for use by external plugins" -msgstr "" +msgstr "JSON metadata veld, voor gebruik door externe plugins" #: InvenTree/models.py:320 msgid "Improperly formatted pattern" @@ -237,9 +241,9 @@ msgstr "Ontbrekend bestand" msgid "Missing external link" msgstr "Externe link ontbreekt" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Bijlage" @@ -247,29 +251,30 @@ msgstr "Bijlage" msgid "Select file to attach" msgstr "Bestand als bijlage selecteren" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Link" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Link naar externe URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Opmerking" @@ -277,13 +282,13 @@ msgstr "Opmerking" msgid "File comment" msgstr "Bestand opmerking" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Gebruiker" @@ -324,54 +329,54 @@ msgstr "Dubbele namen kunnen niet bestaan onder hetzelfde bovenliggende object" msgid "Invalid choice" msgstr "Ongeldige keuze" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Naam" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Omschrijving" @@ -384,13 +389,13 @@ msgid "parent" msgstr "bovenliggende" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Pad" #: InvenTree/models.py:767 msgid "Markdown notes (optional)" -msgstr "" +msgstr "Markdown notitie (optioneel)" #: InvenTree/models.py:794 msgid "Barcode Data" @@ -420,12 +425,12 @@ msgstr "Serverfout" msgid "An error has been logged by the server." msgstr "Er is een fout gelogd door de server." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Moet een geldig nummer zijn" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,322 +503,325 @@ msgstr "URL van extern afbeeldingsbestand" msgid "Downloading images from remote URL is not enabled" msgstr "Afbeeldingen van externe URL downloaden is niet ingeschakeld" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Tsjechisch" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Deens" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Duits" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Grieks" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Engels" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Spaans" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Spaans (Mexicaans)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Farsi / Perzisch" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Frans" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hebreeuws" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Hongaars" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italiaans" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japans" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Koreaans" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Nederlands" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Noors" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Pools" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugees" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugees (Braziliaans)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Russisch" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Sloveens" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Zweeds" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Thais" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Turks" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamees" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Chinees" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Achtergrondwerker check is gefaald" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "E-mailbackend niet geconfigureerd" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "InvenTree gezondsheidschecks mislukt" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Bezig" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Geplaatst" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Voltooid" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Geannuleerd" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Kwijt" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Retour" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "In Behandeling" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Verzonden" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Aandacht nodig" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Beschadigd" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Verwoest" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Afgewezen" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "In quarantaine geplaatst" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Verouderde volgcode" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Voorraaditem gemaakt" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Bewerken voorraadartikel" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Serienummer toegewezen" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Voorraad geteld" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Voorraad handmatig toegevoegd" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Voorraad handmatig verwijderd" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Locatie veranderd" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" -msgstr "" +msgstr "Voorraad bijgewerkt" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Gemonteerd" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Gedemonteerd" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Geïnstalleerd componentartikel" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Verwijderd componentartikel" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Splits van bovenliggend item" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Splits onderliggende item" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Samengevoegde voorraadartikelen" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Geconverteerd naar variant" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Naar klant verzonden" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Geretourneerd door klant" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Product aangemaakt" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Product voltooid" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" -msgstr "" +msgstr "Build order uitvoer afgewezen" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Verbruikt door productieorder" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "Verzonden onder verkooporder" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "Ontvangen onder verkooporder" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "Geretourneerd onder retourorder" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Naar klant verzonden" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Geretourneerd door klant" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Productie" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "Retour" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "Herstel" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "Restitutie" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "Vervangen" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "Restitutie" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "Afwijzen" #: InvenTree/validators.py:32 InvenTree/validators.py:34 msgid "Invalid physical unit" -msgstr "" +msgstr "Ongeldige fysieke eenheid" #: InvenTree/validators.py:40 msgid "Not a valid currency code" @@ -831,99 +839,127 @@ msgstr "Overschot mag niet groter zijn dan 100%" msgid "Invalid value for overage" msgstr "Ongeldige waarde voor overschot" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Gebruikersgegevens bewerken" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Wachtwoord instellen" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Wachtwoordvelden komen niet overeen" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Onjuist wachtwoord opgegeven" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Systeeminformatie" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Over InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Productie moet geannuleerd worden voordat het kan worden verwijderd" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "Verbruiksartikelen" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "Optioneel" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "Gevolgd" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "Toegewezen" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Productieorder" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Productieorders" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Ongeldige keuze voor bovenliggende productie" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Productieorderreferentie" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Referentie" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" -msgstr "" +msgstr "Korte beschrijving van de build (optioneel)" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Bovenliggende Productie" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Productieorder waar deze productie aan is toegewezen" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Productieorder waar deze productie aan is toegewezen" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Onderdeel" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Selecteer onderdeel om te produceren" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Verkooporder Referentie" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Verkooporder waar deze productie aan is toegewezen" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Bronlocatie" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Bestemmings Locatie" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Selecteer locatie waar de voltooide items zullen worden opgeslagen" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Productiehoeveelheid" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Aantal voorraaditems om te produceren" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Voltooide voorraadartikelen" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Aantal voorraadartikelen die zijn voltooid" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Productiestatus" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Productiestatuscode" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Batchcode" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Batchcode voor deze productieuitvoer" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Aanmaakdatum" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Verwachte opleveringsdatum" -#: build/models.py:258 +#: build/models.py:262 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:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Opleveringsdatum" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "voltooid door" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Uitgegeven door" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Gebruiker die de productieorder heeft gegeven" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Verantwoordelijke" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "Gebruiker of groep verantwoordelijk voor deze bouwopdracht" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Externe Link" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "Bouw prioriteit" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "Prioriteit van deze bouwopdracht" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "Project Code" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "Project code voor deze build order" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Productieorder {build} is voltooid" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Een productieorder is voltooid" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Geen productie uitvoer opgegeven" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Productie uitvoer is al voltooid" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Productuitvoer komt niet overeen met de Productieorder" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "Hoeveelheid moet groter zijn dan nul" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -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:1265 +msgid "Build object" +msgstr "" -#: build/models.py:1281 -#, 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:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Voorraad item is te veel toegewezen" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Toewijzing hoeveelheid moet groter zijn dan nul" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Hoeveelheid moet 1 zijn voor geserialiseerde voorraad" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Geselecteerd voorraadartikel niet gevonden in stuklijst" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Product" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Product om onderdelen toe te wijzen" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Voorraadartikel" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Bron voorraadartikel" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Hoeveelheid" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +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:1371 +#, 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:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Voorraad item is te veel toegewezen" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Toewijzing hoeveelheid moet groter zijn dan nul" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Hoeveelheid moet 1 zijn voor geserialiseerde voorraad" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Voorraadartikel" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Bron voorraadartikel" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Voorraad hoeveelheid toe te wijzen aan productie" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Installeren in" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Bestemming voorraadartikel" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Productieuitvoer" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "Productieuitvoer komt niet overeen met de bovenliggende productie" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "Uitvoeronderdeel komt niet overeen met productieorderonderdeel" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Deze productieuitvoer is al voltooid" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "Deze productieuitvoer is niet volledig toegewezen" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Voer hoeveelheid in voor productie uitvoer" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "Hoeveelheid als geheel getal vereist voor traceerbare onderdelen" -#: build/serializers.py:261 +#: build/serializers.py:269 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:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Serienummers" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Voer serienummers in voor productieuitvoeren" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "Serienummers automatisch toewijzen" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "Vereiste artikelen automatisch toewijzen met overeenkomende serienummers" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "De volgende serienummers bestaan al of zijn ongeldig" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "Een lijst van productieuitvoeren moet worden verstrekt" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Locatie" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "Locatie van voltooide productieuitvoeren" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Status" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "Incomplete Toewijzing Accepteren" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "Voltooi de uitvoer als de voorraad niet volledig is toegewezen" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "Toegewezen Voorraad Verwijderen" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "Verminder alle voorraad die al is toegewezen aan deze productie" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "Verwijder Incomplete Uitvoeren" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "Verwijder alle productieuitvoeren die niet zijn voltooid" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" -msgstr "" +msgstr "Niet toegestaan" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "Accepteer zoals geconsumeerd onder deze bouwopdracht" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "De-alloceren voordat deze bouwopdracht voltooid wordt" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "Overgealloceerde voorraad" -#: build/serializers.py:633 +#: build/serializers.py:641 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:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "Sommige voorraadartikelen zijn overalloceerd" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "Accepteer Niet-toegewezen" -#: build/serializers.py:649 +#: build/serializers.py:657 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:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "Vereiste voorraad is niet volledig toegewezen" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Accepteer Onvolledig" -#: build/serializers.py:665 +#: build/serializers.py:673 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:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "Vereiste productiehoeveelheid is voltooid" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "Productieorder heeft onvolledige uitvoeren" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "Stuklijstartikel" +#: build/serializers.py:722 +msgid "Build Line" +msgstr "" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "Productieuitvoer" -#: build/serializers.py:732 +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "Productieuitvoer moet naar dezelfde productie wijzen" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 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:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "Artikel moet op voorraad zijn" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Beschikbare hoeveelheid ({q}) overschreden" -#: build/serializers.py:852 +#: build/serializers.py:859 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:859 +#: build/serializers.py:866 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:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "Dit voorraadartikel is al toegewezen aan deze productieoutput" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "Allocaties voor artikelen moeten worden opgegeven" -#: build/serializers.py:943 +#: build/serializers.py:947 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:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "Locatie uitsluiten" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "Voorraadartikelen van deze geselecteerde locatie uitsluiten" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "Uitwisselbare voorraad" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Voorraadartikelen op meerdere locaties kunnen uitwisselbaar worden gebruikt" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "Vervangende Voorraad" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "Toewijzing van vervangende onderdelen toestaan" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "Optionele Items" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "Alloceer optionele BOM items om bestelling te bouwen" @@ -1528,7 +1581,7 @@ msgstr "Productieorder {bo} is nu achterstallig" #: build/templates/build/build_base.html:18 msgid "Part thumbnail" -msgstr "" +msgstr "Miniatuurweergave van onderdeel" #: build/templates/build/build_base.html:39 #: company/templates/company/supplier_part.html:36 @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Barcode acties" @@ -1616,69 +1670,67 @@ msgstr "Voltooi Productie" msgid "Build Description" msgstr "Productiebeschrijving" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "Er zijn geen productuitvoeren aangemaakt voor deze productieorder" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "Productieorder is gereed om te markeren als voltooid" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "Productieorder kan niet worden voltooid omdat er nog producties openstaan" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "Vereiste Producthoeveelheid is nog niet bereikt" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 msgid "Stock has not been fully allocated to this Build Order" 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Streefdatum" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "Deze productie was verwacht op %(target)s" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "Achterstallig" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Voltooid" +#: build/templates/build/build_base.html:178 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" +msgstr "Voltooide Uitvoeren" -#: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "Voltooid" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Verkooporder" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Uitgegeven door" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "Prioriteit" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "Verwijder Productieorder" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "Bouworder QR Code" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "Link Barcode aan bouwopdracht" @@ -1727,8 +1779,8 @@ 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:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Bestemming" @@ -1742,21 +1794,21 @@ msgstr "Toegewezen Onderdelen" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Batch" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Gecreëerd" @@ -1764,147 +1816,106 @@ msgstr "Gecreëerd" msgid "No target date set" msgstr "Geen doeldatum ingesteld" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Voltooid" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "Productie niet compleet" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "Onderliggende Productieorders" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "Voorraad toewijzen aan Product" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" -msgstr "Voorraadtoewijzing ongedaan maken" +#: 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 "Unallocate Stock" -msgstr "Voorraadtoewijzing ongedaan maken" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "Automatisch voorraad toewijzen aan productie" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "Automatisch Toewijzen" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "Handmatig voorraad toewijzen aan productie" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "Voorraad Toewijzen" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Vereiste onderdelen bestellen" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Onderdelen bestellen" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "Niet-gevolgde voorraad is volledig toegewezen aan deze Productieorder" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "Niet-gevolgde voorraad is niet volledig toegewezen aan deze Productieorder" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "Geselecteerde items toewijzen" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "Deze Productieorder heeft geen bijbehorende niet-gevolgde BOM-artikelen" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "Onvolledige Productieuitvoeren" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "Nieuwe productieuitvoer aanmaken" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "Nieuwe Productieuitvoer" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "Uitvoer Acties" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "Voltooi geselecteerde productieuitvoeren" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "Voltooi uitvoeren" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "Voltooi geselecteerde productieuitvoeren" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "Verwijder uitvoeren" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" -msgstr "" +msgstr "Verbruikte voorraad" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "Voltooide Productieuitvoeren" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Bijlagen" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Productie notities" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "Toewijzing Voltooid" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" -msgstr "Alle niet gevolgde voorraadartikelen zijn toegewezen" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" +msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Nieuwe Productieorder" @@ -1912,14 +1923,10 @@ msgstr "Nieuwe Productieorder" msgid "Build Order Details" msgstr "Productieorderdetails" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "Onvolledige Productieuitvoeren" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "Voltooide Uitvoeren" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "Bijgewerkt" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2014,12 +2011,12 @@ msgstr "Geen groep" #: common/models.py:869 msgid "An empty domain is not allowed." -msgstr "" +msgstr "Een leeg domein is niet toegestaan." #: common/models.py:871 #, python-brace-format msgid "Invalid domain name: {domain}" -msgstr "" +msgstr "Ongeldige domeinnaam: {domain}" #: common/models.py:928 msgid "Restart required" @@ -2103,7 +2100,7 @@ msgstr "" #: common/models.py:1004 msgid "Require confirm" -msgstr "" +msgstr "Bevestiging vereist" #: common/models.py:1005 msgid "Require explicit user confirmation for certain action." @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "dagen" @@ -2259,9 +2256,9 @@ msgstr "Kopiëer Categorieparameter Sjablonen" msgid "Copy category parameter templates when creating a part" msgstr "Kopieer categorieparameter sjablonen bij het aanmaken van een onderdeel" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Sjabloon" @@ -2269,10 +2266,10 @@ msgstr "Sjabloon" msgid "Parts are templates by default" msgstr "Onderdelen zijn standaard sjablonen" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Samenstelling" @@ -2280,8 +2277,8 @@ msgstr "Samenstelling" msgid "Parts can be assembled from other components by default" msgstr "Onderdelen kunnen standaard vanuit andere componenten worden samengesteld" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Component" @@ -2289,7 +2286,7 @@ msgstr "Component" msgid "Parts can be used as sub-components by default" msgstr "Onderdelen kunnen standaard worden gebruikt als subcomponenten" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Koopbaar" @@ -2297,8 +2294,8 @@ msgstr "Koopbaar" msgid "Parts are purchaseable by default" msgstr "Onderdelen kunnen standaard gekocht worden" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Verkoopbaar" @@ -2306,10 +2303,10 @@ msgstr "Verkoopbaar" msgid "Parts are salable by default" msgstr "Onderdelen kunnen standaard verkocht worden" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Volgbaar" @@ -2317,10 +2314,10 @@ msgstr "Volgbaar" msgid "Parts are trackable by default" msgstr "Onderdelen kunnen standaard gevolgd worden" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Virtueel" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,525 +2374,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" -msgstr "" +msgstr "Gebruik alleen actieve variantonderdelen voor het berekenen van variantprijzen" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "Interne Prijzen" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "Inschakelen van interne prijzen voor onderdelen" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "Printen van labels Inschakelen" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "Printen van labels via de webinterface inschakelen" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "Label Afbeelding DPI" -#: common/models.py:1354 +#: common/models.py:1361 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:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "Activeer Rapportages" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "Activeer het genereren van rapporten" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Foutopsporingsmodus" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "Rapporten genereren in debug modus (HTML uitvoer)" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Paginagrootte" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Standaard paginagrootte voor PDF rapporten" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "Activeer Testrapporten" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "Activeer het genereren van testrapporten" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "Testrapporten Toevoegen" -#: common/models.py:1396 +#: common/models.py:1403 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:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "Batchcode Sjabloon" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "Sjabloon voor het genereren van standaard batchcodes voor voorraadartikelen" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "Verlopen Voorraad" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "Verlopen voorraad functionaliteit inschakelen" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "Verkoop Verlopen Voorraad" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "Verkoop verlopen voorraad toestaan" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "Voorraad Vervaltijd" -#: common/models.py:1444 +#: common/models.py:1451 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:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "Produceer Verlopen Voorraad" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "Sta productie met verlopen voorraad toe" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "Voorraad Eigenaar Toezicht" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "Eigenaarstoezicht over voorraadlocaties en items inschakelen" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "Productieorderreferentiepatroon" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "Vereist patroon voor het genereren van het Bouworderreferentieveld" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" -msgstr "" +msgid "Build Order Reference Pattern" +msgstr "Productieorderreferentiepatroon" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" -msgstr "" +msgid "Required pattern for generating Build Order reference field" +msgstr "Vereist patroon voor het genereren van het Bouworderreferentieveld" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 +msgid "Return Order Reference Pattern" +msgstr "" + +#: common/models.py:1500 +msgid "Required pattern for generating Return Order reference field" +msgstr "" + +#: common/models.py:1506 +msgid "Edit Completed Return Orders" +msgstr "" + +#: common/models.py:1507 +msgid "Allow editing of return orders after they have been completed" +msgstr "" + +#: common/models.py:1513 msgid "Sales Order Reference Pattern" msgstr "Verkooporderreferentiepatroon" -#: common/models.py:1500 +#: common/models.py:1514 msgid "Required pattern for generating Sales Order reference field" msgstr "Vereist patroon voor het genereren van het Verkooporderreferentieveld" -#: common/models.py:1506 +#: common/models.py:1520 msgid "Sales Order Default Shipment" msgstr "Standaard Verzending Verkooporder" -#: common/models.py:1507 +#: common/models.py:1521 msgid "Enable creation of default shipment with sales orders" msgstr "Aanmaken standaard verzending bij verkooporders inschakelen" -#: common/models.py:1513 +#: common/models.py:1527 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1514 +#: common/models.py:1528 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1520 +#: common/models.py:1534 msgid "Purchase Order Reference Pattern" msgstr "Inkooporderreferentiepatroon" -#: common/models.py:1521 +#: common/models.py:1535 msgid "Required pattern for generating Purchase Order reference field" msgstr "Vereist patroon voor het genereren van het Inkooporderreferentieveld" -#: common/models.py:1527 +#: common/models.py:1541 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1528 +#: common/models.py:1542 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1535 +#: common/models.py:1549 msgid "Enable password forgot" msgstr "Wachtwoord vergeten functie inschakelen" -#: common/models.py:1536 +#: common/models.py:1550 msgid "Enable password forgot function on the login pages" msgstr "Wachtwoord vergeten functie inschakelen op de inlogpagina's" -#: common/models.py:1542 +#: common/models.py:1556 msgid "Enable registration" msgstr "Registratie inschakelen" -#: common/models.py:1543 +#: common/models.py:1557 msgid "Enable self-registration for users on the login pages" msgstr "Zelfregistratie voor gebruikers op de inlogpagina's inschakelen" -#: common/models.py:1549 +#: common/models.py:1563 msgid "Enable SSO" msgstr "SSO inschakelen" -#: common/models.py:1550 +#: common/models.py:1564 msgid "Enable SSO on the login pages" msgstr "SSO inschakelen op de inlogpagina's" -#: common/models.py:1556 +#: common/models.py:1570 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1557 +#: common/models.py:1571 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1563 +#: common/models.py:1577 msgid "Email required" msgstr "E-mailadres verplicht" -#: common/models.py:1564 +#: common/models.py:1578 msgid "Require user to supply mail on signup" msgstr "Vereis gebruiker om e-mailadres te registreren bij aanmelding" -#: common/models.py:1570 +#: common/models.py:1584 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1571 +#: common/models.py:1585 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1577 +#: common/models.py:1591 msgid "Mail twice" msgstr "E-mail twee keer" -#: common/models.py:1578 +#: common/models.py:1592 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1584 +#: common/models.py:1598 msgid "Password twice" msgstr "" -#: common/models.py:1585 +#: common/models.py:1599 msgid "On signup ask users twice for their password" msgstr "Laat gebruikers twee keer om hun wachtwoord vragen tijdens het aanmelden" -#: common/models.py:1591 +#: common/models.py:1605 msgid "Allowed domains" msgstr "" -#: common/models.py:1592 +#: common/models.py:1606 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:1598 +#: common/models.py:1612 msgid "Group on signup" msgstr "Groep bij aanmelding" -#: common/models.py:1599 +#: common/models.py:1613 msgid "Group to which new users are assigned on registration" msgstr "Groep waaraan nieuwe gebruikers worden toegewezen bij registratie" -#: common/models.py:1605 +#: common/models.py:1619 msgid "Enforce MFA" msgstr "MFA afdwingen" -#: common/models.py:1606 +#: common/models.py:1620 msgid "Users must use multifactor security." msgstr "Gebruikers moeten multifactor-beveiliging gebruiken." -#: common/models.py:1612 +#: common/models.py:1626 msgid "Check plugins on startup" msgstr "Controleer plugins bij het opstarten" -#: common/models.py:1613 +#: common/models.py:1627 msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:1620 -msgid "Check plugin signatures" -msgstr "" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "Activeer URL-integratie" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "Instellingssleutel (moet uniek zijn - hoofdletter ongevoelig" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 -msgid "Hide inactive parts" -msgstr "" - -#: common/models.py:1752 -msgid "Hide inactive parts in results displayed on the homepage" -msgstr "" - #: common/models.py:1758 -msgid "Show subscribed parts" -msgstr "" +msgid "Hide inactive parts" +msgstr "Inactieve Onderdelen Verbergen" #: common/models.py:1759 -msgid "Show subscribed parts on the homepage" -msgstr "" +msgid "Hide inactive parts in results displayed on the homepage" +msgstr "Verberg inactieve delen bij items op de homepage" #: common/models.py:1765 +msgid "Show subscribed parts" +msgstr "Toon geabonneerde onderdelen" + +#: common/models.py:1766 +msgid "Show subscribed parts on the homepage" +msgstr "Toon geabonneerde onderdelen op de homepage" + +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Toon laatste onderdelen" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "Toon laatste onderdelen op de startpagina" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "Recente Voorraadtelling" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "" @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "Toon recent aangepaste voorraadartikelen op de startpagina" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "Recente Voorraadtelling" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "Toon lage voorraad" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "Toon lage voorraad van artikelen op de startpagina" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "Toon lege voorraad" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "Toon lege voorraad van artikelen op de startpagina" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "Toon benodigde voorraad" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "Toon benodigde voorraad van artikelen voor productie op de startpagina" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "Toon verlopen voorraad" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "Toon verlopen voorraad van artikelen op de startpagina" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "Toon verouderde voorraad" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "Toon verouderde voorraad van artikelen op de startpagina" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "Toon openstaande producties" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "Toon openstaande producties op de startpagina" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "Toon achterstallige productie" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "Toon achterstallige producties op de startpagina" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "Toon uitstaande PO's" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "Toon uitstaande PO's op de startpagina" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "Toon achterstallige PO's" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "Toon achterstallige PO's op de startpagina" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "Toon uitstaande SO's" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "Toon uitstaande SO's op de startpagina" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "Toon achterstallige SO's" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "Toon achterstallige SO's op de startpagina" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "Zoek Onderdelen" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" -msgstr "" +msgstr "Onderdelen weergeven in zoekscherm" + +#: common/models.py:1919 +msgid "Search Supplier Parts" +msgstr "Zoek leveranciersonderdelen" + +#: common/models.py:1920 +msgid "Display supplier parts in search preview window" +msgstr "Leveranciersonderdelen weergeven in zoekscherm" #: common/models.py:1926 -msgid "Search Supplier Parts" -msgstr "" +msgid "Search Manufacturer Parts" +msgstr "Fabrikant onderdelen zoeken" #: common/models.py:1927 -msgid "Display supplier parts in search preview window" -msgstr "" +msgid "Display manufacturer parts in search preview window" +msgstr "Fabrikant onderdelen weergeven in zoekscherm" #: common/models.py:1933 -msgid "Search Manufacturer Parts" -msgstr "" - -#: common/models.py:1934 -msgid "Display manufacturer parts in search preview window" -msgstr "" - -#: common/models.py:1940 msgid "Hide Inactive Parts" msgstr "Inactieve Onderdelen Verbergen" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" -msgstr "" +msgstr "Inactieve verkooporders weglaten in het zoekvenster" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "Zoek in Voorraad" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "Inkooporders Zoeken" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "Toon inkooporders in het zoekvenster" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "Inactieve Inkooporders Weglaten" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inactieve inkooporders weglaten in het zoekvenster" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "Verkooporders zoeken" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "Toon verkooporders in het zoekvenster" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "Inactieve Verkooporders Weglaten" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "Inactieve verkooporders weglaten in het zoekvenster" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" -msgstr "" +msgstr "Onderdeel planning" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" -msgstr "" +msgstr "Voorraadcontrole onderdeel" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Prijs" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "Actief" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "Token" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "Token voor toegang" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "Geheim" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "Bericht ID" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "Host" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "Koptekst" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "Koptekst van dit bericht" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "Berichtinhoud" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "Inhoud van dit bericht" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "Afbeelding" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3474,7 +3464,7 @@ msgstr "" #: common/views.py:481 msgid "Parts imported" -msgstr "" +msgstr "Geïmporteerde onderdelen" #: common/views.py:509 order/templates/order/order_wizard/match_fields.html:27 #: order/templates/order/order_wizard/match_parts.html:19 @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Website" @@ -3505,303 +3495,388 @@ msgstr "Website" msgid "Company website URL" msgstr "URL bedrijfswebsite" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Adres" - -#: company/models.py:119 -msgid "Company address" -msgstr "Bedrijfsadres" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Telefoonnummer" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Telefoonnummer voor contact" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "Email" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Contact e-mailadres" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Contact" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Contactpunt" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "Link naar externe bedrijfsinformatie" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "is klant" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "is leverancier" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "is fabrikant" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "Fabriceert dit bedrijf onderdelen?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "Standaardvaluta die gebruikt wordt voor dit bedrijf" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Bedrijf" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Basis onderdeel" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Onderdeel selecteren" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Fabrikant" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Fabrikant selecteren" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "MPN" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "Fabrikant artikel nummer (MPN)" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "URL voor externe link van het fabrikant onderdeel" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "Omschrijving onderdeel fabrikant" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Fabrikant onderdeel" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Parameternaam" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Waarde" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Parameterwaarde" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Eenheden" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "Parameter eenheden" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "Gekoppeld fabrikant onderdeel moet verwijzen naar hetzelfde basis onderdeel" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Leverancier" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Leverancier selecteren" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "SKU" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "Selecteer fabrikant onderdeel" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Opmerking" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "basisprijs" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimale kosten (bijv. voorraadkosten)" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "meerdere" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "Order meerdere" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "Beschikbaar" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Inkooporder aanmaken" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "Bedrijfsinformatie bewerken" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Bedrijf bewerken" @@ -3837,7 +3912,7 @@ msgstr "Bedrijf verwijderen" #: report/templates/report/inventree_test_report_base.html:84 #: report/templates/report/inventree_test_report_base.html:163 msgid "Part image" -msgstr "" +msgstr "Afbeelding onderdeel" #: company/templates/company/company_base.html:56 #: part/templates/part/part_thumb.html:12 @@ -3854,17 +3929,17 @@ msgstr "Afbeelding downloaden van URL" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Klant" @@ -3872,6 +3947,13 @@ msgstr "Klant" msgid "Uses default currency" msgstr "Gebruik standaard valuta" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Adres" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Telefoon" @@ -3904,9 +3986,9 @@ msgstr "Afbeelding Downloaden" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" -msgstr "" +msgstr "Leveranciersonderdeel" #: company/templates/company/detail.html:19 msgid "Create new supplier part" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" -msgstr "" +msgstr "Nieuw leveranciers onderdeel" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Bestel onderdelen" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Verwijder onderdelen" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Verwijder Onderdelen" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 msgid "Manufacturer Parts" msgstr "Fabrikant onderdelen" -#: company/templates/company/detail.html:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Maak nieuw fabrikant onderdeel" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Nieuw fabrikant onderdeel" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Inkooporders" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Nieuwe inkooporder aanmaken" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Nieuwe Inkooporder" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "Verkooporders" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Nieuwe inkooporder aanmaken" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "Nieuwe Verkooporder" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Opmerkingen Bedrijf" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "Leverancierslijst" @@ -4048,17 +4122,17 @@ msgstr "Fabrikanten" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "Order onderdeel" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "Fabrikant onderdeel bewerken" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "Fabrikant onderdeel verwijderen" @@ -4078,40 +4152,22 @@ msgstr "Geen fabrikanten informatie beschikbaar" msgid "Suppliers" msgstr "Leveranciers" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "Verwijder leveranciersonderdelen" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Verwijderen" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Parameters" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "Nieuwe Parameter" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Parameter verwijderen" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "Parameter toevoegen" @@ -4135,23 +4191,28 @@ msgstr "Toegewezen Voorraadartikelen" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "Leveranciersonderdeel" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "Order Onderdeel" @@ -4162,15 +4223,15 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" -msgstr "" +msgstr "Bewerk Leveranciers onderdeel" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" -msgstr "" +msgstr "Dupliceer Leveranciers onderdeel" #: company/templates/company/supplier_part.html:74 msgid "Delete Supplier Part" @@ -4178,7 +4239,7 @@ msgstr "" #: company/templates/company/supplier_part.html:75 msgid "Delete Supplier Part" -msgstr "" +msgstr "Verwijder leveranciers onderdeel" #: company/templates/company/supplier_part.html:134 msgid "No supplier information available" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "Nieuw voorraadartikel aanmaken" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "Nieuw Voorraadartikel" @@ -4203,37 +4264,37 @@ msgstr "Nieuw Voorraadartikel" msgid "Supplier Part Orders" msgstr "Leverancier Onderdelenorders" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Prijsinformatie" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" -msgstr "" +msgstr "QR-code voor leveranciers onderdelen" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" -msgstr "" +msgstr "Koppel barcode aan leveranciers onderdeel" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" -msgstr "" +msgstr "Beschikbaarheid van onderdeel bijwerken" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Voorraadartikelen" @@ -4259,7 +4320,7 @@ msgstr "Klanten" msgid "New Customer" msgstr "Nieuwe Klant" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Bedrijven" @@ -4267,77 +4328,70 @@ msgstr "Bedrijven" msgid "New Company" msgstr "Nieuw Bedrijf" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "Labelnaam" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "Label beschrijving" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "Label" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "Label template bestand" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "Ingeschakeld" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "Label template is ingeschakeld" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Breedte [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "Label breedte, gespecificeerd in mm" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Hoogte [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "Label hoogte, gespecificeerd in mm" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "Bestandsnaam Patroon" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Filters" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "Totaalprijs" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Inkooporder" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "Link naar externe pagina" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Verwachte datum voor levering van de bestelling. De bestelling wordt achterstallig na deze datum." -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "Aangemaakt Door" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "Gebruiker of groep verantwoordelijk voor deze order" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "Orderreferentie" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "Inkooporder status" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "Bedrijf waar de artikelen van worden besteld" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "Leveranciersreferentie" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "Order referentiecode van leverancier" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "ontvangen door" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "Datum van uitgifte" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "Order uitgegeven op datum" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "Order voltooid op datum" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "Onderdeelleverancier moet overeenkomen met de Inkooporderleverancier" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "Hoeveelheid moet een positief getal zijn" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "Bedrijf waaraan de artikelen worden verkocht" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "Klantreferentie " -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "Klant order referentiecode" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "Verzenddatum" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "verzonden door" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "Order kan niet worden voltooid omdat er geen onderdelen aangewezen zijn" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Bestelling kan niet worden voltooid omdat er onvolledige verzendingen aanwezig zijn" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "Order kan niet worden voltooid omdat er onvolledige artikelen aanwezig zijn" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "Hoeveelheid artikelen" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "Artikelregel referentie" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "Artikel notities" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "Context" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "Additionele context voor deze regel" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "Stukprijs" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "Leveranciersonderdeel moet overeenkomen met leverancier" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "verwijderd" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "Order" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "Leveranciersonderdeel" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "Ontvangen" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "Aantal ontvangen artikelen" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Inkoopprijs" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "Aankoopprijs per stuk" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "Waar wil de inkoper dat dit artikel opgeslagen wordt?" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "Virtueel onderdeel kan niet worden toegewezen aan een verkooporder" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "Alleen verkoopbare onderdelen kunnen aan een verkooporder worden toegewezen" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "Verkoopprijs" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "Prijs per stuk" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "Verzonden hoeveelheid" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "Datum van verzending" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "Gecontroleerd door" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "Gebruiker die deze zending gecontroleerd heeft" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "Zending" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "Zendingsnummer" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "Volgnummer" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "Zending volginformatie" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "Factuurnummer" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "Referentienummer voor bijbehorende factuur" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "Verzending is al verzonden" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "Zending heeft geen toegewezen voorraadartikelen" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "Voorraadartikel is niet toegewezen" -#: order/models.py:1589 +#: order/models.py:1605 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:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "Kan voorraad niet toewijzen aan een regel zonder onderdeel" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Toewijzingshoeveelheid kan niet hoger zijn dan de voorraadhoeveelheid" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "Hoeveelheid moet 1 zijn voor geserialiseerd voorraadartikel" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "Verkooporder komt niet overeen met zending" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "Verzending komt niet overeen met verkooporder" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "Regel" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "Verzendreferentie verkooporder" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "Artikel" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "Selecteer voorraadartikel om toe te wijzen" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "Voer voorraadtoewijzingshoeveelheid in" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "Order kan niet worden geannuleerd" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "Order is niet open" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "Valuta Inkoopprijs" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "Leveranciersonderdeel moet worden gespecificeerd" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "Inkooporder moet worden gespecificeerd" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "De leverancier moet overeenkomen met de inkooporder" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "Inkooporder moet overeenkomen met de leverancier" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "Artikel" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "Artikelregel komt niet overeen met inkooporder" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "Selecteer bestemmingslocatie voor ontvangen artikelen" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "Voer serienummers in voor inkomende voorraadartikelen" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "Streepjescode is al in gebruik" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "Hoeveelheid als geheel getal vereist voor traceerbare onderdelen" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "Artikelen moeten worden opgegeven" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "Bestemmingslocatie moet worden opgegeven" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "Geleverde streepjescodewaarden moeten uniek zijn" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "Valuta verkoopprijs" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "Geen verzenddetails opgegeven" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "Artikelregel is niet gekoppeld aan deze bestelling" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "Hoeveelheid moet positief zijn" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "Voer serienummers in om toe te wijzen" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "Verzending is al verzonden" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "Zending is niet gekoppeld aan deze bestelling" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "Geen overeenkomst gevonden voor de volgende serienummers" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "De volgende serienummers zijn al toegewezen" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "Achterstallige inkooporder" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "Inkooporder {po} is nu achterstallig" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "Achterstallige Verkooporder" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "Verkooporder {so} is nu achterstallig" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "Ontvang artikelen" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "Ontvang Artikelen" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "Order markeren als voltooid" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "Order Voltooien" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "Order Referentie" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "Order Beschrijving" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "Order Status" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "Geen leveranciersinformatie beschikbaar" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "Afgeronde artikelen" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "Incompleet" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "Uitgegeven" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "Totale kosten" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "Totale kosten konden niet worden berekend" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "Rij verwijderen" @@ -5150,9 +5200,9 @@ msgstr "Inkooporder Artikelen" #: 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "Artikel toevoegen" @@ -5163,30 +5213,25 @@ msgstr "Artikel toevoegen" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: order/templates/order/return_order_detail.html:45 +#: order/templates/order/sales_order_detail.html:41 msgid "Extra Lines" msgstr "Extra Regels" -#: order/templates/order/purchase_order_detail.html:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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 "Extra Regel Toevoegen" -#: order/templates/order/purchase_order_detail.html:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "Ontvangen Artikelen" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "Ordernotities" @@ -5206,29 +5251,29 @@ msgstr "Pakbon afdrukken" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "Klantreferentie" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "Voltooi Verkooporder" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "Deze Verkooporder is niet volledig toegewezen" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: order/templates/order/sales_order_detail.html:99 #: order/templates/order/so_sidebar.html:11 msgid "Completed Shipments" msgstr "Voltooide Verzendingen" -#: order/templates/order/sales_order_base.html:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "Verkoooporder Artikelen" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 msgid "Pending Shipments" msgstr "Verzendingen in behandeling" -#: order/templates/order/sales_order_detail.html:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "Acties" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "Nieuwe Verzending" @@ -5309,33 +5353,34 @@ 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:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" -msgstr "" +msgstr "Onderdeel-id" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" -msgstr "" +msgstr "Onderdeel naam" #: part/admin.py:35 part/tasks.py:290 msgid "Part Description" -msgstr "" +msgstr "Onderdeel omschrijving" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "In bestelling" @@ -5381,23 +5426,16 @@ msgstr "In bestelling" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "Toegewezen" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,16 +5452,16 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" -msgstr "" +msgstr "Onderdelen" #: part/admin.py:265 msgid "BOM Level" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "Binnenkomende Inkooporder" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "Uitgaande Verkooporder" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "Geproduceerde voorraad door Productieorder" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "Voorraad vereist voor Productieorder" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "Standaard locatie" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "Totale Voorraad" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "Beschikbare Voorraad" @@ -5497,917 +5535,913 @@ msgstr "Beschikbare Voorraad" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" -msgstr "" +msgstr "Onderdeel Categorie" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" -msgstr "" +msgstr "Onderdeel Categorieën" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "Standaard locatie voor onderdelen in deze categorie" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." -msgstr "" +msgstr "Onderdelen mogen niet rechtstreeks aan een structurele categorie worden toegewezen, maar kunnen worden toegewezen aan subcategorieën." -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN moet overeenkomen met regex-patroon {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" -msgstr "" +msgstr "Onderdeel naam" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" -msgstr "" - -#: part/models.py:889 -msgid "Internal Part Number" -msgstr "" +msgstr "Onderdeel Categorie" #: part/models.py:894 +msgid "Internal Part Number" +msgstr "Intern Onderdeelnummer" + +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" -msgstr "" +msgstr "Standaardleverancier" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" -msgstr "" +msgstr "Eenheden voor dit onderdeel" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" -msgstr "" +msgstr "Onderdeel voor voorraadcontrole" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "Datum" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" -msgstr "" +msgstr "Aantal onderdelen" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "De template van de parameter moet uniek zijn" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "Parameternaam" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "Parameter Template" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "Parameterwaarde" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "Standaard Parameter Waarde" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "Stuklijstartikel" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "Geen onderdelen geselecteerd" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "Afbeelding kopiëren" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "Afbeelding kopiëren van het oorspronkelijke onderdeel" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "Parameters kopiëren" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "Parameter data kopiëren van het originele onderdeel" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "Ongeldige hoeveelheid" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "Categorie verwijderen" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "Onderdeel Parameters" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "Nieuwe Categorie" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "Verkoopordertoewijzingen" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "Een parameter toevoegen" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "Assemblages" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "Productieordertoewijzingen" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "Onderdeelfabrikanten" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "Fabrikantonderdeel verwijderen" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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 "Formaat" #: part/templates/part/import_wizard/part_upload.html:93 -#: templates/js/translated/bom.js:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "Selecteer bestandsindeling" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "Voorraad acties" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "Toegewezen aan Productieorder" msgid "Allocated to Sales Orders" msgstr "Toegewezen aan verkooporders" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Voorraad" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "Afbeelding van onderdeel niet gevonden" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Geen actie gespecificeerd" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "Overeenkomst gevonden voor streepjescodegegevens" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "Filters inkooporder" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "Verkooporder zoekopdracht filters" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "Stukprijs" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "Totaal" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Serienummer" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "Voorraadlocatie" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "Voorraadlocaties" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "Voorraadartikel is toegewezen aan een verkooporder" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "Artikel is toegewezen aan een verkooporder" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "Artikel is toegewezen aan een productieorder" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "Scan naar Locatie" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "Voorraad tellen" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "Voorraad overzetten" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Product" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "Geen locatie ingesteld" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "Locatie acties" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "Bewerk locatie" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "Verwijder locatie" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "U staat niet in de lijst van eigenaars van deze locatie. Deze voorraadlocatie kan niet worden bewerkt." -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Sublocaties" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "Maak nieuwe voorraadlocatie" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "Nieuwe Locatie" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "Vereist voor Productieorder" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "Productieorders in Uitvoering" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "Achterstallige Productieorders" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "Openstaande Inkooporders" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "Achterstallige Inkooporders" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "Openstaande Verkooporders" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "Achterstallige Verkooporders" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "Bericht" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "Bericht indienen" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "Inkooporder Instellingen" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "Startpagina" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,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:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "Vereiste Hoeveelheid" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "Sluit" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "Voeg Fabrikantgegevens toe" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "Voeg onderdeelfabrikantgegevens toe aan geëxporteerde stuklijst" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "Geen Voorraad Aanwezig" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "Bewerk Productieorder" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "Maak Productieorder" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "Annuleer Productieorder" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "Weet je zeker dat je de productie wilt annuleren?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "Voorraadartikelen zijn toegewezen aan deze productieorder" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "Er staat incomplete productie open voor deze productieorder" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "Productieorder is gereed om als voltooid te markeren" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "Productieorder is onvolledig" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "Voltooi Productieoorder" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "De stuklijst bevat traceerbare onderdelen" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "Productieuitvoeren moeten individueel worden gegenereerd" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "Traceerbare onderdelen kunnen een serienummer hebben" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "Voer serienummers in om meerdere enkelvoudige productuitvoeren te genereren" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "Selecteer Productieuitvoeren" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "Voltooi Productieuitvoeren" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "Verwijder Productieuitvoeren" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "Geen productieordertoewijzingen gevonden" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "Locatie is niet opgegeven" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "Voltooi uitvoeren" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "Verwijder uitvoeren" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "Geen actieve productieuitvoeren gevonden" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "Voorraadtoewijzing bewerken" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "Voorraadtoewijzing verwijderen" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "Onvoldoende voorraad beschikbaar" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "Genoeg voorraad beschikbaar" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "Productie voorraad" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "Voorraad order" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "Voorraad toewijzen" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "Onderdelen selecteren" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "Er moet op zijn minst één onderdeel toegewezen worden" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "Specificeer voorraadtoewijzingshoeveelheid" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "Selecteer bron locatie (laat het veld leeg om iedere locatie te gebruiken)" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "Voorraadartikelen toewijzen aan Productieorder" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "Geen overeenkomende voorraadlocaties" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "Geen overeenkomende voorraadartikelen" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "Voorraadartikelen zullen automatisch worden toegewezen aan de productieorder volgens de aangegeven richtlijnen" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "Productieorder is achterstallig" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" +msgstr "Voorraadtoewijzing bewerken" + +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "Voorraadtoewijzing verwijderen" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "Onvoldoende voorraad beschikbaar" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "Genoeg voorraad beschikbaar" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "Productie voorraad" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "Voorraad order" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "Voorraad toewijzen" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "Fabrikant toevoegen" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "Fabrikantonderdeel toevoegen" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "Fabrikantonderdeel bewerken" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "Leverancier Toevoegen" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "Leveranciersonderdeel Toevoegen" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "Gefabriceerde Onderdelen" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "Verwijder Fabrikantenonderdelen" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "Parameter verwijderen" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Bestel onderdelen" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "Fabrikantonderdeel verwijderen" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "Geen fabrikantenonderdelen gevonden" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "Samengesteld onderdeel" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "Geen parameters gevonden" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "Parameter bewerken" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "Parameter verwijderen" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "Parameter bewerken" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "Parameter verwijderen" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "Verwijder leveranciersonderdelen" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "Laatst bijgewerkt" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Verwijderen" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "Verwijder Regel" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "Geen artikelen gevonden" @@ -10735,370 +10867,410 @@ msgstr "Bewerk regel" msgid "Delete line" msgstr "Verwijder regel" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "Validatie van de BOM markeert ieder artikel als geldig" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "Geen inkooporder gevonden" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "Dit artikel is achterstallig" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "Artikel ontvangen" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "Bewerk Inkooporder" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "Voltooi Inkooporder" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "Order markeren als voltooid?" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "Alle artikelen zijn ontvangen" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "Deze order heeft artikelen die niet zijn gemarkeerd als ontvangen." -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "Na het voltooien van de order zijn de order en de artikelen langer bewerkbaar." -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "Inkooporder annuleren" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "Weet u zeker dat u deze inkooporder wilt annuleren?" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "Deze inkooporder kan niet geannuleerd worden" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "Geef inkooporder uit" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "Te bestellen aantal" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "Nieuwe inkooporder" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "Toevoegen aan inkooporder" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "Geen overeenkomende inkooporders" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "Selecteer artikelen" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "Ten minste één artikel moet worden geselecteerd" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "Order Code" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "Ontvang Artikelen Inkooporder" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "Order is achterstallig" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "Artikelen" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "Artikel dupliceren" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "Artikel wijzigen" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "Artikel verwijderen" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "Artikel dupliceren" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "Artikel bewerken" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "Artikel verwijderen" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "Ongeldige Klant" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "Geen overeenkomende artikelen" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "Verkooporder aanmaken" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "Verkooporder bewerken" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "Geen voorraadartikelen toegewezen aan deze zending" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "De volgende voorraadartikelen worden verzonden" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "Verzending Voltooien" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "Verzending Bevestigen" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "Geen verzendingen in behandeling gevonden" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "Verzendingen Voltooien" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "Verkooporder annuleren" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "Na annulering van de order kan de order niet meer bewerkt worden." -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "Geen verkooporder gevonden" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "Verzending bewerken" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "Verzending Voltooien" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "Verzending verwijderen" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "Verzending bewerken" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "Verzending verwijderen" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "Geen overeenkomende verzending gevonden" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "Verzendingsreferentie" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "Niet verzonden" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "Volgen" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "Factuur" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "Voeg Verzending toe" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "Bevestig de voorraadtoewijzing" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "Voorraadartikel toewijzen aan Verkooporder" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "Geen verkooporder toewijzingen gevonden" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "Bewerk Voorraadtoewijzing" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "Bevestig Verwijderen" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "Verwijder Voorraadtoewijzing" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "Verzonden aan klant" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "Voorraadlocatie niet gespecificeerd" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "Wijs serienummers toe" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "Koop voorraad" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "Bereken prijs" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "Kan niet worden verwijderd omdat artikelen verzonden zijn" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "Kan niet worden verwijderd omdat artikelen toegewezen zijn" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "Wijs Serienummers Toe" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "Werk Stukprijs Bij" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "Bewerk Voorraadlocatie" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "Verwijder Voorraadlocatie" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "Toegewezen aan Verkooporder" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "Geen voorraadlocatie ingesteld" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "Voorraadartikel toegewezen aan verkooporder" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 +msgid "stock items" +msgstr "" + +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" +msgstr "Voorraadartikel toegewezen aan verkooporder" + +#: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 msgid "Stock item is destroyed" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 msgid "Depleted" msgstr "" -#: templates/js/translated/stock.js:2031 +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "Inkooporder bestaat niet meer" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "Order status" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "Samengesteld onderdeel" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "Onderdeel is een assemblage" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "rijen per pagina" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "Geselecteerde artikelen bestellen" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/no/LC_MESSAGES/django.po b/InvenTree/locale/no/LC_MESSAGES/django.po index 629cee2d27..391cd54c5e 100644 --- a/InvenTree/locale/no/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -25,21 +25,21 @@ msgstr "API-endepunkt ikke funnet" msgid "User does not have permission to view this model" msgstr "Brukeren har ikke rettigheter til å se denne modellen" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" -msgstr "" +msgstr "Ingen verdi angitt" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" -msgstr "" +msgstr "Angitt verdi er ikke et gyldig tall" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" -msgstr "" +msgstr "Angitt verdi har en ugyldig enhet" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" -msgstr "" +msgstr "Oppgitt verdi kunne ikke konverteres til den angitte enheten" #: InvenTree/exceptions.py:90 msgid "Error details can be found in the admin panel" @@ -49,26 +49,26 @@ msgstr "Feildetaljer kan finnes i admin-panelet" msgid "Enter date" msgstr "Oppgi dato" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Notater" @@ -81,47 +81,51 @@ msgstr "Verdi '{name}' vises ikke i mønsterformat" msgid "Provided value does not match required pattern: " msgstr "Angitt verdi samsvarer ikke med påkrevd mønster: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Oppgi passord" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Oppgi nytt passord" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Bekreft passord" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Bekreft nytt passord" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Gammelt passord" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "E-post (gjenta)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Bekreft e-postaddresse" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Du må angi samme e-post hver gang." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Den oppgitte primære e-postadressen er ikke gyldig." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Det oppgitte e-postdomenet er ikke godkjent." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "Registrering er deaktivert." + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Ugyldig mengde oppgitt" @@ -195,7 +199,7 @@ msgstr "Angitt URL er ikke en gyldig bildefil" #: InvenTree/models.py:82 msgid "Metadata must be a python dict object" -msgstr "Metadata må være et python ordobjekt" +msgstr "Metadata må være et python dict-objekt" #: InvenTree/models.py:86 msgid "Plugin Metadata" @@ -237,9 +241,9 @@ msgstr "Fil mangler" msgid "Missing external link" msgstr "Mangler eksternlenke" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Vedlegg" @@ -247,29 +251,30 @@ msgstr "Vedlegg" msgid "Select file to attach" msgstr "Velg fil å legge ved" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Lenke" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Lenke til ekstern URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Kommentar" @@ -277,13 +282,13 @@ msgstr "Kommentar" msgid "File comment" msgstr "Kommentar til fil" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Bruker" @@ -324,54 +329,54 @@ msgstr "Duplikatnavn kan ikke eksistere under samme overordnede" msgid "Invalid choice" msgstr "Ugyldig valg" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Navn" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Beskrivelse" @@ -384,7 +389,7 @@ msgid "parent" msgstr "overkategori" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Sti" @@ -420,12 +425,12 @@ msgstr "Serverfeil" msgid "An error has been logged by the server." msgstr "En feil har blitt logget av serveren." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Må være et gyldig tall" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,322 +503,325 @@ msgstr "URLtil ekstern bildefil" msgid "Downloading images from remote URL is not enabled" msgstr "Nedlasting av bilder fra ekstern URL er ikke aktivert" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Tsjekkisk" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Dansk" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Tysk" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Gresk" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Engelsk" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Spansk" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Spansk (Meksikansk)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Farsi / Persisk" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" -msgstr "" +msgstr "Finsk" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Fransk" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hebraisk" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Ungarsk" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italiensk" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japansk" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Koreansk" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Nederlandsk" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norsk" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polsk" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugisisk" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugisisk (Brasil)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Russisk" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Slovensk" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Svensk" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Thailandsk" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Tyrkisk" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamesisk" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Kinesisk" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Sjekk av bakgrunnsarbeider mislyktes" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "E-post backend ikke konfigurert" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "InvenTree's-systemets helsesjekker mislyktes" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Ventende" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Plassert" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Fullført" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Kansellert" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Tapt" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Returnert" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "Pågående" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Sendt" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Trenger oppmerksomhet" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Skadet" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Ødelagt" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Avvist" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "I Karantene" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Gammel lagervare sporingsoppføring" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Lagevare opprettet" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Redigerte lagervare" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Tildelte serienummer" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Lager opptelt" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Lagerbeholdning manuelt lagt til" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Lagerbeholdning manuelt fjernet" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Posisjon endret" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" -msgstr "Lager oppdatert" +msgstr "Lagerbeholdning oppdatert" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Montert i sammenstilling" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Fjernet fra sammenstilling" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Montert komponentartikkel" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Fjernet komponentartikkel" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Skill ut fra overordnet artikkel" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Skill ut fra underartikkel" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Sammenslåtte lagervarer" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Konvertert til variant" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Sendt til kunde" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Returnert av kunde" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Build ordreutgang opprettet" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Build ordreutg fullført" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" -msgstr "" +msgstr "Bygge ordreutgang avvist" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Antatt som byggeordre" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" -msgstr "Sendt til salgsordre" +msgstr "Sendt mot salgsordre" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "Mottatt mot innkjøpsordre" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "Returnert mot returordre" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Sendt til kunde" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Returnert av kunde" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Produksjon" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "Retur" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "Reparasjon" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "Refusjon" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "Erstatt" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "Refusjon" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "Avvis" #: InvenTree/validators.py:32 InvenTree/validators.py:34 msgid "Invalid physical unit" -msgstr "" +msgstr "Ugyldig fysisk enhet" #: InvenTree/validators.py:40 msgid "Not a valid currency code" @@ -831,99 +839,127 @@ msgstr "Svinn kan ikke overstige 100%" msgid "Invalid value for overage" msgstr "Ugyldig verdi for svinn" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Rediger brukerinformasjon" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Velg passord" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Passordfeltene må samsvare" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Feil passord angitt" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Systeminformasjon" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Om InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Bygningen må avbrytes før den kan slettes" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "Forbruksvare" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "Valgfritt" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "Spores" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "Tildelt" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Build ordre" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Build Ordre" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Ugylding valg for overordnet build" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Bygg ordrereferanse" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Referanse" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "Kort beskrivelse av produksjonen (valgfritt)" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Overordnet build" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Build order som denne build er tildelt til" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,586 +968,603 @@ msgstr "Build order som denne build er tildelt til" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Del" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Velg del å produsere" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Salgsordrereferanse" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Salgsordren denne produksjonen er tildelt til" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Kildeplassering" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Fullført plassering" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Velg plassering der fullførte artikler vil bli lagret" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Produksjonsmengde" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Antall lagervarer å produsere" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Fullførte artikler" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Antall lagervarer som er fullført" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Produksjonsstatus" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Produksjonsstatuskode" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Batchkode" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Batchkode for denne produksjonsartikkelen" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Opprettelsesdato" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Forventet sluttdato" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Forventet dato for ferdigstillelse. Build er forvalt etter denne datoen." -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Fullført dato" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "fullført av" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Utstedt av" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Brukeren som utstede denne prosjekt order" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Ansvarlig" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "Bruker eller gruppe ansvarlig for produksjonsordren" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Ekstern lenke" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "Produksjonsprioritet" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "Produksjonsordrens prioritet" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "Prosjektkode" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "Prosjektkode for denne produksjonsordren" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Byggeordre {build} er fullført" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Byggeordre er fullført" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Ingen prosjekt utgang" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Prosjekt utdata er allerede utfylt" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Prosjekt utdata samsvarer ikke Prosjekt Order" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "Mengden må være større enn null" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" -msgstr "" +msgstr "Kvantitet kan ikke være større enn utgangsantallet" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" -msgstr "Prosjektvare må spesifisere en prosjekt utdata, siden hovedvaren er markert som sporbar" +#: build/models.py:1265 +msgid "Build object" +msgstr "Bygg objekt" -#: build/models.py:1281 -#, 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:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Lagervaren er overtildelt" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Tildelingsantall må være større enn null" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Mengden må være 1 for serialisert lagervare" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Valgt lagevare ikke funnet i BOM" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Produksjon" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Bygge for å tildele deler" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Lagervare" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Kildelagervare" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Antall" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "Påkrved kvantitet for ordre" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "Prosjektvare må spesifisere en prosjekt utdata, siden hovedvaren er markert som sporbar" + +#: build/models.py:1371 +#, 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:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Lagervaren er overtildelt" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Tildelingsantall må være større enn null" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Mengden må være 1 for serialisert lagervare" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "Valgt lagervare samsvarer ikke med BOM-linjen" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Lagervare" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Kildelagervare" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Lagerantall å tildele til produksjonen" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Monteres i" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Lagervare for montering" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Produksjonsartikkel" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "Produksjonsartikkel samsvarer ikke med overordnet produksjon" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "Resultatdel samsvarer ikke med produksjonsordredel" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Denne produksjonsartikkelen er allerede fullført" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "Denne produksjonsartikkelen er ikke fullt tildelt" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Angi antall for produksjonsartikkel" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "Heltallsverdi kreves for sporbare deler" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Heltallsverdi kreves, da stykklisten inneholder sporbare deler" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Serienummer" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Angi serienummer for produksjonsartikler" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "Automatisk tildeling av serienummer" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "Automatisk tildeling av nødvendige artikler med tilsvarende serienummer" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "Følgende serienummer finnes allerede eller er ugyldige" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "En liste over produksjonsartikler må oppgis" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Plassering" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" -msgstr "" +msgstr "Lagreplassering for skrotet utganger" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" -msgstr "" +msgstr "Forkast tildelinger" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" -msgstr "" +msgstr "Forkast lagerallokering for skrotet utganger" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" -msgstr "" +msgstr "Grunnen til utrangering av bygg utgang(er)" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "Plassering for ferdige produksjonsartikler" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Status" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "Godta ufullstendig tildeling" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "Fullfør artikler dersom lagerbeholdning ikke er fullt tildelt" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "Fjern tildelt lagerbeholdning" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "Trekk fra all lagerbeholdning som allerede er tildelt denne produksjonen" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "Fjern ufullstendige artikler" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "Slett alle produksjonsartikler som ikke er fullført" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "Ikke tillatt" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "Godta som brukt av denne produksjonsordren" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "Fjern tildeling før produksjonsordren fullføres" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "Overtildelt lagerbeholdning" -#: build/serializers.py:633 +#: build/serializers.py:641 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:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "Noen lagervarer har blitt overtildelt" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "Godta ikke tildelt" -#: build/serializers.py:649 +#: build/serializers.py:657 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:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "Nøvendig lagerbeholdning er ikke fullt tildelt" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Godta uferdig" -#: build/serializers.py:665 +#: build/serializers.py:673 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:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "Nødvendig produksjonsmengde er ikke nådd" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "Produksjonsordren har uferdige artikler" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "Stykklisteartikkel" +#: build/serializers.py:722 +msgid "Build Line" +msgstr "Bygg linje" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "Produksjonsartikkel" -#: build/serializers.py:732 +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "Produksjonsartikkel må peke til samme produksjon" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "Bygg linjeelement" + +#: build/serializers.py:790 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:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "Artikkelen må være på lager" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Tilgjengelig antall ({q}) overskredet" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "Produksjonsartikkel må spesifiseres for tildeling av sporede deler" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Produksjonsartikkel kan ikke spesifiseres for tildeling av usporede deler" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "Denne lagervaren er allerede tildelt til denne produksjonsartikkelen" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "Tildelingsartikler må oppgis" -#: build/serializers.py:943 +#: build/serializers.py:947 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:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "Eksluderer plassering" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "Ekskluder lagervarer fra denne valgte plasseringen" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "Utskiftbar lagerbeholdning" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Lagervarer ved flere plasseringer kan brukes om hverandre" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "Erstatning av lagerbeholdning" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "Tilatt tildelling av erstatningsdeler" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "Valgfrie artikler" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" -msgstr "Tildel valgfrie stykklistevarer til produksjonsordre" +msgstr "Tildel valgfrie BOM-artikler til produksjonsordre" #: build/tasks.py:101 msgid "Stock required for build order" @@ -1528,7 +1581,7 @@ msgstr "Produksjonsordre {bo} er nå forfalt" #: build/templates/build/build_base.html:18 msgid "Part thumbnail" -msgstr "" +msgstr "Miniatyrbilde for del" #: build/templates/build/build_base.html:39 #: company/templates/company/supplier_part.html:36 @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Strekkodehandlinger" @@ -1616,69 +1670,67 @@ msgstr "Fullfør Produksjon" msgid "Build Description" msgstr "Produksjonsbeskrivelse" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "Ingen produksjonsartikler har blitt opprettet for produksjonsordren" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "Produksjonsordren er klar til å merkes som fullført" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "Produksjonsordren kan ikke fullføres på grunn av utestående artikler" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "Nødvendig produksjonsantall er ikke oppnådd enda" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 msgid "Stock has not been fully allocated to this Build Order" 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Måldato" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "Denne produksjonsordren forfalt %(target)s" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "Forfalt" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Fullført" +#: build/templates/build/build_base.html:178 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" +msgstr "Fullførte byggeresultater" -#: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "Fullført" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Salgsordre" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Utstedt av" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "Prioritet" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "Slett Produksjonsordre" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "Produksjonsordrens QR-kode" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "Koble Strekkode til Produksjonsordre" @@ -1727,8 +1779,8 @@ msgstr "Lagerkilde" msgid "Stock can be taken from any available location." msgstr "Lagervare kan hentes fra alle tilgengelige steder." -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Destinasjon" @@ -1742,21 +1794,21 @@ msgstr "Tildelte deler" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Parti" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Opprettet" @@ -1764,147 +1816,106 @@ msgstr "Opprettet" msgid "No target date set" msgstr "Ingen måldato satt" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Fullført" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "Produksjon ikke fullført" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "Underordnede Produksjonsordrer" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "Tildel Lagerbeholdning til Produksjon" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: build/templates/build/detail.html:181 +msgid "Deallocate stock" +msgstr "Fjern lager allokering" + +#: build/templates/build/detail.html:182 +msgid "Deallocate Stock" msgstr "Fjern lager allokering" #: build/templates/build/detail.html:184 -msgid "Unallocate Stock" -msgstr "Fjern lager allokering" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "Automatisk tildel lagerbeholdning til produksjon" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "Automatisk tildeling" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "Manuelt tildel lagerbeholdning til produksjon" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "Tildele lager" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Bestill nødvendige deler" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Bestill deler" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "Usporet lagerbeholdning er fullt tildelt for Produksjonsordren" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "Usporet lagerbeholdning er ikke fullt tildelt for Produksjonsordren" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "Tildel valgte varer" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "Produksjonsordren har ingen tilknyttede usporede stykklisteartikler" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "Ufullstendige Produksjonsartikler" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "Opprett ny produksjonsartikkel" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "Ny Produksjonsartikkel" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "Artikkelhandlinger" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "Fullfør valgte produksjonsartikler" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "Fullfør artikler" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "Slett valgte produksjonsartikler" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "Slett resultat" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" -msgstr "" +msgstr "Forbrukt lager" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "Fullførte byggeresultater" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Vedlegg" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Bygg notater" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "Tildeling fullført" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" -msgstr "Alle usporbar lagervarer har tildelt" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" +msgstr "Alle linjer er fullt tildelt" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Ny byggeordre" @@ -1912,14 +1923,10 @@ msgstr "Ny byggeordre" msgid "Build Order Details" msgstr "Byggordre detaljer" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "Ufullstendige resultater" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "Fullførte byggeresultater" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "Oppdatert" msgid "Timestamp of last update" msgstr "Tidsstempel for forrige oppdatering" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "Prosjektkode" - #: common/models.py:105 msgid "Unique project code" msgstr "Unik prosjektkode" @@ -2126,8 +2123,8 @@ 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:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "dager" @@ -2229,11 +2226,11 @@ msgstr "Tillat endring av IPN-verdien mens du redigerer en del" #: common/models.py:1134 msgid "Copy Part BOM Data" -msgstr "Kopier stykklistedata fra del" +msgstr "Kopier BOM-data fra del" #: common/models.py:1135 msgid "Copy BOM data by default when duplicating a part" -msgstr "Kopier stykklistedata som standard når du dupliserer en del" +msgstr "Kopier BOM-data som standard når du dupliserer en del" #: common/models.py:1141 msgid "Copy Part Parameter Data" @@ -2259,9 +2256,9 @@ msgstr "Kopier designmaler for kategoriparametere" msgid "Copy category parameter templates when creating a part" msgstr "Kopier parametermaler for kategori ved oppretting av en del" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Mal" @@ -2269,10 +2266,10 @@ msgstr "Mal" msgid "Parts are templates by default" msgstr "Deler er maler som standard" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Sammenstilling" @@ -2280,8 +2277,8 @@ msgstr "Sammenstilling" msgid "Parts can be assembled from other components by default" msgstr "Deler kan settes sammen fra andre komponenter som standard" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Komponent" @@ -2289,7 +2286,7 @@ msgstr "Komponent" msgid "Parts can be used as sub-components by default" msgstr "Deler kan bli brukt som underkomponenter som standard" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Kjøpbar" @@ -2297,8 +2294,8 @@ msgstr "Kjøpbar" msgid "Parts are purchaseable by default" msgstr "Deler er kjøpbare som standard" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Salgbar" @@ -2306,10 +2303,10 @@ msgstr "Salgbar" msgid "Parts are salable by default" msgstr "Deler er salgbare som standard" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Sporbar" @@ -2317,10 +2314,10 @@ msgstr "Sporbar" msgid "Parts are trackable by default" msgstr "Deler er sporbare som standard" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Virtuelle" @@ -2352,7 +2349,7 @@ msgstr "Innledende lagerbeholdningsdata" 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:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Innledende leverandørdata" @@ -2377,525 +2374,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "Standardikon for delkategorier (tomt betyr ingen ikon)" #: common/models.py:1253 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 msgid "Minimum Pricing Decimal Places" msgstr "Minimum antall desimalplasser for priser" -#: common/models.py:1254 +#: common/models.py:1261 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:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "Maksimalt antall desimalplasser for priser" -#: common/models.py:1265 +#: common/models.py:1272 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:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "Bruk leverandørpriser" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Inkluder leverandørprisbrudd i beregninger av totalpriser" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "Innkjøpshistorikkoverstyring" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Historiske innkjøpspriser overstyrer leverandørprisnivåer" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "Bruk lagervarepriser" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Bruk priser fra manuelt innlagte lagervarer for prisberegninger" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "Lagervare prisalder" -#: common/models.py:1297 +#: common/models.py:1304 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:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "Bruk Variantpriser" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "Inkluder variantpriser i beregninger av totale priser" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "Kun aktive varianter" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "Bruk kun aktive variantdeler til beregning av variantprising" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "Intervall for rekalkulering av priser" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "Antall dager før delpriser blir automatisk oppdatert" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "Interne Priser" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "Aktiver interne priser for deler" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "Intern prisoverstyring" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "Hvis tilgjengelig, overstyrer interne priser kalkulering av prisområde" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "Aktiver etikettutskrift" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "Aktiver utskrift av etiketter fra nettleseren" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "Etikettbilde-DPI" -#: common/models.py:1354 +#: common/models.py:1361 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:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "Aktiver Rapporter" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "Aktiver generering av rapporter" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Feilsøkingsmodus" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "Generer rapporter i feilsøkingsmodus (HTML-output)" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Sidestørrelse" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Standard sidestørrelse for PDF-rapporter" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "Aktiver Testrapporter" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "Aktiver generering av testrapporter" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "Legg ved testrapporter" -#: common/models.py:1396 +#: common/models.py:1403 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:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "Globalt Unike Serienummer" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "Serienummer for lagervarer må være globalt unike" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "Automatisk tildeling av Serienummer" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "Aumatisk fyll ut serienummer i skjemaer" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "Slett oppbrukt lagerbeholdning" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "Bestemmer standard oppførsel når en lagervare er oppbrukt" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "Batchkodemal" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "Mal for generering av standard batchkoder for lagervarer" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "Lagerbeholdning utløper" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "Aktiver funksjonalitet for utløp av lagerbeholdning" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "Selg utløpt lagerbeholdning" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "Tillat salg av utgått lagerbeholdning" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "Foreldet lagerbeholdning tidsintervall" -#: common/models.py:1444 +#: common/models.py:1451 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:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "Produsér Utløpt Lagerbeholdning" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "Tillat produksjon med utløpt lagerbeholdning" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "Kontroll over eierskap av lagerbeholdning" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "Aktiver eierskap over lagerplasseringer og -varer" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "Lagerplassering standard ikon" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "Lagerplassering standard ikon (tomt betyr ingen ikon)" -#: common/models.py:1471 +#: common/models.py:1478 +msgid "Show Installed Stock Items" +msgstr "Vis installerte lagervarer" + +#: common/models.py:1479 +msgid "Display installed stock items in stock tables" +msgstr "Vis installerte lagervarer i lagertabeller" + +#: common/models.py:1485 msgid "Build Order Reference Pattern" msgstr "Produksjonsordre-referansemønster" -#: common/models.py:1472 +#: common/models.py:1486 msgid "Required pattern for generating Build Order reference field" msgstr "Nødvendig mønster for å generere Produksjonsordre-referansefeltet" -#: common/models.py:1478 +#: common/models.py:1492 msgid "Enable Return Orders" msgstr "Aktiver returordrer" -#: common/models.py:1479 +#: common/models.py:1493 msgid "Enable return order functionality in the user interface" msgstr "Aktiver returordrefunksjonalitet i brukergrensesnittet" -#: common/models.py:1485 +#: common/models.py:1499 msgid "Return Order Reference Pattern" msgstr "Returordre-referansemønster" -#: common/models.py:1486 +#: common/models.py:1500 msgid "Required pattern for generating Return Order reference field" msgstr "Påkrevd mønster for å generere returordrereferansefelt" -#: common/models.py:1492 +#: common/models.py:1506 msgid "Edit Completed Return Orders" msgstr "Rediger fullførte returordrer" -#: common/models.py:1493 +#: common/models.py:1507 msgid "Allow editing of return orders after they have been completed" msgstr "Tillat redigering av returordrer etter de er fullført" -#: common/models.py:1499 +#: common/models.py:1513 msgid "Sales Order Reference Pattern" msgstr "Salgsordre-referansemønster" -#: common/models.py:1500 +#: common/models.py:1514 msgid "Required pattern for generating Sales Order reference field" msgstr "Påkrevd mønster for å generere salgsordrereferansefelt" -#: common/models.py:1506 +#: common/models.py:1520 msgid "Sales Order Default Shipment" msgstr "Salgsordre standard fraktmetode" -#: common/models.py:1507 +#: common/models.py:1521 msgid "Enable creation of default shipment with sales orders" msgstr "Aktiver opprettelse av standard forsendelse med salgsordrer" -#: common/models.py:1513 +#: common/models.py:1527 msgid "Edit Completed Sales Orders" msgstr "Rediger fullførte salgsordrer" -#: common/models.py:1514 +#: common/models.py:1528 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:1520 +#: common/models.py:1534 msgid "Purchase Order Reference Pattern" msgstr "Referansemønster for innkjøpsordre" -#: common/models.py:1521 +#: common/models.py:1535 msgid "Required pattern for generating Purchase Order reference field" msgstr "Obligatorisk mønster for generering av referansefelt for innkjøpsordre" -#: common/models.py:1527 +#: common/models.py:1541 msgid "Edit Completed Purchase Orders" msgstr "Rediger fullførte innkjøpsordre" -#: common/models.py:1528 +#: common/models.py:1542 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:1535 +#: common/models.py:1549 msgid "Enable password forgot" msgstr "Aktiver passord glemt" -#: common/models.py:1536 +#: common/models.py:1550 msgid "Enable password forgot function on the login pages" msgstr "Ativer funskjon for glemt passord på innloggingssidene" -#: common/models.py:1542 +#: common/models.py:1556 msgid "Enable registration" msgstr "Aktiver registrering" -#: common/models.py:1543 +#: common/models.py:1557 msgid "Enable self-registration for users on the login pages" msgstr "Aktiver egenregistrerting for brukerer på påloggingssidene" -#: common/models.py:1549 +#: common/models.py:1563 msgid "Enable SSO" msgstr "Aktiver SSO" -#: common/models.py:1550 +#: common/models.py:1564 msgid "Enable SSO on the login pages" msgstr "Aktiver SSO på innloggingssidene" -#: common/models.py:1556 +#: common/models.py:1570 msgid "Enable SSO registration" msgstr "Aktiver SSO-registrering" -#: common/models.py:1557 +#: common/models.py:1571 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Aktiver selvregistrering via SSO for brukere på innloggingssiden" -#: common/models.py:1563 +#: common/models.py:1577 msgid "Email required" msgstr "E-postadresse kreves" -#: common/models.py:1564 +#: common/models.py:1578 msgid "Require user to supply mail on signup" msgstr "Krevt at brukere angir e-post ved registrering" -#: common/models.py:1570 +#: common/models.py:1584 msgid "Auto-fill SSO users" msgstr "Auto-utfyll SSO-brukere" -#: common/models.py:1571 +#: common/models.py:1585 msgid "Automatically fill out user-details from SSO account-data" msgstr "Fyll automatisk ut brukeropplysninger fra SSO-kontodata" -#: common/models.py:1577 +#: common/models.py:1591 msgid "Mail twice" msgstr "E-post to ganger" -#: common/models.py:1578 +#: common/models.py:1592 msgid "On signup ask users twice for their mail" msgstr "Spør brukeren om e-post to ganger ved registrering" -#: common/models.py:1584 +#: common/models.py:1598 msgid "Password twice" msgstr "Passord to ganger" -#: common/models.py:1585 +#: common/models.py:1599 msgid "On signup ask users twice for their password" msgstr "Spør brukeren om passord to ganger ved registrering" -#: common/models.py:1591 +#: common/models.py:1605 msgid "Allowed domains" msgstr "Tillatte domener" -#: common/models.py:1592 +#: common/models.py:1606 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "Begrens registrering til bestemte domener (kommaseparert, begynner med @)" -#: common/models.py:1598 +#: common/models.py:1612 msgid "Group on signup" msgstr "Gruppe ved registrering" -#: common/models.py:1599 +#: common/models.py:1613 msgid "Group to which new users are assigned on registration" msgstr "Gruppe nye brukere blir tilknyttet ved registrering" -#: common/models.py:1605 +#: common/models.py:1619 msgid "Enforce MFA" msgstr "Krev MFA" -#: common/models.py:1606 +#: common/models.py:1620 msgid "Users must use multifactor security." msgstr "Brukere må bruke flerfaktorsikkerhet." -#: common/models.py:1612 +#: common/models.py:1626 msgid "Check plugins on startup" msgstr "Sjekk utvidelser ved oppstart" -#: common/models.py:1613 +#: common/models.py:1627 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:1620 -msgid "Check plugin signatures" -msgstr "Sjekk utvidelsessignaturer" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "Kontroller og vis signaturer for utvidelser" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "Aktiver URL-integrasjon" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "Tillat utvidelser å legge til URL-ruter" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "Aktiver navigasjonsintegrasjon" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "Tillat utvidelser å integrere mot navigasjon" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "Aktiver app-integrasjon" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "Tillat utvidelser å legge til apper" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "Aktiver tidsplanintegrasjon" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "Tillat utvidelser å kjøre planlagte oppgaver" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "Aktiver hendelsesintegrasjon" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "Tillat utvidelser å reagere på interne hendelser" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "Aktiver prosjektkoder" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "Aktiver prosjektkoder for å spore prosjekter" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "Varetellingsfunksjonalitet" -#: common/models.py:1676 +#: common/models.py:1683 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:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "Automatisk varetellingsperiode" -#: common/models.py:1683 +#: common/models.py:1690 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:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "Rapportslettingsintervall" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Varetellingsrapporter vil slettes etter angitt antall dager" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 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:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "Ingen skriver (Eksporter til PDF)" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "Skjul inaktive elementer" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Skjul inaktive deler i resultater som vises på hjemmesiden" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "Vis abonnerte deler" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "Vis abonnerte deler på startsiden" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "Vis abonnerte kategorier" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "Vis abonnerte delkatekorier på startsiden" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Vis nyeste deler" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "Vis nyeste deler på startsiden" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "Antall nye deler" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "Antall nye deler som skal vises på startsiden" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "Vis uvaliderte stykklister" @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "Vis nylig endrede lagervarer på startsiden" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "Antall nylig lagerbeholdning" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "Antall nylige lagervarer som skal vises på startsiden" - -#: common/models.py:1807 msgid "Show low stock" msgstr "Vis lav lagerbeholdning" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "Vis lave lagervarer på startsiden" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "Vis tomme lagervarer" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "Vis tom lagerbeholdning på startsiden" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "Vis nødvendig lagerbeholdning" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "Vis lagervarer som trengs for produksjon på startsiden" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "Vis utløpt lagerbeholdning" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "Vis utløpte lagervarer på startsiden" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "Vis foreldet lagerbeholdning" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "Vis foreldet lagerbeholdning på startsiden" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "Vis ventende produksjoner" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "Vi ventende produksjoner på startsiden" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "Vis forfalte produksjoner" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "Vis forfalte produksjoner på startsiden" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "Vis utestående Innkjøpsordrer" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "Vis utestående Innkjøpsordrer på startsiden" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "Vis forfalte Innkjøpsordrer" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "Vis forfalte Innkjøpsordrer på startsiden" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "Vis utestående Salgsordrer" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "Vis utestående Salgsordrer på startsiden" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "Vis forfalte SOer" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "Vis forfalte SOer på startsiden" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "Vis ventende SO-forsendelser" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" -msgstr "Vis ventende SO forsendelser på startsiden" +msgstr "Vis ventende SO-forsendelser på startsiden" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "Vis Nyheter" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "Vis nyheter på startsiden" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "Innebygd etikettvisning" -#: common/models.py:1899 +#: common/models.py:1892 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:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "Standard etikettskriver" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "Konfigurer hvilken etikettskriver som skal være valgt som standard" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "Innebygd rapportvisning" -#: common/models.py:1913 +#: common/models.py:1906 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:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "Søk i Deler" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "Vis deler i forhåndsvsningsvinduet for søk" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "Søk i Leverandørdeler" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "Vis leverandørdeler i forhåndsvisningsvinduet for søk" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "Søk i Produsentdeler" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "Vis produsentdeler i forhåndsvisningsvinduet for søk" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "Skjul Inaktive Deler" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "Ekskluder inaktive deler fra forhåndsvisningsvinduet for søk" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "Søk i kategorier" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "Vis delkategorier i forhåndsvisningsvinduet for søk" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "Søk i lagerbeholdning" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "Vis lagervarer i forhåndsvisningsvinduet for søk" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "Skjul utilgjengelige Lagervarer" -#: common/models.py:1962 +#: common/models.py:1955 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:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "Søk i Plasseringer" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "Vis lagerplasseringer i forhåndsvisningsvinduet for søk" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "Søk i Firma" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "Vis firma i forhåndsvsningsvinduet for søk" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "Søk i Produksjonsordrer" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "Vis produksjonsordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "Søk i Innkjøpsordrer" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "Vis innkjøpsordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "Ekskluder inaktive Innkjøpsordrer" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "Ekskluder inaktive innkjøpsordrer fra forhåndsvisningsvinduet for søk" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "Søk i Salgsordrer" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "Vis salgsordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "Ekskluder Inaktive Salgsordrer" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "Ekskluder inaktive salgsordrer fra forhåndsvisningsvinduet for søk" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "Søk i Returordrer" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "Vis returordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "Ekskluder Inaktive Returordrer" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "Ekskluder inaktive returordrer fra forhåndsvisningsvinduet for søk" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "Forhåndsvisning av søkeresultater" -#: common/models.py:2032 +#: common/models.py:2025 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:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "Regex-søk" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "Aktiver regulære uttrykk i søkeord" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "Helordsøk" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "Søk returnerer resultater for treff med hele ord" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "Vis antall i skjemaer" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "Vis antall tilgjengelige deler i noen skjemaer" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "Escape-knappen lukker skjemaer" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "Bruk Escape-knappen for å lukke modal-skjemaer" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "Fast navigasjonsbar" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "Navigasjonsbarens posisjon er fast på toppen av skjermen" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "Datoformat" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "Foretrukket format for å vise datoer" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Delplanlegging" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "Vis delplanleggingsinformasjon" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Lagertelling for Del" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Vis lagertellingsinformasjon for del (om lagertellingsfunksjonalitet er aktivert)" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "Tabellstrenglengde" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "Maksimal lengdegrense for strenger vist i tabeller" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" -msgstr "" +msgstr "Standard del etikett mal" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" -msgstr "" +msgstr "Del etikett malen skal velges automatsik" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" -msgstr "" +msgstr "Standard lagervarer mal" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" -msgstr "" +msgstr "Lagervarer etikett mal skal valges automatisk" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" -msgstr "" +msgstr "Standard lagervarer lokasjon etikett mal" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" -msgstr "" +msgstr "Lagervarer lokasjon etikett malen skal valges automatisk" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "Antall for prisbrudd" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Pris" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "Enhetspris på spesifisert antall" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "Endepunkt" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "Endepunktet hvor denne webhooken er mottatt" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "Navn for webhooken" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "Aktiv" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "Er webhooken aktiv" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "Sjetong" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "Nøkkel for tilgang" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "Hemmelig" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "Delt hemmlighet for HMAC" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "Melding ID" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "Unik Id for denne meldingen" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "Vert" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "Verten denne meldingen ble mottatt fra" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "Tittel" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "Overskrift for denne meldingen" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "Brødtekst" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "Innholdet i meldingen" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "Endepunktet meldingen ble mottatt fra" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "Arbeidet med" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "Var arbeidet med denne meldingen ferdig?" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "Id" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "Tittel" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "Publisert" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "Forfatter" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "Sammendrag" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "Les" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "Er dette nyhetselementet lest?" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "Er dette nyhetselementet lest?" msgid "Image" msgstr "Bilde" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "Bildefil" @@ -3470,7 +3460,7 @@ msgstr "Sammenlign varer" #: common/views.py:420 msgid "Fields matching failed" -msgstr "Feltene som matcher mislyktes" +msgstr "Matching av felter mislyktes" #: common/views.py:481 msgid "Parts imported" @@ -3497,7 +3487,7 @@ msgstr "Beskrivelse av firmaet" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Nettside" @@ -3505,303 +3495,388 @@ msgstr "Nettside" msgid "Company website URL" msgstr "Bedriftens nettside URL" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Adresse" - -#: company/models.py:119 -msgid "Company address" -msgstr "Firmaet adresse" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Telefonnummer" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Kontakt-telefonnummer" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "E-post" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Kontakt e-post" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Kontakt" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Kontaktpunkt" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "Link til ekstern bedriftsinformasjon" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "er kunde" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "Selger du varer til dette firmaet?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "er leverandør" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "Kjøper du varer fra dette firmaet?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "er produsent" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "Produserer dette firmaet deler?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "Standardvaluta brukt for dette firmaet" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Firma" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "Bedriften har allerede en primæradresse" + +#: company/models.py:329 +msgid "Select company" +msgstr "Vegl bedrift" + +#: company/models.py:332 +msgid "Address title" +msgstr "Adressetittel" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "Tittel som beskriver addressen" + +#: company/models.py:337 +msgid "Primary address" +msgstr "Hovedadresse" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "Sett som hovedadresse" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "Linje 1" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "Adresselinje 1" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "Linje 2" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "Adresselinje 2" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "Postnummer" + +#: company/models.py:356 +msgid "City/Region" +msgstr "Poststed/område" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "Postnummerets by/område" + +#: company/models.py:361 +msgid "State/Province" +msgstr "Delstat/provins" + +#: company/models.py:362 +msgid "State or province" +msgstr "Delstat eller provins" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "Land" + +#: company/models.py:367 +msgid "Address country" +msgstr "Adressens land" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "Notater til transportør" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "Notater for transportør" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "Interne fraktnotater" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "Fraktnotater for internt bruk" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "Lenke til adresseinformasjon (ekstern)" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Basisdel" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Velg del" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Produsent" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Velg produsent" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "MPN" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "Produsentens varenummer" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "URL for ekstern produsentdel-lenke" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "Produsentens delbeskrivelse" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Produsentdeler" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Parameternavn" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Verdi" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Parameterverdi" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Enheter" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "Parameterenheter" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" -msgstr "" +msgstr "Pakkeenhetene må være komptible med basisdelenhetene" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" -msgstr "" +msgstr "Mengden må være større enn null" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "Den sammenkoblede produsentdelen må referere til samme basisdel" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Leverandør" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Velg leverandør" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "SKU-kode" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "Leverandørens lagerbeholdningsenhet" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "Velg produsentdel" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "URL for ekstern leverandørdel-lenke" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "Leverandørens delbeskrivelse" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Notat" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "grunnkostnad" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimum betaling (f.eks. lageravgift på lager)" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "Emballasje" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "Delemballasje" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "Pakkeantall" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." -msgstr "" +msgstr "Totall antall pakket i en enkelt pakke. La stå tomt for enkeltgjenstander." -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "flere" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "Bestill flere" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "Tilgjengelig" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "Antall tilgjengelig fra leverandør" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "Tilgjengelighet oppdatert" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "Dato for siste oppdatering av tilgjengelighetsdata" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "Standardvaluta brukt for denne leverandøren" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Opprett Innkjøpsordre" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "Rediger firmainformasjon" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Rediger Firma" @@ -3854,17 +3929,17 @@ msgstr "Last ned bilde fra URL" msgid "Delete image" msgstr "Slett bilde" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Kunde" @@ -3872,6 +3947,13 @@ msgstr "Kunde" msgid "Uses default currency" msgstr "Bruker standardvaluta" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Adresse" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Telefon" @@ -3904,7 +3986,7 @@ msgstr "Last ned Bilde" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Leverandørdeler" @@ -3914,129 +3996,121 @@ msgstr "Opprett ny leverandørdel" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Ny leverandørdel" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Bestill deler" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Slett deler" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Slett deler" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 msgid "Manufacturer Parts" msgstr "Produsentdeler" -#: company/templates/company/detail.html:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Opprett ny produsentdel" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Ny Produsentdel" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Leverandørs lagerbeholdning" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Innkjøpsordrer" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Opprett ny innkjøpsordre" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Ny innkjøpsordre" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "Salgsordre" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Opprett ny salgsordre" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "Ny salgsordre" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "Tildelt lagerbeholdning" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "Returordrer" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "Opprett ny returordre" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "Ny Returordre" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Notater til firma" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "Firmakontakter" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: company/templates/company/detail.html:187 +#: company/templates/company/detail.html:188 msgid "Add Contact" msgstr "Legg til Kontakt" +#: company/templates/company/detail.html:206 +msgid "Company addresses" +msgstr "Bedriftens adresse" + +#: company/templates/company/detail.html:210 +#: company/templates/company/detail.html:211 +msgid "Add Address" +msgstr "Legg til adresse" + #: company/templates/company/index.html:8 msgid "Supplier List" msgstr "Leverandørliste" @@ -4048,17 +4122,17 @@ msgstr "Produsenter" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "Bestill del" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "Endre produsentdel" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "Slett produsentdel" @@ -4078,40 +4152,22 @@ msgstr "Ingen produsentinformasjon tilgjengelig" msgid "Suppliers" msgstr "Leverandører" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "Slett leverandørdeler" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Slett" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Parametere" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "Nytt Parameter" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Slett parametere" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "Legg til Parameter" @@ -4135,23 +4191,28 @@ msgstr "Tildelte lagervarer" msgid "Contacts" msgstr "Kontakter" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Adresser" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "Leverandørdel" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "Handlinger for leverandørdeler" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "Bestill del" @@ -4162,13 +4223,13 @@ msgstr "Oppdater Tilgjengelighet" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "Rediger Leverandørdel" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "Dupliser Leverandørdel" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "Leverandørs lagerbeholdning" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "Opprett ny lagervare" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "Ny Lagervare" @@ -4203,37 +4264,37 @@ msgstr "Ny Lagervare" msgid "Supplier Part Orders" msgstr "Leverandørdelordre" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Prisinformasjon" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "Legg til Prisbrudd" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "Leverandørdel-QR-kode" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "Koble strekkode til Leverandørdel" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "Oppdater Delens Tilgjengelighet" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Lagervarer" @@ -4259,7 +4320,7 @@ msgstr "Kunder" msgid "New Customer" msgstr "Ny Kunde" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Firmaer" @@ -4267,78 +4328,71 @@ msgstr "Firmaer" msgid "New Company" msgstr "Nytt Firma" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "Etikettnavn" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "Etikettbeskrivelse" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "Etikett" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "Etikett-malfil" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "Aktivert" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "Etikettmal er aktiver" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Bredde [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "Etikettbredde, spesifisert i mm" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Høyde [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "Etiketthøyde, spesifisert i mm" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "Filnavnmønster" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" -msgstr "Mønster for å generere etikettens filnavn" +msgstr "Mønster for generering av etikett-filnavn" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," -msgstr "Søkefilter (kommaseparert liste over nøkkel=verdi-par)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" +msgstr "Søkefiltre (kommaseparert liste over nøkkel=verdi-par)" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Filtre" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "Spørringsfiltre (kommaseparert liste over nøkkel=verdi-par" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "Spørringsfilter deler (kommaseparert liste over nøkkel=verdi-par)" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" -msgstr "QC kode" +msgid "QR Code" +msgstr "QR-kode" #: label/templates/label/part/part_label_code128.html:31 #: label/templates/label/stocklocation/qr_and_text.html:31 @@ -4346,569 +4400,573 @@ msgstr "QC kode" msgid "QR code" msgstr "QR-kode" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "Total pris" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "Ingen samsvarende innkjøpsordre funnet" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Innkjøpsordre" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "Returordre" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "Ukjent" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "Total pris for denne ordren" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "Ordre valuta" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "Valuta for denne ordren (la stå tom for å bruke firmastandard)" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "Kontakten samsvarer ikke med valgt firma" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "Ordrebeskrivelse (valgfritt)" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "Velg prosjektkode for denne ordren" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "Lenke til ekstern side" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Forventet dato for levering av ordre. Bestillingen vil være forfalt etter denne datoen." -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "Opprettet av" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "Bruker eller gruppe ansvarlig for ordren" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "Kontaktpunkt for denne ordren" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "Bedriftsadresse for denne ordren" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "Ordrereferanse" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "Status for innkjøpsordre" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "Firma som varene blir bestilt fra" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "Leverandørreferanse" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "Leverandør ordrereferanse" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "mottatt av" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "Utgivelsesdato" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "Dato bestilling ble sendt" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "Dato ordre ble fullført" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "Delleverandør må matche PO-leverandør" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "Mengde må være positiv" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "Firma som varene selges til" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "Kundereferanse " -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "Kundens ordrereferanse" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "Leveringsdato" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "sendt av" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "Bestillingen kan ikke fullføres da ingen deler er tilordnet" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "Kun en åpen ordre kan merkes som fullført" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Bestillingen kan ikke fullføres da det finnes ufullstendige varepartier" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "Denne ordren kan ikke fullføres da det fortsatt er ufullstendige artikler" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "Antall" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "Linje referanse" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "Linje notat" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Måldato for denne linjen (la stå tomt for å bruke måldatoen fra ordren)" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" -msgstr "" +msgstr "Linjeelementbeskrivelse (valgfritt)" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "Kontekst" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "Ytterligere kontekst for denne linjen" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "Enhetspris" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "Delens leverandør må samsvare med leverandør" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "slettet" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "Ordre" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "Leverandørdel" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "Mottatt" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "Antall enheter mottatt" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Innkjøpspris" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "Enhet-innkjøpspris" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "Hvor vil innkjøper at artikkelen skal lagres?" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "Virtuell del kan ikke tildeles salgsordre" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "Kun salgbare deler kan tildeles en salgsordre" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "Salgspris" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "Enhets-salgspris" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "Sendt antall" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "Dato for forsendelse" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" -msgstr "" +msgstr "Leveringsdato" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" -msgstr "" +msgstr "Dato for levering av forsendelse" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "Sjekket Av" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "Brukeren som sjekket forsendelsen" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "Forsendelse" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "Forsendelsesnummer" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "Sporingsnummer" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "Sporingsinformasjon for forsendelse" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "Fakturanummer" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "Referansenummer for tilknyttet faktura" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "Forsendelsen er allerede sendt" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "Forsendelsen har ingen tildelte lagervarer" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "Lagervarer er ikke blitt tildelt" -#: order/models.py:1589 +#: order/models.py:1605 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:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "Kan ikke tildele lagerbeholdning til en linje uten en del" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Tildelingsantall kan ikke overstige tilgjengelig lagerbeholdning" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "Antall må være 1 for serialisert lagervare" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "Salgsordre samsvarer ikke med forsendelse" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "Forsendelsen samsvarer ikke med salgsordre" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "Linje" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "Forsendelsesreferanse for salgsordre" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "Artikkel" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "Velg lagervare å tildele" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "Angi lagertildelingsmengde" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "Returordre-referanse" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "Firmaet delen skal returneres fra" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "Returordrestatus" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "Kun serialiserte artikler kan tilordnes en Returordre" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "Velg artikkel som skal returneres fra kunde" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "Mottatt Dato" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "Datoen denne returartikkelen ble mottatt" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "Utfall" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "Utfall for dette linjeelementet" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "Kostnad forbundet med retur eller reparasjon for dette linjeelementet" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "Ordren kan ikke kanselleres" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "Tillat ordre å lukkes med ufullstendige linjeelementer" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "Ordren har ufullstendige linjeelementer" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "Ordren er ikke åpen" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "Innkjøpsvaluta" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "Leverandørdel må angis" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "Innkjøpsordre må angis" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "Leverandør må samsvare med innkjøpsordre" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "Innkjøpsordre må samsvare med leverandør" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "Ordrelinje" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "Linjeelementet samsvarer ikke med innkjøpsordre" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "Velg lagerplassering for mottatte enheter" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "Angi batchkode for innkommende lagervarer" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "Angi serienummer for innkommende lagervarer" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Strekkode" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "Skannet strekkode" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "Strekkode allerede i bruk" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "Heltallsverdi må angis for sporbare deler" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "Linjeelementer må være oppgitt" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "Målplassering må angis" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "Angitte strekkodeverdier må være unike" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "Valuta for salgspris" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "Ingen forsendelsesopplysninger oppgitt" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "Linjeelement er ikke knyttet til denne ordren" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "Mengden må være positiv" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "Skriv inn serienummer for å tildele" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "Forsendelsen er allerede sendt" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "Forsendelsen er ikke knyttet til denne ordren" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "Ingen treff funnet for følgende serienummer" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "Følgende serienummer er allerede tildelt" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "Returordrelinje" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "Linjeelementet samsvarer ikke med returordre" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "Linjeelementet er allerede mottatt" -#: order/serializers.py:1596 +#: order/serializers.py:1603 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:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "Valuta for linje" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "Forfalt Innkjøpsordre" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "Innkjøpsordre {po} er nå forfalt" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "Forfalt Salgsordre" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "Salgsordre {so} er nå forfalt" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "Send ordre" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "Motta artikler" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "Motta Artikler" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "Merk ordren som fullført" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "Fullfør ordre" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" -msgstr "" +msgstr "Miniatyrbilde for leverandør" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "Ordrereferanse" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "Ordrebeskrivelse" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "Ordrestatus" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "Ingen leverandørinformasjon tilgjengelig" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "Fullførte elementer" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "Ufullstendig" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" -msgstr "" +msgstr "Utstedt" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" -msgstr "" +msgstr "Total kostnad" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "Total kostnad kunne ikke beregnes" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "Innkjøpsordre-QR-kode" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "Koble strekkode til Innkjøpsordre" @@ -5083,13 +5133,13 @@ msgstr "Duplikatvalg" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "Fjern rad" @@ -5150,9 +5200,9 @@ msgstr "Innkjøpsordreartikler" #: 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "Legg til linjeelement" @@ -5163,37 +5213,32 @@ msgstr "Legg til linjeelement" msgid "Receive Line Items" msgstr "Motta linjeelementer" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "Slett linjeelementer" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: order/templates/order/return_order_detail.html:45 +#: order/templates/order/sales_order_detail.html:41 msgid "Extra Lines" msgstr "Ekstralinjer" -#: order/templates/order/purchase_order_detail.html:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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 "Legg til Ekstralinje" -#: order/templates/order/purchase_order_detail.html:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "Mottatte artikler" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "Ordrenotater" #: order/templates/order/return_order_base.html:18 #: order/templates/order/sales_order_base.html:18 msgid "Customer logo thumbnail" -msgstr "" +msgstr "Miniatyrbilde for kundelogo" #: order/templates/order/return_order_base.html:61 msgid "Print return order report" @@ -5206,29 +5251,29 @@ msgstr "Skriv ut pakkeliste" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "Kundereferanse" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "Total kostnad" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "Returordre-QR-kode" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "Koble strekkode til Returordre" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "Send artikler" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "Fullfør Salgsordre" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "Salgsordren er ikke fullstendig tildelt" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: order/templates/order/sales_order_detail.html:99 #: order/templates/order/so_sidebar.html:11 msgid "Completed Shipments" msgstr "Fullførte forsendelser" -#: order/templates/order/sales_order_base.html:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "Salgsordre-QR-kode" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "Koble strekkode til Salgsordre" @@ -5272,18 +5317,17 @@ msgstr "Koble strekkode til Salgsordre" msgid "Sales Order Items" msgstr "Salgsordreartikler" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 msgid "Pending Shipments" msgstr "Ventende forsendelser" -#: order/templates/order/sales_order_detail.html:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "Handlinger" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "Ny forsendelse" @@ -5309,1107 +5353,1097 @@ 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:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" -msgstr "" +msgstr "Del-ID" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" -msgstr "" +msgstr "Delnavn" #: part/admin.py:35 part/tasks.py:290 msgid "Part Description" -msgstr "" +msgstr "Delbeskrivelse" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" -msgstr "" +msgstr "IPN" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" -msgstr "" +msgstr "Revisjon" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" -msgstr "" +msgstr "Nøkkelord" #: part/admin.py:42 part/admin.py:192 part/tasks.py:291 msgid "Category ID" -msgstr "" +msgstr "Kategori-ID" #: part/admin.py:43 part/admin.py:193 part/tasks.py:292 msgid "Category Name" -msgstr "" +msgstr "Kategorinavn" #: part/admin.py:44 part/admin.py:197 msgid "Default Location ID" -msgstr "" +msgstr "Standard posisjons-ID" #: part/admin.py:45 msgid "Default Supplier ID" -msgstr "" +msgstr "Standard leverandør ID" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "Variant av" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" -msgstr "" +msgstr "Minimum lagervare" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" -msgstr "" +msgstr "På lager" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" -msgstr "" +msgstr "I bestilling" #: part/admin.py:63 part/templates/part/part_sidebar.html:27 msgid "Used In" -msgstr "" - -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" +msgstr "Brukt i" #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" -msgstr "" +msgstr "Produseres" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" -msgstr "" +msgstr "Minimum kostnad" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" -msgstr "" +msgstr "Maksimum kostnad" #: part/admin.py:195 part/admin.py:270 stock/admin.py:42 stock/admin.py:116 msgid "Parent ID" -msgstr "" +msgstr "Overordnet ID" #: part/admin.py:196 part/admin.py:272 stock/admin.py:43 msgid "Parent Name" -msgstr "" +msgstr "Overordnet navn" #: part/admin.py:199 part/templates/part/category.html:87 #: part/templates/part/category.html:100 msgid "Category Path" -msgstr "" +msgstr "Sti til kategori" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Deler" #: part/admin.py:265 msgid "BOM Level" -msgstr "" +msgstr "BOM-nivå" #: part/admin.py:267 msgid "BOM Item ID" -msgstr "" +msgstr "BOM artikkel-ID" #: part/admin.py:271 msgid "Parent IPN" -msgstr "" +msgstr "Overodnet IPN" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" -msgstr "" +msgstr "Del IPN" #: part/admin.py:280 templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1010 msgid "Minimum Price" -msgstr "" +msgstr "Minstepris" #: part/admin.py:281 templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1018 msgid "Maximum Price" -msgstr "" +msgstr "Makspris" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" -msgstr "" +msgstr "Innkommende innkjøpsordre" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" -msgstr "" +msgstr "Utgående salgsordre" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" -msgstr "" +msgstr "Lagervarer produsert av bygg order" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" -msgstr "" +msgstr "Lagervarer som kreves for Bygg Order" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" -msgstr "" +msgstr "Gyldig" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" -msgstr "" +msgstr "Godkjenn hele Stykklisten" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" -msgstr "" +msgstr "Dette alternativet må være valgt" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" -msgstr "" +msgstr "Standard plassering" #: part/bom.py:176 templates/email/low_stock_notification.html:16 msgid "Total Stock" -msgstr "" +msgstr "Total lagerbeholdning" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" -msgstr "" +msgstr "Tilgjengelig lagerbeholdning" #: part/forms.py:48 msgid "Input quantity for price calculation" -msgstr "" +msgstr "Sett inn antall for prisberegning" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" -msgstr "" +msgstr "Delkategori" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" -msgstr "" +msgstr "Delkategorier" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" -msgstr "" +msgstr "Standardplassering for deler i denne kategorien" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" -msgstr "" +msgstr "Strukturell" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." -msgstr "" +msgstr "Deler kan ikke tilordnes direkte til en strukturell kategori, men kan tilordnes til underkategorier." -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" -msgstr "" +msgstr "Standard nøkkelord" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "Standard nøkkelord for deler i denne kategorien" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "Ikon" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "Ikon (valgfritt)" -#: part/models.py:163 +#: part/models.py:165 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:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "Ugyldig valg for overordnet del" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "Del '{p1}' er brukt i stykklisten til '{p2}' (rekursivt)" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "Internt delnummer må matche regex-mønster {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "Lagervare med dette serienummeret eksisterer allerede" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "Duplikat av internt delnummer er ikke tillatt i delinnstillinger" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "Del med dette Navnet, internt delnummer og Revisjon eksisterer allerede." -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "Deler kan ikke tilordnes strukturelle delkategorier!" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "Delnavn" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "Er Mal" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "Er delen en maldel?" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "Er delen en variant av en annen del?" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "Delbeskrivelse (valgfritt)" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "Del-nøkkelord for å øke synligheten i søkeresultater" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "Kategori" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "Delkategori" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "Internt delnummer" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "Delrevisjon eller versjonsnummer" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "Hvor er denne artikkelen vanligvis lagret?" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "Standard leverandør" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "Standard leverandørdel" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "Standard utløp" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "Utløpstid (i dager) for lagervarer av denne delen" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "Minimum tillatt lagernivå" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "Måleenheter for denne delen" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "Kan denne delen bygges fra andre deler?" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "Kan denne delen brukes til å bygge andre deler?" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "Har denne delen sporing av unike artikler?" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "Kan denne delen kjøpes inn fra eksterne leverandører?" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "Kan denne delen selges til kunder?" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "Er denne delen aktiv?" -#: part/models.py:1028 +#: part/models.py:1033 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:1030 +#: part/models.py:1035 msgid "BOM checksum" -msgstr "Kontrollsum for stykkliste" +msgstr "Kontrollsum for BOM" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" -msgstr "Lagret sjekkliste-kontrollsum" +msgstr "Lagret BOM-kontrollsum" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "Stykkliste sjekket av" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "Stykkliste sjekket dato" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "Opprettingsbruker" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "Bruker ansvarlig for denne delen" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "Siste lagertelling" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "Selg flere" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "Valuta som brukes til å bufre prisberegninger" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" -msgstr "Minimal stykklistekostnad" +msgstr "Minimal BOM-kostnad" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "Minste kostnad for komponentdeler" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" -msgstr "Maksimal stykklistekostnad" +msgstr "Maksimal BOM-kostnad" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "Maksimal kostnad for komponentdeler" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "Minimal innkjøpskostnad" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "Minimal historisk innkjøpskostnad" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "Maksimal innkjøpskostnad" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "Maksimal historisk innkjøpskostnad" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "Minimal intern pris" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "Minimal kostnad basert på interne prisbrudd" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "Maksimal intern pris" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "Maksimal kostnad basert på interne prisbrudd" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "Minimal leverandørpris" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "Minimumspris for del fra eksterne leverandører" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "Maksimal leverandørpris" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "Maksimalpris for del fra eksterne leverandører" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "Minimal Variantkostnad" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "Beregnet minimal kostnad for variantdeler" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "Maksimal Variantkostnad" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "Beregnet maksimal kostnad for variantdeler" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "Beregnet samlet minimal kostnad" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "Beregnet samlet maksimal kostnad" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "Minimal salgspris" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "Minimal salgspris basert på prisbrudd" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "Maksimal Salgspris" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "Maksimal salgspris basert på prisbrudd" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "Minimal Salgskostnad" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "Minimal historisk salgspris" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "Maksimal Salgskostnad" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "Maksimal historisk salgspris" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "Del for varetelling" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "Antall" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "Antall individuelle lagerenheter på tidspunkt for varetelling" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "Total tilgjengelig lagerbeholdning på tidspunkt for varetelling" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "Dato" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "Dato for utført lagertelling" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "Flere notater" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "Bruker som utførte denne lagertellingen" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "Minimal lagerkostnad" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "Estimert minimal kostnad for lagerbeholdning" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "Maksimal lagerkostnad" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "Estimert maksimal kostnad for lagerbeholdning" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "Rapport" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "Lagertellingsrapportfil (generert internt)" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "Antall deler" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "Antall deler dekket av varetellingen" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "Bruker som forespurte varetellingsrapporten" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "Testmaler kan bare bli opprettet for sporbare deler" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "Test med dette navnet finnes allerede for denne delen" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "Testnavn" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "Angi et navn for testen" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "Testbeskrivelse" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "Legg inn beskrivelse for denne testen" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "Påkrevd" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "Er det påkrevd at denne testen bestås?" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "Krever verdi" -#: part/models.py:3288 +#: part/models.py:3331 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:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "Krever vedlegg" -#: part/models.py:3294 +#: part/models.py:3337 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:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" -msgstr "" +msgstr "Avmerkingsboks parameter kan ikke ha enheter" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" -msgstr "" +msgstr "Avmerkingsboks parameter kan ikke har valg" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" -msgstr "" +msgstr "Valg må være unikt" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "Navn på parametermal må være unikt" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "Parameternavn" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" -msgstr "" +msgstr "Fysisk enheter for denne parameteren" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "Parameterbeskrivelse" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" -msgstr "" +msgstr "Avmerkingsboks" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" -msgstr "" +msgstr "Er dette parameteret en avmerkingsboks?" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" -msgstr "" +msgstr "Valg" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3505 -msgid "Invalid choice for parameter value" -msgstr "" +msgstr "Gyldige valg for denne parameteren (kommaseparert)" #: part/models.py:3549 +msgid "Invalid choice for parameter value" +msgstr "Ugyldig valg for parameterverdi" + +#: part/models.py:3593 msgid "Parent Part" msgstr "Overordnet del" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "Parametermal" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "Data" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "Parameterverdi" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "Standardverdi" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "Standard Parameterverdi" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "Del-ID eller delnavn" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "Unik del-ID-verdi" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "Delens interne delnummerverdi" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "Nivå" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" -msgstr "Stykklistenivå" +msgstr "BOM-nivå" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "BOM-artikkel" + +#: part/models.py:3812 msgid "Select parent part" msgstr "Velg overordnet del" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "Underordnet del" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" -msgstr "Velg del som skal brukes i stykkliste" +msgstr "Velg del som skal brukes i BOM" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" -msgstr "Stykklisteantall for denne stykklisteartikkelen" +msgstr "BOM-antall for denne BOM-artikkelen" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "Valgfritt" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" -msgstr "Denne stykklisteartikkelen er valgfri" +msgstr "Denne BOM-artikkelen er valgfri" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "Forbruksvare" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" -msgstr "Denne sykklisteartikkelen er forbruksvare (den spores ikke i produksjonsordrer)" +msgstr "Denne BOM-artikkelen er forbruksvare (den spores ikke i produksjonsordrer)" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Svinn" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Forventet produksjonssvinn (absolutt eller prosent)" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" -msgstr "Stykklisteartikkel-referanse" +msgstr "BOM-artikkelreferanse" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" -msgstr "Stykklisteartikkel-notater" +msgstr "BOM-artikkelnotater" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "Kontrollsum" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" -msgstr "Stykklistelinje kontrollsum" +msgstr "BOM-linje kontrollsum" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "Godkjent" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" -msgstr "Denne stykklisteartikkelen er godkjent" +msgstr "Denne BOM-artikkelen er godkjent" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "Arves" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" -msgstr "Denne stykklisteartikkelen er arvet fra stykkliste for variantdeler" +msgstr "Denne BOM-artikkelen er arvet fra stykkliste for variantdeler" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "Tillat Varianter" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" -msgstr "Lagervarer for variantdeler kan brukes for denne stykklisteartikkelen" +msgstr "Lagervarer for variantdeler kan brukes for denne BOM-artikkelen" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "Antall må være heltallsverdi for sporbare deler" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "Underordnet del må angis" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" -msgstr "Stykklisteartikkel-erstatning" +msgstr "BOM-artikkel erstatning" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "Erstatningsdel kan ikke være samme som hoveddelen" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" -msgstr "Overordnet stykklisteartikkel" +msgstr "Overordnet BOM-artikkel" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "Erstatningsdel" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "Del 1" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "Del 2" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "Velg relatert del" -#: part/models.py:4109 +#: part/models.py:4163 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:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "Duplikatforhold eksisterer allerede" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "Innkjøpsvaluta for lagervaren" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "Ingen deler valgt" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "Velg kategori" + +#: part/serializers.py:363 msgid "Original Part" msgstr "Original Del" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "Velg original del å duplisere" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "Kopier Bilde" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "Kopier bilde fra originaldel" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Kopier Stykkliste" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "Kopier stykkliste fra original del" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "Kopier parametere" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "Kopier parameterdata fra originaldel" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "Innledende lagerbeholdning" -#: part/serializers.py:327 +#: part/serializers.py:388 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:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "Innledende lagerplassering" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "Angi initiell lagerplasering for denne delen" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "Velg leverandør (eller la stå tom for å hoppe over)" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "Velg produsent (eller la stå tom for å hoppe over)" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "Produsentens delenummer" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "Valgt firma er ikke en gyldig leverandør" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "Valgt firma er ikke en gyldig produsent" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "Produsentdel som matcher dette MPN-et, finnes allerede" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "Leverandørdel som matcher denne SKU-en, finnes allerede" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "Dupliser del" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "Kopier innledende data fra en annen del" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Innledende lagerbeholdning" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" -msgstr "" +msgstr "Lag en del med innledende lagermengde" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" -msgstr "" +msgstr "Leverandøropplysninger" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" -msgstr "" +msgstr "Legg til innledende leverandørinformasjon for denne delen" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "Kopier kategoriparametre" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "Kopier parametermaler fra valgt delkategori" -#: part/serializers.py:842 +#: part/serializers.py:920 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:848 +#: part/serializers.py:926 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:854 +#: part/serializers.py:932 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:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "Generer rapport" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "Genererer rapport som inneholder beregnede lagerdata" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "Oppdater deler" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "Oppdater spesifiserte deler med beregnede lagerbeholdningsdata" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "Lagerbeholdningsfunksjonalitet er ikke aktivert" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "Oppdater" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "Oppdater priser for denne delen" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "Velg del å kopiere BOM fra" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "Fjern eksisterende data" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" -msgstr "Fjern eksisterende BOM produkter før kopiering" +msgstr "Fjern eksisterende BOM-artikler før kopiering" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "Inkluder arvet" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" -msgstr "Inkluder BOM elementer som er arvet fra mal-deler" +msgstr "Inkluder BOM-artikler som er arvet fra maldeler" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "Hopp over ugyldige rader" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "Aktiver dette alternativet for å hoppe over ugyldige rader" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "Kopier erstatningsdeler" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "Kopier erstatningsdeler når BOM elementer dupliseres" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" -msgstr "" +msgstr "Nullstill eksisterende BOM" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" -msgstr "" +msgstr "Fjern eksisterende BOM-artikler før opplastning" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" -msgstr "" +msgstr "Ingen del-kolonne angitt" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" -msgstr "" +msgstr "Flere matchende deler funnet" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" -msgstr "" +msgstr "Ingen matchende delere funnet" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" -msgstr "" +msgstr "Delen er ikke betegnet som en komponent" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" -msgstr "" +msgstr "Antall ikke oppgitt" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" -msgstr "" +msgstr "Ugyldig antall" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" -msgstr "" +msgstr "Minst en BOM-artikkel kreves" #: part/tasks.py:39 msgid "Low stock notification" @@ -6420,9 +6454,9 @@ msgstr "Varsel om lav lagerbeholdning" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "Tilgjengelig lagerbeholdning for {part.name} har falt under det konfigurerte minimumsnivået" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "Totalt Antall" @@ -6444,7 +6478,7 @@ msgstr "En ny lagertellingsrapport er tilgjengelig for nedlasting" #: part/templates/part/bom.html:6 msgid "You do not have permission to edit the BOM." -msgstr "Du har ikke rettigheter til å redigere stykklisten." +msgstr "Du har ikke rettigheter til å redigere BOMen." #: part/templates/part/bom.html:15 msgid "The BOM this part has been changed, and must be validated" @@ -6460,14 +6494,6 @@ msgstr "Stykklisten for %(part)s ble sist sjekket av %(checker)s den %( msgid "The BOM for %(part)s has not been validated." msgstr "Stykklisten for %(part)s er ikke godkjent." -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "Stykklistehandlinger" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "Slett Artikler" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "Utfør lagertelling for denne delkategorien" @@ -6504,7 +6530,7 @@ msgstr "Slett Kategori" msgid "Top level part category" msgstr "Toppnivå delkategori" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Underkategorier" @@ -6517,33 +6543,21 @@ msgstr "Deler (inkludert underkategorier)" msgid "Create new part" msgstr "Opprett ny del" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "Ny Del" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "Valg" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "Sett kategori" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "Sett Kategori" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "Delparametere" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "Opprett ny delkategori" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "Ny Kategori" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "Oppdater planleggingsdata" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "Oppdater" @@ -6591,7 +6605,7 @@ msgstr "Legg til lagertellingsinformasjon" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "Lagertelling" @@ -6603,241 +6617,241 @@ msgstr "Deltestmaler" msgid "Add Test Template" msgstr "Legg til Testmal" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "Salgsordretildelinger" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "Delnotater" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "Delvarianter" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "Opprett ny variant" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "Ny Variant" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "Legg til ny parameter" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "Relaterte Deler" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" -msgstr "" +msgstr "Legg til relatert" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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 "" +msgstr "Stykkliste (BOM)" -#: part/templates/part/detail.html:279 +#: part/templates/part/detail.html:260 msgid "Export actions" -msgstr "" +msgstr "Eksporthandlinger" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" -msgstr "" +msgstr "Eksporter BOM" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" -msgstr "" +msgstr "Skriv ut BOM-rapport" -#: part/templates/part/detail.html:295 +#: part/templates/part/detail.html:272 +msgid "BOM actions" +msgstr "BOM-handlinger" + +#: part/templates/part/detail.html:276 msgid "Upload BOM" -msgstr "" +msgstr "Last opp BOM" + +#: part/templates/part/detail.html:278 +msgid "Validate BOM" +msgstr "Godkjenn BOM" + +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 +msgid "Add BOM Item" +msgstr "Legg til BOM-artikkel" #: part/templates/part/detail.html:297 -msgid "Validate BOM" -msgstr "" - -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 -msgid "Add BOM Item" -msgstr "" - -#: part/templates/part/detail.html:316 msgid "Assemblies" -msgstr "" +msgstr "Sammenstillinger" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" -msgstr "" +msgstr "Deleleverandører" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" -msgstr "" +msgstr "Deleprodusenter" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" -msgstr "" +msgstr "Relatert Del" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" -msgstr "" +msgstr "Legg til relatert del" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" -msgstr "" +msgstr "Legg til Testresultatmal" #: part/templates/part/import_wizard/ajax_part_upload.html:29 #: part/templates/part/import_wizard/part_upload.html:14 msgid "Insufficient privileges." -msgstr "" +msgstr "Utilstrekkelige rettigheter." #: part/templates/part/import_wizard/part_upload.html:8 msgid "Return to Parts" -msgstr "" +msgstr "Tilbake til deler" #: part/templates/part/import_wizard/part_upload.html:13 msgid "Import Parts from File" -msgstr "" +msgstr "Importer deler fra fil" #: part/templates/part/import_wizard/part_upload.html:31 msgid "Requirements for part import" -msgstr "" +msgstr "Krav for import av deler" #: 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 "" +msgstr "Delens importfil må inneholde de nødvendige navngitte kolonnene som i " #: part/templates/part/import_wizard/part_upload.html:33 msgid "Part Import Template" -msgstr "" +msgstr "Importmal for del" #: part/templates/part/import_wizard/part_upload.html:89 msgid "Download Part Import Template" -msgstr "" +msgstr "Last ned importmal for del" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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 "" +msgstr "Format" #: part/templates/part/import_wizard/part_upload.html:93 -#: templates/js/translated/bom.js:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" -msgstr "" +msgstr "Velg filformat" #: part/templates/part/part_app_base.html:12 msgid "Part List" -msgstr "" +msgstr "Deleliste" #: part/templates/part/part_base.html:27 part/templates/part/part_base.html:31 msgid "You are subscribed to notifications for this part" -msgstr "" +msgstr "Du abonnerer på varsler for denne delen" #: part/templates/part/part_base.html:35 msgid "Subscribe to notifications for this part" -msgstr "" +msgstr "Abonner på varsler for denne delen" #: part/templates/part/part_base.html:54 #: stock/templates/stock/item_base.html:63 #: stock/templates/stock/location.html:73 msgid "Print Label" -msgstr "" +msgstr "Skriv ut etikett" #: part/templates/part/part_base.html:60 msgid "Show pricing information" -msgstr "" +msgstr "Vis prisinformasjon" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" -msgstr "" +msgstr "Lagerhandlinger" #: part/templates/part/part_base.html:72 msgid "Count part stock" -msgstr "" +msgstr "Tell delbeholdning" #: part/templates/part/part_base.html:78 msgid "Transfer part stock" -msgstr "" +msgstr "Overfør delbeholdning" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" -msgstr "" +msgstr "Delhandlinger" #: part/templates/part/part_base.html:96 msgid "Duplicate part" -msgstr "" +msgstr "Dupliser del" #: part/templates/part/part_base.html:99 msgid "Edit part" -msgstr "" +msgstr "Rediger del" #: part/templates/part/part_base.html:102 msgid "Delete part" -msgstr "" +msgstr "Slett del" #: part/templates/part/part_base.html:121 msgid "Part is a template part (variants can be made from this part)" -msgstr "" +msgstr "Delen er en maldel (varianter kan lages fra denne delen)" #: part/templates/part/part_base.html:125 msgid "Part can be assembled from other parts" -msgstr "" +msgstr "Delen kan sammenstilles fra andre deler" #: part/templates/part/part_base.html:129 msgid "Part can be used in assemblies" -msgstr "" +msgstr "Delen kan brukes i sammenstillinger" #: part/templates/part/part_base.html:133 msgid "Part stock is tracked by serial number" -msgstr "" +msgstr "Delelager spores via serienummer" #: part/templates/part/part_base.html:137 msgid "Part can be purchased from external suppliers" -msgstr "" +msgstr "Delen kan kjøpes fra eksterne leverandører" #: part/templates/part/part_base.html:141 msgid "Part can be sold to customers" -msgstr "" +msgstr "Delen kan selges til kunder" #: part/templates/part/part_base.html:147 msgid "Part is not active" -msgstr "" +msgstr "Delen er ikke aktiv" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" -msgstr "" +msgstr "Inaktiv" #: part/templates/part/part_base.html:155 msgid "Part is virtual (not a physical part)" -msgstr "" +msgstr "Delen er virtuall (ikke en fysisk del)" #: part/templates/part/part_base.html:165 #: part/templates/part/part_base.html:684 msgid "Show Part Details" -msgstr "" +msgstr "Vis detaljer for del" #: part/templates/part/part_base.html:220 #: stock/templates/stock/item_base.html:384 @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "Tildelt til Salgsordrer" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "Kan Produsere" @@ -6857,8 +6871,8 @@ msgstr "Kan Produsere" msgid "Minimum stock level" msgstr "Minimalt lagerbeholdningsnivå" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,9 +6895,9 @@ msgstr "Del-QR-kode" msgid "Link Barcode to Part" msgstr "Koble strekkode til Del" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" -msgstr "" +msgstr "del" #: part/templates/part/part_base.html:514 msgid "Calculate" @@ -6920,7 +6934,7 @@ msgstr "Ingen leverandørpriser tilgjengelig" #: part/templates/part/part_pricing.html:48 part/templates/part/prices.html:87 #: part/templates/part/prices.html:239 msgid "BOM Pricing" -msgstr "Stykklistepriser" +msgstr "BOM-prising" #: part/templates/part/part_pricing.html:66 msgid "Unit Purchase Price" @@ -6932,7 +6946,7 @@ msgstr "Total Innkjøpspris" #: part/templates/part/part_pricing.html:83 msgid "No BOM pricing available" -msgstr "Ingen Stykklisteprising tilgjengelig" +msgstr "Ingen BOM-prising tilgjengelig" #: part/templates/part/part_pricing.html:92 msgid "Internal Price" @@ -6955,9 +6969,9 @@ msgstr "Varianter" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Lagerbeholdning" @@ -6988,9 +7002,9 @@ msgstr "Oppdater delprising" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "Sist oppdatert" @@ -7053,12 +7067,12 @@ msgstr "Salgsprising" msgid "Add Sell Price Break" msgstr "Legg til salgsprisbrudd" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "Ingen lagerbeholdning" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "Lav lagerbeholdning" @@ -7077,73 +7091,69 @@ msgstr "Stykkliste opplastningskrav" #: part/templates/part/upload_bom.html:23 #: part/templates/part/upload_bom.html:90 msgid "Upload BOM File" -msgstr "" +msgstr "Last opp BOM-fil" #: part/templates/part/upload_bom.html:29 msgid "Submit BOM Data" -msgstr "" +msgstr "Send inn BOM-data" #: part/templates/part/upload_bom.html:37 msgid "Requirements for BOM upload" -msgstr "" +msgstr "Krav for BOM-opplastning" #: part/templates/part/upload_bom.html:39 msgid "The BOM file must contain the required named columns as provided in the " -msgstr "" +msgstr "BOM-filen må inneholde de nødvendige navngitte kolonnene som i " #: part/templates/part/upload_bom.html:39 msgid "BOM Upload Template" -msgstr "" +msgstr "BOM-opplastningsmalen" #: part/templates/part/upload_bom.html:40 msgid "Each part must already exist in the database" -msgstr "" +msgstr "Hver del må allerede finnes i databasen" #: part/templates/part/variant_part.html:9 msgid "Create new part variant" -msgstr "" +msgstr "Opprett ny variant av del" #: part/templates/part/variant_part.html:10 msgid "Create a new variant part from this template" -msgstr "" +msgstr "Opprett en ny variant del fra denne malen" #: part/templatetags/inventree_extras.py:189 msgid "Unknown database" -msgstr "" +msgstr "Ukjent database" #: part/templatetags/inventree_extras.py:241 #, python-brace-format msgid "{title} v{version}" -msgstr "" +msgstr "{title} v{version}" #: part/views.py:110 msgid "Match References" -msgstr "" +msgstr "Match referanser" #: part/views.py:238 #, python-brace-format msgid "Can't import part {name} because there is no category assigned" -msgstr "" +msgstr "Kan ikke importere del {name} fordi det ikke er oppgitt noen kategori" #: part/views.py:379 msgid "Select Part Image" -msgstr "" +msgstr "Vel bilde for del" #: part/views.py:405 msgid "Updated part image" -msgstr "" +msgstr "Oppdatert bilde for del" #: part/views.py:408 msgid "Part image not found" -msgstr "" +msgstr "Bilde for del ikke funnet" #: part/views.py:503 msgid "Part Pricing" -msgstr "" - -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" +msgstr "Del Prisering" #: plugin/base/action/api.py:27 msgid "No action specified" @@ -7155,7 +7165,7 @@ msgstr "Ingen samsvarende handling funnet" #: plugin/base/barcodes/api.py:54 plugin/base/barcodes/api.py:110 msgid "Missing barcode data" -msgstr "" +msgstr "Mangler strekkodedata" #: plugin/base/barcodes/api.py:80 msgid "No match found for barcode data" @@ -7166,110 +7176,106 @@ msgid "Match found for barcode data" msgstr "Treff funnet for strekkodedata" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" -msgstr "" +msgstr "Strekkode samsvarer med ekisterende element" #: plugin/base/barcodes/api.py:217 msgid "No match found for provided value" -msgstr "" +msgstr "Ingen samsvar funnet for angitt verdi" #: plugin/base/label/label.py:60 msgid "Label printing failed" -msgstr "" +msgstr "Utskrift av etikett mislyktes" #: plugin/builtin/barcodes/inventree_barcode.py:25 msgid "InvenTree Barcodes" -msgstr "" +msgstr "InvenTree-strekkoder" #: plugin/builtin/barcodes/inventree_barcode.py:26 msgid "Provides native support for barcodes" -msgstr "" +msgstr "Gir innebygd støtte for strekkoder" #: plugin/builtin/barcodes/inventree_barcode.py:28 #: plugin/builtin/integration/core_notifications.py:34 msgid "InvenTree contributors" -msgstr "" +msgstr "InvenTree-bidragsytere" #: plugin/builtin/integration/core_notifications.py:33 msgid "InvenTree Notifications" -msgstr "" +msgstr "InvenTree-varsler" #: plugin/builtin/integration/core_notifications.py:35 msgid "Integrated outgoing notification methods" -msgstr "" +msgstr "Integrerte utgående varslingsmetoder" #: plugin/builtin/integration/core_notifications.py:40 #: plugin/builtin/integration/core_notifications.py:81 msgid "Enable email notifications" -msgstr "" +msgstr "Aktiver epostvarsler" #: plugin/builtin/integration/core_notifications.py:41 #: plugin/builtin/integration/core_notifications.py:82 msgid "Allow sending of emails for event notifications" -msgstr "" +msgstr "Tillat sending av e-post for hendelsesvarsler" #: plugin/builtin/integration/core_notifications.py:46 msgid "Enable slack notifications" -msgstr "" +msgstr "Aktiver Slack-varsler" #: plugin/builtin/integration/core_notifications.py:47 msgid "Allow sending of slack channel messages for event notifications" -msgstr "" +msgstr "Tillat sending av Slack-kanalmeldinger for hendelsesvarsler" #: plugin/builtin/integration/core_notifications.py:52 msgid "Slack incoming webhook url" -msgstr "" +msgstr "Slack innkommende webhook" #: plugin/builtin/integration/core_notifications.py:53 msgid "URL that is used to send messages to a slack channel" -msgstr "" +msgstr "URL brukt til å sende meldinger til en Slack-kanal" #: plugin/builtin/integration/core_notifications.py:163 msgid "Open link" -msgstr "" - -#: plugin/models.py:27 -msgid "Plugin Configuration" -msgstr "" +msgstr "Åpne lenke" #: plugin/models.py:28 -msgid "Plugin Configurations" -msgstr "" +msgid "Plugin Configuration" +msgstr "Plugin konfigurasjon" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 -msgid "Key" -msgstr "" +#: plugin/models.py:29 +msgid "Plugin Configurations" +msgstr "Plugin konfigurasjoner" #: plugin/models.py:34 +msgid "Key" +msgstr "Nøkkel" + +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "Valginnstilling" msgid "A setting with multiple choices" msgstr "En innstilling med flere valg" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "Kilde-URL" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "Kilde for pakken - dette kan være et egendefinert register eller en VCS-sti" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "Pakkenavn" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "Navn på utvidelsespakke – kan også inneholde en versjonsindikator" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "Bekreft installasjon av utvidelse" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "Dette vil installere denne utvidelsen nå i gjeldende instans. Instansen vil gå i vedlikehold." -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "Installasjonen ble ikke bekreftet" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "Enten pakkenavn eller URL må angis" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "Ingen gyldige objekter angitt for mal" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "Malfil '{template}' mangler eller eksisterer ikke" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "Testrapport" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "Malnavn" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "Rapportmalfil" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "Beskrivelse av rapportmal" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "Rapportrevisjonsnummer (øker automatisk)" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "Mønster for å generere rapportfilnavn" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "Rapportmal er aktiver" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "Lagervare-søkefilter (kommaseparert liste over nøkkel=verdi-par)" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "Inkluder installerte tester" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "Inkluder testresultater for lagervarer installert i sammenstilt artikkel" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "Produksjonsfiltre" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "Produksjons-søkefilter (kommaseparert liste over nøkkel=verdi-par" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "Delfiltre" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "Del-søkefilter (kommaseparert liste over nøkkel=verdi-par" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "Innkjøpsordre-søkefilter" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "Salgsordre-søkefilter" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "Returordre-søkefilter" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "Snutt" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "Rapportsnuttfil" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "Filbeskrivelse for snutt" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "Ressurs" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "Rapportressursfil" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "Ressursfilbeskrivelse" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "Nødvendige materialer" @@ -7478,8 +7492,8 @@ msgstr "Leverandør ble slettet" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "Enhetspris" @@ -7491,26 +7505,30 @@ msgstr "Ekstra linjeelementer" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "Total" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Serienummer" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "Testrapport for lagervare" @@ -7520,41 +7538,41 @@ msgid "Test Results" msgstr "Testresultater" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "Test" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" -msgstr "" +msgstr "Resultat" #: report/templates/report/inventree_test_report_base.html:130 msgid "Pass" -msgstr "" +msgstr "Bestått" #: report/templates/report/inventree_test_report_base.html:132 msgid "Fail" -msgstr "" +msgstr "Mislykket" #: report/templates/report/inventree_test_report_base.html:139 msgid "No result (required)" -msgstr "" +msgstr "Ingen resultat (obligatorisk)" #: report/templates/report/inventree_test_report_base.html:141 msgid "No result" -msgstr "" +msgstr "Ingen resultat" #: report/templates/report/inventree_test_report_base.html:154 #: stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" -msgstr "" +msgstr "Installerte artikler" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" -msgstr "" +msgstr "Serienummer" #: stock/admin.py:39 stock/admin.py:108 msgid "Location ID" @@ -7564,39 +7582,39 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" #: stock/admin.py:100 msgid "Stock Item ID" -msgstr "" +msgstr "Lagervare-ID" #: stock/admin.py:107 msgid "Status Code" -msgstr "" +msgstr "Statuskode" #: stock/admin.py:110 msgid "Supplier Part ID" -msgstr "" +msgstr "Leverandørdel-ID" #: stock/admin.py:111 msgid "Supplier ID" -msgstr "" +msgstr "Leverandør-ID" #: stock/admin.py:112 msgid "Supplier Name" -msgstr "" +msgstr "Leverandørnavn" #: stock/admin.py:113 msgid "Customer ID" -msgstr "" +msgstr "Kunde-ID" #: stock/admin.py:114 stock/models.py:708 #: stock/templates/stock/item_base.html:355 msgid "Installed In" -msgstr "" +msgstr "Installert i" #: stock/admin.py:115 msgid "Build ID" @@ -7604,49 +7622,49 @@ msgstr "" #: stock/admin.py:117 msgid "Sales Order ID" -msgstr "" +msgstr "Salgsordre-ID" #: stock/admin.py:118 msgid "Purchase Order ID" -msgstr "" +msgstr "Innkjøpsordre-ID" #: stock/admin.py:125 msgid "Review Needed" -msgstr "" +msgstr "Gjennomgang kreves" #: stock/admin.py:126 msgid "Delete on Deplete" -msgstr "" +msgstr "Slett når oppbrukt" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" -msgstr "" +msgstr "Utløpsdato" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" -msgstr "" +msgstr "Antall kreves" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" -msgstr "" +msgstr "Gyldig del må oppgis" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" -msgstr "" +msgstr "Oppgitt leverandørdel eksisterer ikke" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" -msgstr "" +msgstr "Leverandørdelen har en pakkestørrelse definert, men flagget \"use_pack_size\" er ikke satt" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" -msgstr "" +msgstr "Serienumre kan ikke angis for en ikke-sporbar del" #: stock/models.py:54 stock/models.py:692 #: stock/templates/stock/location.html:17 @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7729,11 +7747,11 @@ msgstr "" #: stock/models.py:685 msgid "Select a matching supplier part for this stock item" -msgstr "" +msgstr "Velg en tilsvarende leverandørdel for denne lagervaren" #: stock/models.py:695 msgid "Where is this stock item located?" -msgstr "" +msgstr "Hvor er denne lagervaren plassert?" #: stock/models.py:702 msgid "Packaging this stock item is stored in" @@ -7741,11 +7759,11 @@ msgstr "" #: stock/models.py:711 msgid "Is this item installed in another item?" -msgstr "" +msgstr "Er denne artikkelen montert i en annen artikkel?" #: stock/models.py:727 msgid "Serial number for this item" -msgstr "" +msgstr "Serienummer for denne artikkelen" #: stock/models.py:741 msgid "Batch code for this stock item" @@ -7765,7 +7783,7 @@ msgstr "Produksjon for denne lagervaren" #: stock/models.py:761 stock/templates/stock/item_base.html:364 msgid "Consumed By" -msgstr "" +msgstr "Brukt av" #: stock/models.py:763 msgid "Build order which consumed this stock item" @@ -7803,233 +7821,242 @@ msgstr "Innkjøpspris per enhet på kjøpstidspunktet" msgid "Converted to part" msgstr "Konvertert til del" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "Delen er ikke angitt som sporbar" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "Antall må være heltall" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "Antall kan ikke overstige tilgjengelig lagerbeholdning ({n})" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "Serienumre må være en liste over tall" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "Antallet stemmer ikke overens med serienumrene" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "Seriernummer eksisterer allerede" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "Lagervare har blitt tildelt en salgsordre" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "Lagervare er montert i en annen artikkel" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "Lagervare inneholder andre artikler" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "Lagervare har blitt tildelt til en kunde" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "Lagervare er for tiden i produksjon" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "Serialisert lagerbeholdning kan ikke slås sammen" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "Duplisert lagervare" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "Lagervarer må referere til samme del" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "Lagervarer må referere til samme leverandørdel" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "Lagerstatuskoder må være like" -#: stock/models.py:1678 +#: stock/models.py:1679 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:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "Oppføringsnotater" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "Verdi må angis for denne testen" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "Vedlegg må lastes opp for denne testen" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "Testnavn" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "Testresultat" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "Testens verdi" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "Vedlegg til testresultat" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "Testnotater" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "Serienummeret er for høyt" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" -msgstr "" +msgstr "Innkjøpspris for denne lagervaren, per enhet eller forpakning" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "Angi antall lagervarer som skal serialiseres" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Antall kan ikke overstige tilgjengelig lagerbeholdning ({q})" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "Angi serienummer for nye artikler" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "Til Lagerplassering" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "Valgfritt notatfelt" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "Serienummer kan ikke tilordnes denne delen" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "Velg lagervare å montere" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "Lagervaren er utilgjengelig" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "Valgt del er ikke i stykklisten" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "Lagerplassering for den avinstallerte artikkelen" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "Legg til transaksjonsnotat (valgfritt)" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "Lagervaren er utilgjengelig" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "Valgt del er ikke i stykklisten" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "Lagerplassering for den avinstallerte artikkelen" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "Velg del å konvertere lagervare til" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "Valgt del er ikke et gyldig alternativ for konvertering" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "Lagerplassering for returnert artikkel" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "Velg lagervarer for å endre status" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "Ingen lagervarer valgt" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "Delen må være salgbar" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "Artikkelen er tildelt en salgsordre" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "Artikkelen er tildelt en produksjonsordre" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "Kunde å tilordne lagervarer" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" -msgstr "" +msgstr "Valgt firma er ikke en kunde" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" -msgstr "" +msgstr "En liste av lagervarer må oppgis" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" -msgstr "" +msgstr "Minst to lagervarer må oppgis" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" -msgstr "" +msgstr "Lagervare primærnøkkel verdi" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,79 +8064,81 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" -msgstr "" +msgstr "Testdata" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" -msgstr "" +msgstr "Testrapport" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" -msgstr "" +msgstr "Slett testdata" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" -msgstr "" +msgstr "Legg till Testdata" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" -msgstr "" +msgstr "Slett alle testresultater for denne lagervaren" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" -msgstr "" +msgstr "Legg til testresultat" #: stock/templates/stock/item_base.html:34 msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" -msgstr "" +msgstr "Utskriftshandlinger" #: stock/templates/stock/item_base.html:76 msgid "Stock adjustment actions" -msgstr "" +msgstr "Lagerjusteringshandlinger" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8148,11 +8178,11 @@ msgstr "" #: stock/templates/stock/item_base.html:116 msgid "Convert to variant" -msgstr "" +msgstr "Konvertert til variant" #: stock/templates/stock/item_base.html:119 msgid "Duplicate stock item" -msgstr "" +msgstr "Duplisert lagervare" #: stock/templates/stock/item_base.html:121 msgid "Edit stock item" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Produksjon" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "Tilgjengelig antall" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "Ingen plassering satt" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "Denne lagervaren utløp %(item.expiry_date)s" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "Utløpt" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "Denne lagervaren utløper %(item.expiry_date)s" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "Foreldet" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "Ingen lagertelling utført" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "Skann lagerbeholder til denne plasseringen" msgid "Scan In Container" msgstr "Skann inn beholder" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "Plasseringshandlinger" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "Rediger plassering" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "Slett plassering" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "Toppnivå-lagerplassering" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "Plasseringens Eier" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "Du er ikke i listen over eiere av denne plasseringen. Denne lagerplasseringen kan ikke redigeres." -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Underplasseringer" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "Opprett ny lagerplassering" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "Ny plassering" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "Skannet lagerbeholder til denne plasseringen" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "Lagerplassering-QR-kode" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "Koble strekkode til Lagerplassering" @@ -8452,177 +8491,177 @@ msgstr "" #: templates/InvenTree/index.html:7 msgid "Index" -msgstr "" +msgstr "Indeks" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" -msgstr "" +msgstr "Abonnerte deler" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" -msgstr "" +msgstr "Abonnerte kategorier" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" -msgstr "" +msgstr "Siste deler" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" -msgstr "" +msgstr "BOM venter godkjenning" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" -msgstr "" +msgstr "Nylig oppdatert" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" -msgstr "" +msgstr "Utløpt lagerbeholdning" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" -msgstr "" +msgstr "Forfalte Produksjonsordre" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" -msgstr "" +msgstr "Utestående innkjøpsordre" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" -msgstr "" +msgstr "Forfalte innkjøpsordre" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" -msgstr "" +msgstr "Utestående salgsordre" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" -msgstr "" +msgstr "Forfalte salgsordre" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" -msgstr "" +msgstr "InvenTree-nyheter" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" -msgstr "" +msgstr "Aktuelle nyheter" #: templates/InvenTree/notifications/history.html:9 msgid "Notification History" -msgstr "" +msgstr "Varsellogg" #: templates/InvenTree/notifications/history.html:13 #: templates/InvenTree/notifications/history.html:14 #: templates/InvenTree/notifications/notifications.html:75 msgid "Delete Notifications" -msgstr "" +msgstr "Slett varlser" #: templates/InvenTree/notifications/inbox.html:9 msgid "Pending Notifications" -msgstr "" +msgstr "Ventende varsler" #: templates/InvenTree/notifications/inbox.html:13 #: templates/InvenTree/notifications/inbox.html:14 msgid "Mark all as read" -msgstr "" +msgstr "Merk alle som lest" #: templates/InvenTree/notifications/notifications.html:10 #: templates/InvenTree/notifications/sidebar.html:5 #: templates/InvenTree/settings/sidebar.html:17 #: templates/InvenTree/settings/sidebar.html:35 templates/notifications.html:5 msgid "Notifications" -msgstr "" +msgstr "Varlser" #: templates/InvenTree/notifications/notifications.html:38 msgid "No unread notifications found" -msgstr "" +msgstr "Ingen uleste varsler funnet" #: templates/InvenTree/notifications/notifications.html:58 msgid "No notification history found" -msgstr "" +msgstr "Ingen varsellogg funnet" #: templates/InvenTree/notifications/notifications.html:65 msgid "Delete all read notifications" -msgstr "" +msgstr "Slett alle leste varsler" #: templates/InvenTree/notifications/notifications.html:89 #: templates/js/translated/notification.js:84 msgid "Delete Notification" -msgstr "" +msgstr "Slett varsel" #: templates/InvenTree/notifications/sidebar.html:8 msgid "Inbox" -msgstr "" +msgstr "Innboks" #: templates/InvenTree/notifications/sidebar.html:10 msgid "History" -msgstr "" +msgstr "Logg" #: templates/InvenTree/search.html:8 msgid "Search Results" -msgstr "" +msgstr "Søkeresultater" #: templates/InvenTree/settings/barcode.html:8 msgid "Barcode Settings" -msgstr "" +msgstr "Strekkodeinnstillinger" #: templates/InvenTree/settings/build.html:8 msgid "Build Order Settings" -msgstr "" +msgstr "Innstillinger for produksjonsordre" #: templates/InvenTree/settings/category.html:7 msgid "Category Settings" -msgstr "" +msgstr "Kategoriinnstillinger" #: templates/InvenTree/settings/global.html:8 msgid "Server Settings" -msgstr "" +msgstr "Serverinnstillinger" #: templates/InvenTree/settings/label.html:8 #: templates/InvenTree/settings/user_labels.html:9 msgid "Label Settings" -msgstr "" +msgstr "Etikettinnstillinger" #: templates/InvenTree/settings/login.html:8 msgid "Login Settings" -msgstr "" +msgstr "Innstillinger for innlogging" #: templates/InvenTree/settings/login.html:15 msgid "Outgoing email has not been configured. Some login and sign-up features may not work correctly!" -msgstr "" +msgstr "Utgående e-post har ikke blitt kanskje. Noen innloggings- og registreringsfunksjoner fungerer kanskje ikke korrekt!" #: templates/InvenTree/settings/login.html:25 templates/account/signup.html:5 #: templates/socialaccount/signup.html:5 msgid "Signup" -msgstr "" +msgstr "Registrering" #: templates/InvenTree/settings/login.html:34 msgid "Single Sign On" -msgstr "" +msgstr "Single Sign On" #: templates/InvenTree/settings/mixins/settings.html:5 #: templates/InvenTree/settings/settings.html:12 templates/navbar.html:144 msgid "Settings" -msgstr "" +msgstr "Innstillinger" #: templates/InvenTree/settings/mixins/urls.html:5 msgid "URLs" -msgstr "" +msgstr "URLer" #: templates/InvenTree/settings/mixins/urls.html:8 #, python-format @@ -8654,7 +8693,7 @@ msgstr "Import av Del" msgid "Import Part" msgstr "Importér Del" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "Mal for Delparameter" @@ -8675,63 +8714,42 @@ msgstr "Innstillinger for Utvidelser" msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." msgstr "Endring av innstillingene nedenfor krever at du umiddelbart starter serveren på nytt. Ikke endre under aktiv bruk." -#: templates/InvenTree/settings/plugin.html:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "Utvidelser" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "Installer Utvidelse" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "Eksterne utvidelser er ikke aktivert for denne InvenTree-installasjonen" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "Versjon" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "Aktive utvidelser" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "Inaktive utvidelser" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "Utvidelse feilstack" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "Stadium" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "Melding" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "Innebygd" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "Eksempel" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "Informasjon om utvidelse" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "Versjon" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "ingen versjonsinformasjon angitt" @@ -8764,6 +8782,11 @@ msgstr "Denne utvidelsen ble funnet på en lokal serversti" msgid "Installation path" msgstr "Installasjonssti" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "Innebygd" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "Dette er en innebygd utvidelse som ikke kan deaktiveres" @@ -8786,14 +8809,6 @@ msgstr "Commit-hash" msgid "Commit Message" msgstr "Commit-melding" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "Signaturstatus" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "Signaturnøkkel" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "Innstillinger for Innkjøpsordre" @@ -8844,57 +8859,57 @@ msgstr "Innstillinger for Returordre" #: templates/InvenTree/settings/setting.html:31 msgid "No value set" -msgstr "" +msgstr "Ingen verdi satt" #: templates/InvenTree/settings/setting.html:44 msgid "Edit setting" -msgstr "" +msgstr "Rediger innstilling" #: templates/InvenTree/settings/settings_js.html:58 msgid "Edit Plugin Setting" -msgstr "" +msgstr "Rediger utvidelsesinnstillinger" #: templates/InvenTree/settings/settings_js.html:60 msgid "Edit Notification Setting" -msgstr "" +msgstr "Rediger varslingsinnstilling" #: templates/InvenTree/settings/settings_js.html:63 msgid "Edit Global Setting" -msgstr "" +msgstr "Rediger global innstilling" #: templates/InvenTree/settings/settings_js.html:65 msgid "Edit User Setting" -msgstr "" +msgstr "Rediger brukerinnstilling" #: templates/InvenTree/settings/settings_staff_js.html:49 msgid "Rate" -msgstr "" +msgstr "Vurder" #: templates/InvenTree/settings/settings_staff_js.html:64 msgid "No project codes found" -msgstr "" +msgstr "Ingen prosjektkoder funnet" #: templates/InvenTree/settings/settings_staff_js.html:80 #: templates/InvenTree/settings/settings_staff_js.html:94 msgid "Edit Project Code" -msgstr "" +msgstr "Rediger prosjektkode" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/InvenTree/settings/settings_staff_js.html:107 msgid "Delete Project Code" -msgstr "" +msgstr "Slett prosjektkode" #: templates/InvenTree/settings/settings_staff_js.html:189 msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "Oppdatert" msgid "Update Available" msgstr "Oppdatering er tilgjengelig" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "InvenTree-dokumentasjon" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "API-versjon" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "Python-versjon" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "Django-versjon" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "Vis koden på GitHub" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9271,12 +9291,12 @@ msgstr "" #: templates/account/email_confirm.html:6 #: templates/account/email_confirm.html:9 msgid "Confirm Email Address" -msgstr "" +msgstr "Bekreft e-postadresse" #: templates/account/email_confirm.html:15 #, python-format msgid "Please confirm that %(email)s is an email address for user %(user_display)s." -msgstr "" +msgstr "Vennligst bekreft at %(email)s er ne e-postadresse for bruker %(user_display)s." #: templates/account/email_confirm.html:21 templates/js/translated/forms.js:726 msgid "Confirm" @@ -9285,182 +9305,174 @@ msgstr "Bekreft" #: 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 "" +msgstr "Denne e-postbekreftelseslenken er utgått eller ugyldig. Vennligst send en ny bekreftelsesforespørsel." #: templates/account/login.html:6 templates/account/login.html:17 #: templates/account/login.html:38 templates/socialaccount/login.html:5 msgid "Sign In" -msgstr "" +msgstr "Logg inn" #: templates/account/login.html:21 msgid "Not a member?" -msgstr "" +msgstr "Ikke medlem?" #: templates/account/login.html:23 templates/account/signup.html:11 #: templates/account/signup.html:22 templates/socialaccount/signup.html:8 #: templates/socialaccount/signup.html:20 msgid "Sign Up" -msgstr "" +msgstr "Registrer deg" #: templates/account/login.html:45 msgid "Forgot Password?" -msgstr "" +msgstr "Glemt passord?" #: templates/account/login.html:53 msgid "or log in with" -msgstr "" +msgstr "eller logg på med" #: templates/account/logout.html:5 templates/account/logout.html:8 #: templates/account/logout.html:20 msgid "Sign Out" -msgstr "" +msgstr "Logg ut" #: templates/account/logout.html:10 msgid "Are you sure you want to sign out?" -msgstr "" +msgstr "Er du sikker på at du vil logge ut?" #: templates/account/logout.html:27 templates/allauth_2fa/backup_tokens.html:35 #: templates/allauth_2fa/remove.html:24 templates/allauth_2fa/setup.html:44 msgid "Return to Site" -msgstr "" +msgstr "Gå tilbake til siden" #: templates/account/password_reset.html:5 #: templates/account/password_reset.html:12 msgid "Password Reset" -msgstr "" +msgstr "Tilbakestill passord" #: 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 "" +msgstr "Glemt passord? Skriv inn e-postadressen din under, så sender vi deg en e-post slik at du kan tilbakestille den." #: templates/account/password_reset.html:23 msgid "Reset My Password" -msgstr "" +msgstr "Tilbakestill passord" #: templates/account/password_reset.html:27 templates/account/signup.html:37 msgid "This function is currently disabled. Please contact an administrator." -msgstr "" +msgstr "Denne funksjonen er deaktivert. Vennligst kontakt en administrator." #: templates/account/password_reset_from_key.html:7 msgid "Bad Token" -msgstr "" +msgstr "Ugyldig token" #: 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 "" +msgstr "Link for å tilbakestille passordet var ugyldig, muligens fordi det allerede er brukt. Be om en ny tilbakestilling." #: templates/account/password_reset_from_key.html:18 msgid "Change password" -msgstr "" +msgstr "Endre passord" #: templates/account/password_reset_from_key.html:22 msgid "Your password is now changed." -msgstr "" +msgstr "Passordet ditt er nå endret." #: templates/account/signup.html:13 #, python-format msgid "Already have an account? Then please sign in." -msgstr "" +msgstr "Har du allerede en konto? Vennligst logg inn." #: templates/account/signup.html:28 msgid "Use a SSO-provider for signup" -msgstr "" +msgstr "Bruk en SSO-leverandør for registrering" #: templates/account/signup_closed.html:5 #: templates/account/signup_closed.html:8 msgid "Sign Up Closed" -msgstr "" +msgstr "Registreringen er lukket" #: templates/account/signup_closed.html:10 msgid "Sign up is currently closed." -msgstr "" +msgstr "Registrering er for tiden stengt." #: templates/account/signup_closed.html:15 #: templates/socialaccount/authentication_error.html:19 #: templates/socialaccount/login.html:38 templates/socialaccount/signup.html:27 msgid "Return to login page" -msgstr "" +msgstr "Tilbake til innloggingsside" #: templates/admin_button.html:8 msgid "View in administration panel" -msgstr "" +msgstr "Vis i administrasjonspanel" #: templates/allauth_2fa/authenticate.html:5 msgid "Two-Factor Authentication" -msgstr "" +msgstr "Tofaktor-autentisering" #: templates/allauth_2fa/authenticate.html:13 msgid "Authenticate" -msgstr "" +msgstr "Autentisér" #: templates/allauth_2fa/backup_tokens.html:6 msgid "Two-Factor Authentication Backup Tokens" -msgstr "" +msgstr "Tofaktor-autentisering Backup-symboler" #: 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 "" +msgstr "Backup-symboler er generert, men ikke avslørt her av sikkerhetshensyn. Trykk på knappen under for å generere nye." #: templates/allauth_2fa/backup_tokens.html:20 msgid "No backup tokens are available. Press the button below to generate some." -msgstr "" +msgstr "Ingen backup-symboler er tilgjengelig. Trykk på knappen under for å generere noen." #: templates/allauth_2fa/backup_tokens.html:28 msgid "Generate Tokens" -msgstr "" +msgstr "Generer Symboler" #: templates/allauth_2fa/remove.html:6 msgid "Disable Two-Factor Authentication" -msgstr "" +msgstr "Deaktiver Tofaktor-autentisering" #: templates/allauth_2fa/remove.html:9 msgid "Are you sure?" -msgstr "" +msgstr "Er du sikker?" #: templates/allauth_2fa/remove.html:17 msgid "Disable 2FA" -msgstr "" +msgstr "Deaktiver 2FA" #: templates/allauth_2fa/setup.html:6 msgid "Setup Two-Factor Authentication" -msgstr "" +msgstr "Sett opp to-faktor autentisering" #: templates/allauth_2fa/setup.html:10 msgid "Step 1" -msgstr "" +msgstr "Trinn 1" #: templates/allauth_2fa/setup.html:14 msgid "Scan the QR code below with a token generator of your choice (for instance Google Authenticator)." -msgstr "" +msgstr "Skann QR-koden nedenfor med en symbolgenerator du velger (for eksempel Google Authenticator)." #: templates/allauth_2fa/setup.html:23 msgid "Step 2" -msgstr "" +msgstr "Trinn 2" #: templates/allauth_2fa/setup.html:27 msgid "Input a token generated by the app:" -msgstr "" +msgstr "Angi et symbol generert av appen:" #: templates/allauth_2fa/setup.html:37 msgid "Verify" -msgstr "" +msgstr "Bekreft" #: templates/attachment_button.html:4 templates/js/translated/attachment.js:70 msgid "Add Link" -msgstr "" +msgstr "Legg til lenke" #: templates/attachment_button.html:7 templates/js/translated/attachment.js:48 msgid "Add Attachment" -msgstr "" - -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" +msgstr "Legg til vedlegg" #: templates/barcode_data.html:5 msgid "Barcode Identifier" @@ -9506,7 +9518,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:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "Antall som kreves" @@ -9520,7 +9532,7 @@ 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:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "Minimum antall" @@ -9592,23 +9604,35 @@ msgstr "Feilkode" msgid "All selected attachments will be deleted" msgstr "Alle valgte vedlegg vil bli slettet" -#: templates/js/translated/attachment.js:255 +#: templates/js/translated/attachment.js:129 +msgid "Delete Attachments" +msgstr "Slett vedlegg" + +#: templates/js/translated/attachment.js:205 +msgid "Delete attachments" +msgstr "Slett vedlegg" + +#: templates/js/translated/attachment.js:253 +msgid "Attachment actions" +msgstr "Vedleggshandlinger" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "Ingen vedlegg funnet" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "Rediger vedlegg" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "Opplastet dato" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "Rediger vedlegg" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "Slett vedlegg" @@ -9665,7 +9689,7 @@ msgstr "Dette vil fjerne lenken til den tilknyttede strekkoden" msgid "Unlink" msgstr "Koble fra" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "Fjern lagervare" @@ -9680,15 +9704,15 @@ msgstr "Skann lagervarens strekkode for å sjekke inn på denne plasseringen" #: templates/js/translated/barcode.js:598 #: templates/js/translated/barcode.js:795 msgid "Check In" -msgstr "" +msgstr "Sjekk inn" #: templates/js/translated/barcode.js:630 msgid "No barcode provided" -msgstr "" +msgstr "Ingen strekkode angitt" #: templates/js/translated/barcode.js:670 msgid "Stock Item already scanned" -msgstr "" +msgstr "Lagervaren er allerede skannet" #: templates/js/translated/barcode.js:674 msgid "Stock Item already in this location" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" -msgstr "" +msgstr "Opprett BOM-artikkel" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" -msgstr "" +msgstr "Vis raddata" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" -msgstr "" +msgstr "Raddata" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" -msgstr "" +msgstr "Lukk" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" -msgstr "" - -#: templates/js/translated/bom.js:350 -msgid "Multi Level BOM" -msgstr "" +msgstr "Lat ned BOM-mal" #: templates/js/translated/bom.js:351 -msgid "Include BOM data for subassemblies" -msgstr "" +msgid "Multi Level BOM" +msgstr "Flernivå-BOM" -#: templates/js/translated/bom.js:356 -msgid "Levels" -msgstr "" +#: templates/js/translated/bom.js:352 +msgid "Include BOM data for subassemblies" +msgstr "Inkluder BOM-data for undersammenstillinger" #: templates/js/translated/bom.js:357 -msgid "Select maximum number of BOM levels to export (0 = all levels)" -msgstr "" +msgid "Levels" +msgstr "Nivåer" -#: templates/js/translated/bom.js:364 -msgid "Include Alternative Parts" -msgstr "" +#: templates/js/translated/bom.js:358 +msgid "Select maximum number of BOM levels to export (0 = all levels)" +msgstr "Velg maksimalt antall BOM-nivåer å eksportere (0 = alle nivåer)" #: templates/js/translated/bom.js:365 -msgid "Include alternative parts in exported BOM" -msgstr "" +msgid "Include Alternative Parts" +msgstr "Inkluder alternative deler" -#: templates/js/translated/bom.js:370 -msgid "Include Parameter Data" -msgstr "" +#: templates/js/translated/bom.js:366 +msgid "Include alternative parts in exported BOM" +msgstr "Inkluder alternative deler i eksportert BOM" #: templates/js/translated/bom.js:371 -msgid "Include part parameter data in exported BOM" -msgstr "" +msgid "Include Parameter Data" +msgstr "Inkluder parameterdata" -#: templates/js/translated/bom.js:376 -msgid "Include Stock Data" -msgstr "" +#: templates/js/translated/bom.js:372 +msgid "Include part parameter data in exported BOM" +msgstr "Inkluder delparameterdata i eksportert BOM" #: templates/js/translated/bom.js:377 -msgid "Include part stock data in exported BOM" -msgstr "" +msgid "Include Stock Data" +msgstr "Inkluder lagerbeholdningsdata" -#: templates/js/translated/bom.js:382 -msgid "Include Manufacturer Data" -msgstr "" +#: templates/js/translated/bom.js:378 +msgid "Include part stock data in exported BOM" +msgstr "Inkluder delbeholdningsdata i eksportert BOM" #: templates/js/translated/bom.js:383 -msgid "Include part manufacturer data in exported BOM" -msgstr "" +msgid "Include Manufacturer Data" +msgstr "Inkluder Produsentdata" -#: templates/js/translated/bom.js:388 -msgid "Include Supplier Data" -msgstr "" +#: templates/js/translated/bom.js:384 +msgid "Include part manufacturer data in exported BOM" +msgstr "Inkluder delprodusentdata i eksportert BOM" #: templates/js/translated/bom.js:389 -msgid "Include part supplier data in exported BOM" -msgstr "" +msgid "Include Supplier Data" +msgstr "Inkluder Leverandørdata" -#: templates/js/translated/bom.js:394 -msgid "Include Pricing Data" -msgstr "" +#: templates/js/translated/bom.js:390 +msgid "Include part supplier data in exported BOM" +msgstr "Inkluder delleverandørdata i eksportert BOM" #: templates/js/translated/bom.js:395 +msgid "Include Pricing Data" +msgstr "Inkluder prisdata" + +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" -msgstr "" +msgstr "Inkluder delprisdata i eksportert BOM" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" -msgstr "" +msgstr "Fjern erstatningsdel" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" -msgstr "" +msgstr "Velg og legg til en ny erstatningsdel ved hjelp av inntastingen under" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" -msgstr "" +msgstr "Er du sikker på at du vil fjerne koblingen til denne erstatningsdelen?" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" -msgstr "" - -#: templates/js/translated/bom.js:700 -msgid "Add Substitute" -msgstr "" +msgstr "Fjern Erstatningsdel" #: templates/js/translated/bom.js:701 +msgid "Add Substitute" +msgstr "Legg til Erstatning" + +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" -msgstr "" +msgstr "Rediger BOM-artikkelerstatninger" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" -msgstr "" +msgstr "Alle valgte BOM-artikler vil bli slettet" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" -msgstr "" +msgstr "Slett valgte BOM-artikler?" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "Slett artikler" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" -msgstr "" +msgstr "Last inn BOM for undersammenstillinger" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" -msgstr "" +msgstr "Erstatninger tilgjengelig" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" -msgstr "" +msgstr "Variantbeholdning tillatt" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" -msgstr "" +msgstr "Erstatninger" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" -msgstr "" +msgstr "BOM-prising er komplett" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" -msgstr "" +msgstr "BOM-prising er ufullstendig" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" -msgstr "" +msgstr "Ingen prising tilgjengelig" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" -msgstr "" +msgstr "Ingen lagerbeholdning tilgjengelig" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" -msgstr "" +msgstr "Inkluderer variant- og erstatningsbeholdning" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" -msgstr "" +msgstr "Inkluderer variantbeholdning" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "Inkluderer erstatningsbeholdning" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "Forbruksvare" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" -msgstr "Godkjenn stykklisteartikkel" +msgstr "Godkjenn BOM-artikkel" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "Denne linjen er godkjent" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "Rediger erstatningsdeler" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" -msgstr "Rediger stykklisteartikkel" - -#: templates/js/translated/bom.js:1252 -msgid "Delete BOM Item" -msgstr "Slett stykklisteartikkel" +msgstr "Rediger BOM-artikkel" #: templates/js/translated/bom.js:1272 +msgid "Delete BOM Item" +msgstr "Slett BOM-artikkel" + +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "Vis stykkliste" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" -msgstr "Ingen stykklisteartikler funnet" +msgstr "Ingen BOM-artikler funnet" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "Påkrevd del" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "Arvet fra overordnet stykkliste" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "Rediger produksjonsordre" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "Opprett Produksjonsordre" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "Kanseller Produksjonsordre" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "Er du sikker du vil kansellere produksjonen?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "Lagervarer har blitt tildelt til denne Produksjonsordren" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "Det er fortsatt ufullstendige artikler i denne produksjonsordren" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "Produksjonsordren er klar til å fullføres" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "Denne produksjonsordren kan ikke fullføres da det fortsatt er ufullstendige artikler" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "Produksjonsordren er ufullstendig" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "Fullføre Produksjonsordre" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "Neste tilgjengelige serienummer" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "Siste serienummer" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "Stykklisten inneholder sporbare deler" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "Produksjonsartikler må genereres individuelt" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "Sporbare varer kan ha serienummer angitt" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "Angi serienumre for å generere flere single produksjonsartikler" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "Opprett Produksjonsartikkel" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "Tildel lagervarer til denne produksjonsartikkelen" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" -msgstr "Fjern tildelt lagerbeholdning fra produksjonsartikkel" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" +msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "Fullfør Produksjonsartikkel" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "Slett Produksjonsartikkel" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" -msgstr "Er du sikker på at du ønsker å fjerne tildelte lagervarer fra denne produksjonen?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" +msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" -msgstr "Fjern tildelte lagervarer" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" +msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "Velg Produksjonsartikler" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "Minst en produksjonsartikkel må velges" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "Artikkel" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "Fullfør Produksjonsartikler" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "Slett Produksjonsartikler" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "Ingen tildelinger til produksjonsordre funnet" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "Plassering ikke angitt" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "Fullfør artikler" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "Slett resultat" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "Ingen aktive produksjonsartikler funnet" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" -msgstr "Tildelt lagerbeholdning" - -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" -msgstr "Ingen sporede stykklisteartikler for denne produksjonen" - -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "Fullførte Tester" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "Ingen påkrevde tester for denne produksjonen" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "Rediger lagertildeling" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "Slett lagertildeling" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "Rediger tildeling" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "Slett tildeling" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "Erstatningsdeler tilgjengelig" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "Antall per" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" +msgstr "Rediger lagertildeling" + +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "Slett lagertildeling" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "Rediger tildeling" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "Slett tildeling" + +#: templates/js/translated/build.js:2377 +msgid "build line" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "Sporbar del" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "Utilstrekkelig lagerbeholdning" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "Tilstrekkelig lagerbeholdning" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "Forbruksvare" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" -msgstr "" +msgstr "Legg til produsent" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" -msgstr "" +msgstr "Legg til produsentdel" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" -msgstr "" +msgstr "Rediger produsentdel" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" -msgstr "" +msgstr "Legg til leverandør" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" -msgstr "" +msgstr "Legg til leverandørdel" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "Alle valgte leverandørdeler vil slettes" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" -msgstr "" +msgstr "Slett Leverandørdeler" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" -msgstr "" +msgstr "Leverte deler" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" -msgstr "" +msgstr "Produserte deler" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" -msgstr "" +msgstr "Legg til ny kontakt" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" -msgstr "" +msgstr "Rediger kontakt" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" -msgstr "" +msgstr "Alle valgte kontakter vil bli slettet" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" -msgstr "" +msgstr "Rolle" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" -msgstr "" +msgstr "Slett kontakter" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" -msgstr "" +msgstr "Ingen kontakter funnet" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" -msgstr "" +msgstr "Telefonnummer" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" -msgstr "" +msgstr "E-postadresse" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" -msgstr "" +msgstr "Slett kontakt" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "Opprett ny adresse" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "Rediger adresse" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "Alle valgte adresser vil bli slettet" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "Slett adresser" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "Ingen adresser funnet" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "Poststed" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "Delstat/provins" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "Notater for bud" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "Interne notater" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "Slett adresse" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" -msgstr "" +msgstr "Alle valgte produsentdeler vil bli slettet" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" -msgstr "" +msgstr "Slett produsentdeler" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" -msgstr "" +msgstr "Alle valgte parametere vil bli slettet" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" -msgstr "" +msgstr "Slett parametere" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Bestill deler" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "Slett produsentdeler" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "Handlinger for produsentdeler" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "Ingen produsentdeler funnet" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "Maldel" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "Sammenstilt del" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "Ingen parametere funnet" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "Rediger parameter" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "Slett parameter" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "Rediger Parameter" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "Slett Parameter" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "Slett leverandørdeler" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "Ingen leverandørdeler funnet" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "Tilgjengelighet" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "Rediger leverandørdel" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "Slett leverandørdel" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "Slett Prisbrudd" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "Rediger Prisbrudd" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "Ingen informasjon om prisbrudd funnet" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "Sist oppdatert" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "Rediger prisbrudd" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "Slett prisbrudd" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "sant" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "usant" @@ -10467,31 +10585,31 @@ msgstr "usant" msgid "Select filter" msgstr "Velg filter" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "Skriv ut etiketter" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "Skriv ut rapporter" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "Last ned tabelldata" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "Last tabelldata på nytt" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "Legg til nytt filter" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "Fjern alle filtre" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "Opprett filter" @@ -10516,6 +10634,12 @@ msgstr "Slett-operasjon ikke tillatt" msgid "View operation not allowed" msgstr "Vis-operasjon ikke tillatt" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Slett" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "Holde dette skjemaet åpent" @@ -10533,23 +10657,23 @@ msgstr "Skjemafeil eksisterer" msgid "No results found" msgstr "Ingen resultater funnet" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "Søker" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "Tøm inndata" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "Filkolonne" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "Feltnavn" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "Velg Kolonner" @@ -10563,10 +10687,18 @@ msgstr "NEI" #: templates/js/translated/helpers.js:93 msgid "True" -msgstr "" +msgstr "Sant" #: templates/js/translated/helpers.js:94 msgid "False" +msgstr "Usant" + +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" msgstr "" #: templates/js/translated/label.js:58 @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,377 +10867,417 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" -msgstr "" +msgstr "Alternativer for delopprettelse" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" -msgstr "" +msgstr "Alternativer for delduplisering" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" -msgstr "" +msgstr "Legg til kategori" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" -msgstr "" +msgstr "Overordnet del-kategori" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" -msgstr "" +msgstr "Ikon (valgfritt) - Utforsk alle tilgjengelige ikoner på" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" -msgstr "" +msgstr "Opprett del-kategori" + +#: templates/js/translated/part.js:332 +msgid "Create new category after this one" +msgstr "Opprett ny kategori etter denne" #: templates/js/translated/part.js:333 -msgid "Create new category after this one" -msgstr "" - -#: templates/js/translated/part.js:334 msgid "Part category created" -msgstr "" +msgstr "Del-kategori opprettet" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" -msgstr "" +msgstr "Rediger del-kategori" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" -msgstr "" +msgstr "Er du sikker på at du vil slette denne del-kategorien?" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" -msgstr "" +msgstr "Flytt til overordnet kategori" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" -msgstr "" +msgstr "Slett del-kategori" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" -msgstr "" +msgstr "Handling for deler i denne kategorien" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" -msgstr "" +msgstr "Handling for underkategorier" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" -msgstr "" +msgstr "Opprett Del" + +#: templates/js/translated/part.js:409 +msgid "Create another part after this one" +msgstr "Opprett enda en del etter denne" #: templates/js/translated/part.js:410 -msgid "Create another part after this one" -msgstr "" - -#: templates/js/translated/part.js:411 msgid "Part created successfully" msgstr "Del opprettet" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "Rediger del" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "Del redigert" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "Opprett delvariant" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "Aktiv del" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "Delen kan ikke slettes ettersom den er aktiv" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "Sletting av denne delen kan ikke angres" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "Eventuelle lagervarer for denne delen vil bli slettet" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "Denne delen vil bli fjernet fra eventuelle stykklister" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "All produsent- og leverandørinformasjon for denne delen vil bli slettet" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "Slett del" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "Du abonnerer på varsler for denne artikkelen" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "Du abonnerer nå på varsler for denne artikkelen" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "Abonner på varsler for denne artikkelen" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "Du har avsluttet abonnementet på varsler for denne artikkelen" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" -msgstr "Godkjenning av stykkliste vil merke hvert linjeelement som godkjent" +msgstr "Godkjenning av BOM vil merke hvert linjeelement som godkjent" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "Godkjenn Stykkliste" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "Godkjente Stykkliste" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "Kopier Stykkliste" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "Lite lager" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "Ingen varer på lager" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "Etterspørsel" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "Enhet" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "Sporbar del" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "Virtuell del" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "Abonnert del" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "Salgbar del" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" -msgstr "" +msgstr "Generer lagertellingsrapport" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" -msgstr "" +msgstr "Ingen varianter funnet" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" -msgstr "" +msgstr "Ingen del-parametermaler funnet" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" -msgstr "" +msgstr "Rediger del-parametermal" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" -msgstr "" +msgstr "Alle parametere som henviser til denne malen vil også slettes" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" -msgstr "" +msgstr "Slett del-parametermal" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" -msgstr "" +msgstr "Ingen innkjøpsordrer funnet" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" -msgstr "" +msgstr "Ingen deler funnet" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" -msgstr "" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "Sett kategori" -#: templates/js/translated/part.js:2495 -msgid "Category is required" -msgstr "" +#: templates/js/translated/part.js:2253 +msgid "parts" +msgstr "deler" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "Ingen kategori" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "Vis som liste" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "Vis som rutenett" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" -msgstr "" +msgstr "Ingen underkategorier funnet" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" -msgstr "" +msgstr "Vis som tre" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" -msgstr "" +msgstr "Inkluder underkategorier" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" -msgstr "" +msgstr "Abonnert kategori" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" -msgstr "" +msgstr "Rediger testresultat" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" -msgstr "" +msgstr "Slett testresultat" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" -msgstr "" +msgstr "Denne testen er definert for en overordnet del" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" -msgstr "" +msgstr "Rediger testresultatmal" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" -msgstr "" +msgstr "Slett testresultatmal" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "Eksempel" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +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 "" +msgstr "Ingen BOM-data tilgjengelig" #: templates/js/translated/pricing.js:463 msgid "No supplier pricing data available" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" -msgstr "" +msgstr "Merk ordren som fullført?" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 -msgid "Cancel Purchase Order" -msgstr "" - -#: templates/js/translated/purchase_order.js:493 -msgid "Are you sure you wish to cancel this purchase order?" -msgstr "" - #: templates/js/translated/purchase_order.js:499 -msgid "This purchase order can not be cancelled" -msgstr "" +msgid "Cancel Purchase Order" +msgstr "Kanseller Innkjøpsordre" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:504 +msgid "Are you sure you wish to cancel this purchase order?" +msgstr "Er du sikker du vil kansellere innkjøpsordren?" + +#: templates/js/translated/purchase_order.js:510 +msgid "This purchase order can not be cancelled" +msgstr "Denne innkjøpsordren kan ikke kanselleres" + +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" -msgstr "" +msgstr "Antall å bestille" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" -msgstr "" +msgstr "Ny leverandørdel" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" -msgstr "" +msgstr "Ny innkjøpsordre" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" -msgstr "" +msgstr "Legg til innkjøpsordre" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" -msgstr "" +msgstr "Mottatt antall" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" -msgstr "" - -#: templates/js/translated/purchase_order.js:1161 -msgid "Stock Status" -msgstr "" - -#: templates/js/translated/purchase_order.js:1175 -msgid "Add barcode" -msgstr "" +msgstr "Antall å motta" #: templates/js/translated/purchase_order.js:1176 -msgid "Remove barcode" -msgstr "" +msgid "Stock Status" +msgstr "Lagerstatus" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1190 +msgid "Add barcode" +msgstr "Legg til strekkode" + +#: templates/js/translated/purchase_order.js:1191 +msgid "Remove barcode" +msgstr "Fjern strekkode" + +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" -msgstr "" +msgstr "Legg til serienumre" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" -msgstr "" +msgstr "Serienumre" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" -msgstr "" +msgstr "Antall å motta" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" -msgstr "" +msgstr "Bekreft mottak av varer" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" -msgstr "" +msgstr "Lagervaren peker til en Del som er BOMen for denne lagervaren" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/pl/LC_MESSAGES/django.po b/InvenTree/locale/pl/LC_MESSAGES/django.po index dd77969955..1643c1981e 100644 --- a/InvenTree/locale/pl/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -25,19 +25,19 @@ msgstr "Nie znaleziono punktu końcowego API" msgid "User does not have permission to view this model" msgstr "" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "Szczegóły błędu można znaleźć w panelu administracyjnym" msgid "Enter date" msgstr "Wprowadź dane" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Uwagi" @@ -81,47 +81,51 @@ msgstr "Wartość '{name}' nie pojawia się w formacie wzoru" msgid "Provided value does not match required pattern: " msgstr "Podana wartość nie pasuje do wymaganego wzoru: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Wprowadź hasło" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Wprowadź nowe hasło" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Potwierdź hasło" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Potwierdź nowe hasło" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Stare hasło" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Adres email (ponownie)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Potwierdzenie adresu email" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Należy ponownie wpisać ten sam adres e-mail." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Podany podstawowy adres e-mail jest nieprawidłowy." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Podany e-mail domeny nie został zatwierdzony." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Podano nieprawidłową ilość" @@ -237,9 +241,9 @@ msgstr "Brak pliku" msgid "Missing external link" msgstr "Brak zewnętrznego odnośnika" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Załącznik" @@ -247,29 +251,30 @@ msgstr "Załącznik" msgid "Select file to attach" msgstr "Wybierz plik do załączenia" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Łącze" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Link do zewnętrznego adresu URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Komentarz" @@ -277,13 +282,13 @@ msgstr "Komentarz" msgid "File comment" msgstr "Komentarz pliku" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Użytkownik" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "Błędny wybór" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Nazwa" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Opis" @@ -384,7 +389,7 @@ msgid "parent" msgstr "nadrzędny" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Ścieżka" @@ -420,12 +425,12 @@ msgstr "Błąd serwera" msgid "An error has been logged by the server." msgstr "Błąd został zapisany w logach serwera." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Numer musi być prawidłowy" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "Adres URL zdalnego pliku obrazu" msgid "Downloading images from remote URL is not enabled" msgstr "Pobieranie obrazów ze zdalnego URL nie jest włączone" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Czeski" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Duński" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Niemiecki" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Grecki" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Angielski" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Hiszpański" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Hiszpański (Meksyk)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Perski" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Francuski" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hebrajski" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Węgierski" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Włoski" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japoński" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Koreański" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Holenderski" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norweski" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polski" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugalski" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugalski (Brazylijski)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Rosyjski" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Słoweński" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Szwedzki" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Tajski" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Turecki" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Wietnamski" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Chiński" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Sprawdzenie robotnika w tle nie powiodło się" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "Nie skonfigurowano backendu e-mail" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "Sprawdzanie poziomu zdrowia InvenTree nie powiodło się" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "W toku" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Umieszczony" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Zakończono" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Anulowano" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Zagubiono" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Zwrócone" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Wysłane" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Wymaga uwagi" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Uszkodzone" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Zniszczone" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Odrzucone" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "Poddany kwarantannie" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Starsze śledzenie wpisów stanu magazynowego" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Utworzono element magazynowy" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Edytuj pozycję magazynową" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Przypisano numer seryjny" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Zapas policzony" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Zapas dodany ręcznie" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Zapas usunięty ręcznie" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Lokalizacja zmieniona" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Zainstalowano do montażu" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Usunięto z montażu" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Zainstalowano element komponentu" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Usunięto element komponentu" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Podziel z pozycji nadrzędnej" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Podziel element podrzędny" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Scalone przedmioty magazynowe" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Przekonwertowano na wariant" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Wyślij do klienta" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Zwrócony od klienta" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Dane wyjściowe kolejności kompilacji utworzone" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Dane wyjściowe kolejności kompilacji ukończone" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Zużyte przez kolejność kompilacji" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Wyślij do klienta" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Zwrócony od klienta" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Produkcja" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "Przedawnienie nie może przekroczyć 100 %" msgid "Invalid value for overage" msgstr "Nieprawidłowa wartość przedawnienia" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Edytuj informacje użytkownika" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Ustaw hasło" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Hasła muszą być zgodne" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Podano nieprawidłowe hasło" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Informacja systemowa" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "O InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Kompilacja musi zostać anulowana, zanim będzie mogła zostać usunięta" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "Opcjonalne" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "Przydzielono" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Zlecenie Budowy" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Zlecenia budowy" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Nieprawidłowy wybór kompilacji nadrzędnej" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Odwołanie do zamówienia wykonania" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Referencja" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Budowa nadrzędna" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Zamówienie budowy, do którego budowa jest przypisana" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Zamówienie budowy, do którego budowa jest przypisana" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Komponent" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Wybierz część do budowy" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Odwołanie do zamówienia sprzedaży" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Zamówienie sprzedaży, do którego budowa jest przypisana" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Lokalizacja źródła" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Lokalizacja docelowa" -#: build/models.py:216 +#: build/models.py:220 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:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Ilość do stworzenia" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Ilość przedmiotów do zbudowania" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Ukończone elementy" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Ilość produktów magazynowych które zostały ukończone" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Status budowania" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Kod statusu budowania" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Kod partii" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Kod partii dla wyjścia budowy" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Data utworzenia" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Docelowy termin zakończenia" -#: build/models.py:258 +#: build/models.py:262 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:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Data zakończenia" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "zrealizowane przez" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Wydany przez" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Użytkownik, który wydał to zamówienie" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Odpowiedzialny" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Link Zewnętrzny" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Kolejność kompilacji {build} została zakończona" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Kolejność kompilacji została zakończona" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Nie określono danych wyjściowych budowy" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Budowanie wyjścia jest już ukończone" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Skompilowane dane wyjściowe nie pasują do kolejności kompilacji" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "Ilość musi być większa niż zero" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Alokowana ilość musi być większa niż zero" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Nie znaleziono wybranego elementu magazynowego w BOM" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Budowa" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Element magazynowy" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Lokalizacja magazynowania przedmiotu" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Ilość" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Alokowana ilość musi być większa niż zero" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Element magazynowy" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Lokalizacja magazynowania przedmiotu" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Zainstaluj do" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Docelowa lokalizacja magazynowa przedmiotu" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Numer seryjny" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Lokalizacja" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Status" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Akceptuj niekompletne" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "Element BOM" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "Towar musi znajdować się w magazynie" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 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:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "Wyklucz lokalizację" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "Wyklucz produkty magazynowe z wybranej lokalizacji" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Towary magazynowe w wielu lokalizacjach mogą być stosowane zamiennie" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "Zastępczy magazyn" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Akcje kodów kreskowych" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Data docelowa" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "Zaległe" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Zakończone" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "Zakończone" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Zamówienie zakupu" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Dodane przez" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "Źródło magazynu" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Przeznaczenie" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Partia" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Utworzony" @@ -1764,147 +1816,106 @@ msgstr "Utworzony" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Zakończone" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "Budowa niezakończona" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "Przydziel zapasy do budowy" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" -msgstr "Cofnij przydział zapasów" +#: 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 "Unallocate Stock" -msgstr "Cofnij przydział zapasów" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "Automatyczne przypisywanie" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "Przydziel zapasy" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Zamów wymagane komponenty" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Zamów komponent" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Załączniki" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Notatki tworzenia" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Nowe zlecenie budowy" @@ -1912,14 +1923,10 @@ msgstr "Nowe zlecenie budowy" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "dni" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Szablon" @@ -2269,10 +2266,10 @@ msgstr "Szablon" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Złożenie" @@ -2280,8 +2277,8 @@ msgstr "Złożenie" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Komponent" @@ -2289,7 +2286,7 @@ msgstr "Komponent" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Możliwość zakupu" @@ -2297,8 +2294,8 @@ msgstr "Możliwość zakupu" msgid "Parts are purchaseable by default" msgstr "Części są domyślnie z możliwością zakupu" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Możliwość sprzedaży" @@ -2306,10 +2303,10 @@ msgstr "Możliwość sprzedaży" msgid "Parts are salable by default" msgstr "Części są domyślnie z możliwością sprzedaży" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Możliwość śledzenia" @@ -2317,10 +2314,10 @@ msgstr "Możliwość śledzenia" msgid "Parts are trackable by default" msgstr "Części są domyślnie z możliwością śledzenia" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Wirtualny" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,525 +2374,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "Ceny wewnętrzne" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "Włącz drukowanie etykiet" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "Włącz drukowanie etykiet z interfejsu WWW" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "DPI etykiety" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "Włącz raporty" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Tryb Debugowania" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Rozmiar strony" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Domyślna wielkość strony dla raportów PDF" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "Włącz generowanie raportów testów" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 +msgid "Required pattern for generating Purchase Order reference field" +msgstr "" + +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" +msgstr "" + +#: common/models.py:1542 +msgid "Allow editing of purchase orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1549 msgid "Enable password forgot" msgstr "Włącz opcję zapomnianego hasła" -#: common/models.py:1536 +#: common/models.py:1550 msgid "Enable password forgot function on the login pages" msgstr "Włącz funkcję zapomnianego hasła na stronach logowania" -#: common/models.py:1542 +#: common/models.py:1556 msgid "Enable registration" msgstr "Włącz rejestrację" -#: common/models.py:1543 +#: common/models.py:1557 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:1549 +#: common/models.py:1563 msgid "Enable SSO" msgstr "Włącz SSO" -#: common/models.py:1550 +#: common/models.py:1564 msgid "Enable SSO on the login pages" msgstr "Włącz SSO na stronach logowania" -#: common/models.py:1556 +#: common/models.py:1570 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1557 +#: common/models.py:1571 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1563 +#: common/models.py:1577 msgid "Email required" msgstr "Adres e-mail jest wymagany" -#: common/models.py:1564 +#: common/models.py:1578 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1570 +#: common/models.py:1584 msgid "Auto-fill SSO users" msgstr "Autouzupełnianie użytkowników SSO" -#: common/models.py:1571 +#: common/models.py:1585 msgid "Automatically fill out user-details from SSO account-data" msgstr "Automatycznie wypełnij dane użytkownika z danych konta SSO" -#: common/models.py:1577 +#: common/models.py:1591 msgid "Mail twice" msgstr "E-mail dwa razy" -#: common/models.py:1578 +#: common/models.py:1592 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:1584 +#: common/models.py:1598 msgid "Password twice" msgstr "Hasło dwukrotnie" -#: common/models.py:1585 +#: common/models.py:1599 msgid "On signup ask users twice for their password" msgstr "Przy rejestracji dwukrotnie zapytaj użytkowników o ich hasło" -#: common/models.py:1591 +#: common/models.py:1605 msgid "Allowed domains" msgstr "" -#: common/models.py:1592 +#: common/models.py:1606 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:1598 +#: common/models.py:1612 msgid "Group on signup" msgstr "Grupuj przy rejestracji" -#: common/models.py:1599 +#: common/models.py:1613 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1605 +#: common/models.py:1619 msgid "Enforce MFA" msgstr "Wymuś MFA" -#: common/models.py:1606 +#: common/models.py:1620 msgid "Users must use multifactor security." msgstr "Użytkownicy muszą używać zabezpieczeń wieloskładnikowych." -#: common/models.py:1612 +#: common/models.py:1626 msgid "Check plugins on startup" msgstr "Sprawdź wtyczki przy starcie" -#: common/models.py:1613 +#: common/models.py:1627 msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:1620 -msgid "Check plugin signatures" -msgstr "" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "Włącz integrację URL" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "Włącz wtyczki, aby dodać ścieżki URL" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "Włącz integrację z aplikacją" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "Włącz wtyczki, aby dodać aplikacje" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "Włącz wtyczki, aby uruchamiać zaplanowane zadania" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "Klucz ustawień (musi być unikalny - niewrażliwy na wielkość liter" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "Pokaż obserwowane części" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "Pokaż obserwowane części na stronie głównej" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "Pokaż obserwowane kategorie" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "Pokaż obserwowane kategorie części na stronie głównej" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Pokaż najnowsze części" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "Pokaż najnowsze części na stronie głównej" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "" @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "Pokaż niski stan magazynowy" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "Pokaż elementy o niskim stanie na stronie głównej" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "Pokaż wymagany stan zapasów" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "Szukaj części" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "Ukryj nieaktywne części" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "Pokaż ilość w formularzach" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "Stały pasek nawigacyjny" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "Format daty" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "Preferowany format wyświetlania dat" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Planowanie komponentów" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Cena" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "Punkt końcowy" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "Aktywny" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "Sekret" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "Współdzielony sekret dla HMAC" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "Id wiadomości" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "Unikalny identyfikator dla tej wiadomości" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "Host, od którego otrzymano tę wiadomość" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "Nagłówek" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "Nagłówek tej wiadomości" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "Zawartość" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "Autor" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "Obraz" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "Opis firmy" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Strona WWW" @@ -3505,303 +3495,388 @@ msgstr "Strona WWW" msgid "Company website URL" msgstr "Witryna internetowa firmy" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Adres" - -#: company/models.py:119 -msgid "Company address" -msgstr "Adres firmy" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Numer telefonu" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Numer telefonu kontaktowego" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "Adres E-Mail" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Kontaktowy adres e-mail" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Kontakt" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Punkt kontaktowy" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "Link do informacji o zewnętrznym przedsiębiorstwie" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "jest klientem" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "Czy sprzedajesz produkty tej firmie?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "jest dostawcą" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "Czy kupujesz przedmioty od tej firmy?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "jest producentem" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "Czy to przedsiębiorstwo produkuje części?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Firma" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Część bazowa" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Wybierz część" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Producent" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Wybierz producenta" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "Numer producenta komponentu" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Komponent producenta" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Wartość" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Jednostki" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "Jednostki parametru" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Dostawca" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Wybierz dostawcę" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Uwaga" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "koszt podstawowy" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "Opakowanie" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "Opakowanie części" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "wielokrotność" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "Dostępne" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "Domyślna waluta używana dla tego dostawcy" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Utwórz zamówienie zakupu" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Edytuj firmę" @@ -3854,17 +3929,17 @@ msgstr "Pobierz obraz z adresu URL" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Klient" @@ -3872,6 +3947,13 @@ msgstr "Klient" msgid "Uses default currency" msgstr "Używa domyślnej waluty" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Adres" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Telefon" @@ -3904,7 +3986,7 @@ msgstr "Pobierz obraz" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Komponenty dostawcy" @@ -3914,129 +3996,121 @@ msgstr "Utwórz nowego dostawcę części" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Nowy dostawca części" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Zamów komponenty" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Usuń części" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Usuń części" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 msgid "Manufacturer Parts" msgstr "Części producenta" -#: company/templates/company/detail.html:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Utwórz nową część producenta" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Nowa część producenta" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Zapasy dostawcy" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Zamówienia zakupu" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Utwórz nowe zamówienie zakupu" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Nowe zamówienie zakupu" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Utwórz nowe zlecenie sprzedaży" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Notatki firmy" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "Lista dostawców" @@ -4048,17 +4122,17 @@ msgstr "Producenci" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "Zamów komponent" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "Edytuj komponent producenta" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "Usuń komponent producenta" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "Dostawcy" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Usuń" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Parametry" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "Nowy parametr" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Usuń parametry" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "Dodaj parametr" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "Zamów komponent" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "Utwórz nowy towar" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "Nowy towar" @@ -4203,37 +4264,37 @@ msgstr "Nowy towar" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Informacja cenowa" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Towary" @@ -4259,7 +4320,7 @@ msgstr "Klienci" msgid "New Customer" msgstr "Nowy klient" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Firmy" @@ -4267,77 +4328,70 @@ msgstr "Firmy" msgid "New Company" msgstr "Nowa firma" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "Nazwa etykiety" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "Opis etykiety" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "Etykieta" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "Aktywne" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Szerokość [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Wysokość [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "Wzór nazwy pliku" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Filtry" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "Cena całkowita" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Zlecenie zakupu" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "Link do zewnętrznej witryny" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "Utworzony przez" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "Użytkownik lub grupa odpowiedzialna za to zamówienie" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "Odniesienie zamówienia" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "Status zamówienia zakupu" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "odebrane przez" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "Data wydania" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "Data wystawienia zamówienia" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "Wartość musi być liczbą dodatnią" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "Data wysyłki" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "wysłane przez" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "Ilość elementów" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "Zamówienie" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "Odebrane" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Cena zakupu" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "Cena zakupu jednostkowego" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "Gdzie kupujący chce przechowywać ten przedmiot?" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "Cena sprzedaży" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "Jednostkowa cena sprzedaży" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "Wysłana ilość" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "Data wysyłki" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "Sprawdzone przez" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "Użytkownik, który sprawdził tę wysyłkę" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "Przesyłka" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "Numer przesyłki" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "Numer śledzenia" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "Informacje o śledzeniu przesyłki" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "Przesyłka została już wysłana" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Zarezerwowana ilość nie może przekraczać ilości na stanie" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "Linia" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "Komponent" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "Zamówienie nie może zostać anulowane" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Kod kreskowy" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "Oznacz zamówienie jako zakończone" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "Kompletne zamówienie" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "Numer zamówienia" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "Opis zamówienia" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "Status zamówienia" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "Niekompletny" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "Wydany" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "Duplikuj wybrane" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "Usuń wiersz" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "Dodaj element zamówienia" @@ -5163,30 +5213,25 @@ msgstr "Dodaj element zamówienia" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "Otrzymane elementy" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "Notatki zamówień" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "Całkowity Koszt" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 msgid "Pending Shipments" msgstr "Oczekujące przesyłki" -#: order/templates/order/sales_order_detail.html:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "Akcje" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "Nowa wysyłka" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "ID komponentu" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "Nazwa komponentu" @@ -5323,19 +5367,20 @@ msgstr "Nazwa komponentu" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "Wersja" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "Słowa kluczowe" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "Wariant" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "Minimalny stan magazynowy" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "Na stanie" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "W Zamówieniu" @@ -5381,23 +5426,16 @@ msgstr "W Zamówieniu" msgid "Used In" msgstr "Użyte w" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "Przydzielono" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "Ścieżka kategorii" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Części" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "IPN komponentu" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "Ważny" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "Ta opcja musi być zaznaczona" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "Domyślna lokalizacja" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "Dostępna ilość" @@ -5497,917 +5535,913 @@ msgstr "Dostępna ilość" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Kategoria komponentu" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "Kategorie części" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "Domyślna lokalizacja dla komponentów w tej kategorii" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "Domyślne słowa kluczowe" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "Nieprawidłowy wybór dla części nadrzędnej" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "Część '{p1}' jest używana w BOM dla '{p2}' (rekursywne)" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN musi być zgodny z wyrażeniem regularnym {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "Nazwa komponentu" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "Czy szablon" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "Czy ta część stanowi szablon części?" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "Czy ta część jest wariantem innej części?" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "Kategoria" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "Domyślne wygasanie" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "Czy ten komponent może być zbudowany z innych komponentów?" -#: part/models.py:1002 +#: part/models.py:1007 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:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "Czy ta część wymaga śledzenia każdego towaru z osobna?" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "Czy ta część jest aktywna?" -#: part/models.py:1028 +#: part/models.py:1033 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:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "Tworzenie użytkownika" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "Ostatnia inwentaryzacja" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "Sprzedaj wiele" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "Data" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "Nazwa testu" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "Testowy opis" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "Wprowadź opis do tego testu" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "Wymagane" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "Wymaga wartości" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "Wymaga załącznika" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "Część nadrzędna" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "Dane" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "Wartość parametru" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "Wartość domyślna" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "Unikalny wartość ID komponentu" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "Wartość IPN części" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "Poziom" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "Element BOM" + +#: part/models.py:3812 msgid "Select parent part" msgstr "Wybierz część nadrzędną" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "Podczęść" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "Opcjonalne" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "Ten element BOM jest opcjonalny" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "Notatki pozycji BOM" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "Suma kontrolna" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "Zatwierdzone" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "Zezwalaj na warianty" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "Część zastępcza" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "Część 1" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "Część 2" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "Wybierz powiązaną część" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "Waluta zakupu tego towaru" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "Kopiuj obraz" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Kopiuj BOM" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "Kopiuj parametry" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "Duplikuj część" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "Usuń istniejące dane" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "Pomiń nieprawidłowe wiersze" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "Włącz tę opcję, aby pominąć nieprawidłowe wiersze" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "Wyczyść istniejący BOM" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "Nie podano ilości" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "Nieprawidłowa ilość" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "Usuń elementy" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "Usuń kategorię" msgid "Top level part category" msgstr "Kategoria najwyższego poziomu" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Podkategorie" @@ -6517,33 +6543,21 @@ msgstr "Części (w tym podkategorie)" msgid "Create new part" msgstr "Utwórz nową część" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "Nowy komponent" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "Opcje" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "Ustaw kategorię" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "Ustaw kategorię" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "Parametry części" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "Stwórz nową kategorię komponentów" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "Nowa kategoria" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "Odśwież" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "Warianty Części" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "Utwórz nowy wariant" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "Nowy wariant" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "Powiązane części" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "Dodaj powiązane" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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 "Zestawienie materiałowe" -#: part/templates/part/detail.html:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "Akcje eksportu" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "Eksportuj BOM" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "Drukuj raport BOM" -#: part/templates/part/detail.html:295 +#: part/templates/part/detail.html:272 +msgid "BOM actions" +msgstr "" + +#: part/templates/part/detail.html:276 msgid "Upload BOM" msgstr "Wgraj BOM" -#: part/templates/part/detail.html:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "Weryfikuj BOM" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "Dodaj część do BOM" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "Złożenia" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "Dostawcy Części" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "Producenci części" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "Powiązane części" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "Dodaj powiązaną część" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "Wybierz format pliku" @@ -6766,7 +6780,7 @@ msgstr "Pokaż informacje o cenach" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "Akcje magazynowe" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "Nieaktywny" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "Przypisane do zamówień sprzedaży" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "Minimalny poziom stanu magazynowego" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "Kod QR części" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "Warianty" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Stan" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "Ostatnia aktualizacja" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "Brak w magazynie" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "Mała ilość w magazynie" @@ -7141,10 +7155,6 @@ msgstr "Nie znaleziono obrazka części" msgid "Part Pricing" msgstr "Cennik części" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Nie określono działania" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "Znaleziono wyniki dla danych kodu kreskowego" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "Konfiguracja wtyczki" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "Konfiguracja wtyczek" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "Klucz" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "Klucz wtyczki" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "Nazwa wtyczki" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "Czy wtyczka jest aktywna" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "Wtyczka" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "Ustawienie jednokrotnego wyboru" msgid "A setting with multiple choices" msgstr "Ustawienie wielokrotnego wyboru" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "Źródłowy adres URL" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "Źródło pakietu - może to być niestandardowy rejestr lub ścieżka VCS" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "Nazwa pakietu" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "Nazwa pakietu wtyczki - może również zawierać wskaźnik wersji" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "Potwierdź instalację wtyczki" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "Spowoduje to zainstalowanie tej wtyczki w bieżącej instancji. Instancja przejdzie do trybu konserwacji." -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "Instalacja nie została potwierdzona" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "Nazwa szablonu" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "Filtr części" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "Wycinek" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "Cena jednostkowa" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "Razem" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Numer Seryjny" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "Wynik" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "Zainstalowane elementy" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "Numer seryjny" @@ -7564,8 +7582,8 @@ msgstr "ID lokalizacji" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "Ścieżka lokalizacji" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "Data ważności" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "Lokacje stanu magazynowego" @@ -7673,8 +7691,8 @@ msgstr "Wybierz właściciela" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "Ilość musi być liczbą całkowitą" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "Ilość nie może przekraczać dostępnej ilości towaru ({n})" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "Numer seryjny już istnieje" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "Notatki do wpisu" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "Należy podać wartość dla tego testu" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "Nazwa testu" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "Wynik testu" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "Część musi być dostępna do sprzedaży" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "Skanuj do lokacji" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "Akcje druku" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "Przelicz stan magazynowy" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "Usuń stan magazynowy" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "Przenieś stan magazynowy" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Budowa" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "Element nadrzędny" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "Tylko do odczytu" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "Lokacje nie są ustawione" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "Termin minął" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "Edytuj lokację" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Podlokalizacje" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "Nowa lokalizacja" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "Indeks" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "Obserwowane elementy" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "Obserwowane kategorie" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "Najnowsze części" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "Wyczerpane stany magazynowe" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "Zaległe zlecenia budowy" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "Trwające zlecenia zakupu" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "Zaległe zlecenia zakupu" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "Trwające zlecenia sprzedaży" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "Zaległe zlecenia sprzedaży" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "Import części" msgid "Import Part" msgstr "Import części" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "Wtyczki" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "Instaluj wtyczkę" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "Wersja" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "Nieaktywne wtyczki" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "Błąd stosu wtyczki" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "Etap" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "Wiadomość" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "Informacje o wtyczce" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "Wersja" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "brak dostarczonych informacji o wersji" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "Ścieżka instalacji" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "Hash commitu" msgid "Commit Message" msgstr "Wiadomość commitu" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "Status podpisu" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "Klucz podpisu" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "Nie znaleziono szablonów parametrów kategorii" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "Edytuj szablon" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "Usuń szablon" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "Strona główna" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "Aktualna" msgid "Update Available" msgstr "Dostępna aktualizacja" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "Dokumentacja InvenTree" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "Wersja interfejsu API" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "Wersja Pythona" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "Wersja Django" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "Zobacz kod na GitHub" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "Autorzy" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "Aplikacja mobilna" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "Prześlij raport o błędzie" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "skopiuj do schowka" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "kopiuj informacje o wersji" @@ -9454,14 +9474,6 @@ msgstr "Dodaj link" msgid "Add Attachment" msgstr "Dodaj załącznik" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "Skaner kodów" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "Wymagana ilość" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "Minimalna ilość" @@ -9592,23 +9604,35 @@ msgstr "Kod błędu" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "Nie znaleziono załączników" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "Edytuj załącznik" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "Data przesłania" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "Edytuj załącznik" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "Usuń załącznik" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "Rozłącz" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "Wyświetl dane wiersza" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "Dane wiersza" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "Zamknij" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "Pobierz szablon BOM-u" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "Poziomy" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "Dodaj zamiennik" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "Zobacz BOM" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "Czy na pewno przerwać tę budowę?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "Ostatni numer seryjny" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "Utwórz zlecenie budowy" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "Wyjście" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "Ilość za" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "Wybierz części" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "Wybierz" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "Brak informacji o użytkowniku" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "Dodaj producenta" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "Dodaj część producenta" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "Dodaj dostawcę" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "Wszystkie wybrane komponenty dostawcy zostaną usunięte" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "Dodaj nową firmę" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "Usuń parametry" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Zamów komponenty" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "Nie znaleziono parametrów" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "Edytuj Parametr" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "Usuń parametr" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "Edytuj Parametr" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "Usuń parametr" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "Edytuj przedział cenowy" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "Ostatnio aktualizowane" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "Edytuj przedział cenowy" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "prawda" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "fałsz" @@ -10467,31 +10585,31 @@ msgstr "fałsz" msgid "Select filter" msgstr "Wybierz filtr" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "Dodaj nowy filtr" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "Wyczyść wszystkie filtry" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "Utwórz filtr" @@ -10516,6 +10634,12 @@ msgstr "Operacja usuwania nie jest dozwolona" msgid "View operation not allowed" msgstr "Operacja przeglądania nie jest dozwolona" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Usuń" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "Pozostaw ten formularz otwarty" @@ -10533,23 +10657,23 @@ msgstr "Istnieją błędy formularza" msgid "No results found" msgstr "Nie znaleziono wyników" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "Wyszukiwanie" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "Wyczyść wejście" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "Kolumna pliku" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "Nazwa pola" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "Wybór Kolumn" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "Atrybuty części" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "Utwórz nową kategorię części" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "Edytuj kategorię części" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "Czy na pewno chcesz usunąć tę kategorię części?" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "Utwórz część" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "Utwórz kolejną część po tej" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "Część utworzona pomyślnie" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "Edytuj część" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "Część zmodyfikowana" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "Utwórz wariant części" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "Masz włączone powiadomienia dla tej części" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "Masz włączone powiadomienia dla tej części" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "Włącz powiadomienia dla tej części" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "Zostałeś wypisany z powiadomień dla tej części" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "Obserwowane części" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "Nie znaleziono wariantów" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "Nie znaleziono szablonów parametrów części" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "Nie znaleziono części" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "Brak kategorii" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "Wyświetl jako listę" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "Wyświetl jako siatkę" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "Ustaw kategorię części" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "Ustaw kategorię" + +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" -msgstr "" +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "Brak kategorii" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "Wyświetl jako listę" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "Wyświetl jako siatkę" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "Wyświetl jako drzewo" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "Obserwowana kategoria" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "Edytuj zamówienie zakupu" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "Oznacz zamówienie jako zakończone?" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "Kod zamówienia" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "Ilość do otrzymania" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "Potwierdź odbiór elementów" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "Przedmioty" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "Nieprawidłowy klient" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "Nie znaleziono zamówień sprzedaży" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "Edytuj wysyłkę" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "Kompletna wysyłka" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "Usuń wysyłkę" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "Edytuj wysyłkę" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "Usuń wysyłkę" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "Nie odnaleziono pasujących przesyłek" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "Numer referencyjny przesyłki" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "Nie wysłano" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "Śledzenie" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "Potwierdź przydział zapasów" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "Cena zakupu" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "Oblicz cenę" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "Zaktualizuj cenę jednostkową" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "Czy na pewno chcesz skasować tą lokację?" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "Czy na pewno chcesz usunąć tą część?" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "Przenieś" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "Weź" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "Dodaj stan" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "Dodaj" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "Usuń stan magazynowy" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "Wybierz przedmioty magazynowe" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "BRAK WYNIKÓW" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "Dodaj wynik testu" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "W produkcji" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" +msgstr "" + +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" +msgstr "Scal stany magazynowe" + +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" +msgstr "Usuń stan magazynowy" + +#: templates/js/translated/stock.js:1885 msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1850 +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 msgid "Stock item is in production" msgstr "" -#: templates/js/translated/stock.js:1855 +#: templates/js/translated/stock.js:2028 msgid "Stock item assigned to sales order" msgstr "" -#: templates/js/translated/stock.js:1858 +#: templates/js/translated/stock.js:2031 msgid "Stock item assigned to customer" msgstr "" -#: templates/js/translated/stock.js:1861 +#: templates/js/translated/stock.js:2034 msgid "Serialized stock item has been allocated" msgstr "" -#: templates/js/translated/stock.js:1863 +#: templates/js/translated/stock.js:2036 msgid "Stock item has been fully allocated" msgstr "" -#: templates/js/translated/stock.js:1865 +#: templates/js/translated/stock.js:2038 msgid "Stock item has been partially allocated" msgstr "" -#: templates/js/translated/stock.js:1868 +#: templates/js/translated/stock.js:2041 msgid "Stock item has been installed in another item" msgstr "" -#: templates/js/translated/stock.js:1870 +#: templates/js/translated/stock.js:2043 msgid "Stock item has been consumed by a build order" msgstr "" -#: templates/js/translated/stock.js:1874 +#: templates/js/translated/stock.js:2047 msgid "Stock item has expired" msgstr "" -#: templates/js/translated/stock.js:1876 +#: templates/js/translated/stock.js:2049 msgid "Stock item will expire soon" msgstr "" -#: templates/js/translated/stock.js:1881 +#: templates/js/translated/stock.js:2054 msgid "Stock item has been rejected" msgstr "" -#: templates/js/translated/stock.js:1883 +#: templates/js/translated/stock.js:2056 msgid "Stock item is lost" msgstr "" -#: templates/js/translated/stock.js:1885 +#: templates/js/translated/stock.js:2058 msgid "Stock item is destroyed" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 msgid "Depleted" msgstr "" -#: templates/js/translated/stock.js:2031 +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "Szczegóły" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "Lokalizacja już nie istnieje" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "Zamówienie zakupu już nie istnieje" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "Klient już nie istnieje" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "Element magazynowy już nie istnieje" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "Dodano" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "Usunięto" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "Status zamówienia" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "Przypisane do mnie" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "Uwzględnij podlokalizacje" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "Obesrwowane" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "Numer seryjny" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "Kod partii" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "Aktywne części" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "Część jest zespołem" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "Jest przydzielony" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "Przedmiot został przydzielony" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "W produkcji" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "Obejmuje warianty" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "Zainstalowane" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "Posiada cenę zakupu" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "Test pomyślny" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "Pokaż aktywne części" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "Posiada IPN" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "Część posiada wewnętrzny numer części" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "Możliwość zakupu" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "Eksportuj dane tabeli" msgid "Select File Format" msgstr "Wybierz format pliku" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "Wczytywanie danych" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "wierszy na stronę" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "Pokaż wszystkie wiersze" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "Pokazywane" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "do" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "z" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "wierszy" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "Brak pasujących wyników" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "Ukryj/Pokaż stronicowanie" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "Przełącz" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "Kolumny" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "Wszystkie" @@ -12587,50 +12791,6 @@ msgstr "Ustawienia e-maila" msgid "Email settings not configured" msgstr "Ustawienia e-mail nie zostały skonfigurowane" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "Akcje kodów kreskowych" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "Opcje magazynowe" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "Dodaj do wybranych produktów magazynowych" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "Usuń z wybranych przedmiotów magazynowych" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "Przenieś wybrane przedmioty magazynowe" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "Połącz wybrane przedmioty magazynowe" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "Scal stany magazynowe" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "Zamów wybrane elementy" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "Usuń zaznaczone elementy" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "Usuń stan magazynowy" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "Tak" @@ -12663,35 +12823,35 @@ msgstr "Uprawnienia" msgid "Important dates" msgstr "Ważne daty" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "Uprawnienia nadane" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "Grupa" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "Widok" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "Uprawnienie do wyświetlania przedmiotów" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "Uprawnienie do dodawania przedmiotów" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "Zmień" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "Uprawnienie do edycji przedmiotów" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "Uprawnienie do usuwania przedmiotów" diff --git a/InvenTree/locale/pt/LC_MESSAGES/django.po b/InvenTree/locale/pt/LC_MESSAGES/django.po index d065342b13..9c7afed755 100644 --- a/InvenTree/locale/pt/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:53\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -25,19 +25,19 @@ msgstr "API endpoint não encontrado" msgid "User does not have permission to view this model" msgstr "Usuário não tem permissão para ver este modelo" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "Nenhum valor fornecido" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "O valor fornecido não é um número válido" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "Valor fornecido tem uma unidade inválida" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "Valor fornecido não pôde ser convertido para a unidade especificada" @@ -49,26 +49,26 @@ msgstr "Detalhes do erro podem ser encontrados no painel de administrador" msgid "Enter date" msgstr "Insira uma Data" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Anotações" @@ -81,53 +81,57 @@ msgstr "Valor '{name}' não está no formato correto" msgid "Provided value does not match required pattern: " msgstr "O valor fornecido não corresponde ao padrão exigido: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Digite a senha" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Insira uma nova senha" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Confirmar senha" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Confirmar nova senha" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Senha atual" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "E-mail (novamente)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Confirmação do endereço de email" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." -msgstr "Voce precisa digital o mesmo email." +msgstr "Você deve digitar o mesmo e-mail todas as vezes." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "O endereço primário de e-mail não é válido." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "O domínio de e-mail providenciado não foi aprovado." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "Cadastro está desativado." + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" -msgstr "Quantidade invalida" +msgstr "Quantidade fornecida inválida" #: InvenTree/helpers.py:470 msgid "Empty serial number string" -msgstr "Numero serial em branco" +msgstr "Número serial em branco" #: InvenTree/helpers.py:500 msgid "Duplicate serial" @@ -136,7 +140,7 @@ msgstr "Número de série duplicado" #: InvenTree/helpers.py:533 InvenTree/helpers.py:568 #, python-brace-format msgid "Invalid group range: {g}" -msgstr "Numero de grupo invalido:{g}" +msgstr "Número de grupo inválido:{g}" #: InvenTree/helpers.py:562 #, python-brace-format @@ -146,16 +150,16 @@ msgstr "Intervalo de grupos {g} excede a quantidade permitida ({q})" #: InvenTree/helpers.py:586 InvenTree/helpers.py:593 InvenTree/helpers.py:608 #, python-brace-format msgid "Invalid group sequence: {g}" -msgstr "Sequencia de grupo invalida:{g}" +msgstr "Sequência de grupo inválida:{g}" #: InvenTree/helpers.py:618 msgid "No serial numbers found" -msgstr "Nenhum numero serial encontrado" +msgstr "Nenhum número de série foi encontrado" #: InvenTree/helpers.py:621 #, python-brace-format msgid "Number of unique serial numbers ({s}) must match quantity ({q})" -msgstr "Numero de numeros seriais ({s}) precisa bater com quantidade ({q})" +msgstr "O número de números de série únicos ({s}) deve corresponder à quantidade ({q})" #: InvenTree/helpers.py:751 msgid "Remove HTML tags from this value" @@ -231,15 +235,15 @@ msgstr "O número de referência é muito grande" #: InvenTree/models.py:465 msgid "Missing file" -msgstr "Arquivo nao encontrado" +msgstr "Arquivo ausente" #: InvenTree/models.py:466 msgid "Missing external link" -msgstr "Link externo nao encontrado" +msgstr "Link externo não encontrado" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Anexo" @@ -247,29 +251,30 @@ msgstr "Anexo" msgid "Select file to attach" msgstr "Selecione arquivo para anexar" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Link" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Link para URL externa" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Comentario" @@ -277,13 +282,13 @@ msgstr "Comentario" msgid "File comment" msgstr "Comentario sobre arquivo" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Usuario" @@ -324,67 +329,67 @@ msgstr "Nomes duplicados não podem existir sob o mesmo parental" msgid "Invalid choice" msgstr "Escolha inválida" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Nome" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" -msgstr "Descricao" +msgstr "Descrição" #: InvenTree/models.py:656 msgid "Description (optional)" -msgstr "Descricao (opicional)" +msgstr "Descrição (opcional)" #: InvenTree/models.py:664 msgid "parent" msgstr "parent" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Caminho" @@ -420,12 +425,12 @@ msgstr "Erro de servidor" msgid "An error has been logged by the server." msgstr "Log de erro salvo pelo servidor." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Preicsa ser um numero valido" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "URL do arquivo de imagem remoto" msgid "Downloading images from remote URL is not enabled" msgstr "Baixar imagens de URL remota não está habilitado" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Tcheco" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Dinamarquês" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Alemão" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Grego" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Inglês" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Espanhol" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Espanhol (Mexicano)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Persa" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "Finlandês" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Francês" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hebraico" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Húngaro" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italiano" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japonês" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Coreano" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Holandês" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norueguês" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polonês" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Português" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Português (Brasileiro)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Russo" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Esloveno" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Sueco" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Tailandês" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Turco" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamita" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Chinês" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Falha em verificar o histórico do trabalhador" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "Serviço de fundo do e-mail não foi configurado" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "Verificação de saúde do sistema InvenTree falhou" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Pendente" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Colocado" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Completado" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Cancelado" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Perdido" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Retornado" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "Em Progresso" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Enviado" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Necessita de atenção" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Danificado" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Destruído" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Rejeitado" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "Em quarentena" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Entrada de rastreamento de estoque antiga" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Item de estoque criado" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Item de estoque editado" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Número de série atribuído" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Estoque contado" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Estoque adicionado manualmente" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Estoque removido manualmente" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Local alterado" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "Estoque atualizado" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Instalado na montagem" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Removido da montagem" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Instalado componente do Item" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Removido componente do Item" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Separado do Item Paternal" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Separar o Item filho" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Itens de estoque mesclados" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Convertido para variável" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Enviado ao cliente" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Retornado ao cliente" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Criação dos pedidos de produção criado" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Criação do pedido de produção completado" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "Saída do pedido de produção rejeitada" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Usado na ordem de produção" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "Enviado contra o Pedido de Venda" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "Recebido referente ao Pedido de Compra" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "Devolvido contra Pedido de Retorno" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Enviado ao cliente" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Devolvido pelo cliente" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Produção" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "Devolução" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "Consertar" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "Reembolsar" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "Substituir" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "Reembolsar" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "Recusar" @@ -831,99 +839,127 @@ msgstr "Excedente não deve exceder 100%" msgid "Invalid value for overage" msgstr "Valor de excedente inválido" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Editar informações do usuário" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Definir senha" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Os campos de senha devem coincidir" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Senha incorreta fornecida" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Informação do Sistema" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Sobre o InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Produção deve ser cancelada antes de ser deletada" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "Consumível" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "Opcional" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "Monitorado" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "Alocado" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Ondem de Produção" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Ordens de Produções" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Escolha de Produção parental inválida" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Referência do pedido de produção" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Referência" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "Breve descrição da produção (opcional)" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Produção Progenitor" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Ordem de produção para qual este serviço está alocado" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Ordem de produção para qual este serviço está alocado" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Peça" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Selecionar peça para produção" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Referência do pedido de venda" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Ordem de Venda para qual esta produção está alocada" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Local de Origem" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Selecione a localização para pegar do estoque para esta produção (deixe em branco para tirar a partir de qualquer local de estoque)" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Local de Destino" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Selecione o local onde os itens concluídos serão armazenados" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Quantidade de Produção" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Número de itens em estoque para produzir" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Itens concluídos" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Número de itens em estoque concluídos" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Progresso da produção" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Código de situação da produção" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Código de Lote" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Código do lote para esta saída de produção" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Criado em" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Data alvo final" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Data alvo para finalização de produção. Estará atrasado a partir deste dia." -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Data de conclusão" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" -msgstr "Concluído em" +msgstr "Concluído por" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" -msgstr "Emitido em" +msgstr "Emitido por" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Usuário que emitiu esta ordem de produção" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Responsável" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "Usuário ou grupo responsável para esta ordem de produção" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Link Externo" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "Prioridade de Produção" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "Prioridade desta ordem de produção" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "Código do projeto" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "Código do projeto para esta ordem de produção" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "O Pedido de produção {build} foi concluído!" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Um pedido de produção foi concluído" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Nenhuma saída de produção especificada" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Saída de produção já completada" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Saída da produção não corresponde à Ordem de Produção" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "Quantidade deve ser maior que zero" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "Quantidade não pode ser maior do que a quantidade de saída" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" -msgstr "Item de produção deve especificar a saída, pois peças mestres estão marcadas como rastreáveis" +#: build/models.py:1265 +msgid "Build object" +msgstr "Objeto de produção" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "Quantidade alocada ({q}) não deve exceder a quantidade disponível em estoque ({a})" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "O item do estoque está sobre-alocado" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Quantidade alocada deve ser maior que zero" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Quantidade deve ser 1 para estoque serializado" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Item do estoque selecionado não encontrado na LDM" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Produção" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Faça uma Produção para atribuir peças" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Item de estoque" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Origem do item em estoque" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Quantidade" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "Quantidade necessária para a ordem de produção" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "Item de produção deve especificar a saída, pois peças mestres estão marcadas como rastreáveis" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "Quantidade alocada ({q}) não deve exceder a quantidade disponível em estoque ({a})" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "O item do estoque está sobre-alocado" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Quantidade alocada deve ser maior que zero" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Quantidade deve ser 1 para estoque serializado" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "Item estoque selecionado não coincide com linha da LDM" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Item de estoque" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Origem do item em estoque" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Quantidade do estoque para alocar à produção" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Instalar em" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Destino do Item do Estoque" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Saída da Produção" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "Saída de produção não coincide com a produção progenitora" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "Peça de saída não coincide com a peça da ordem de produção" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Esta saída de produção já foi concluída" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "A saída de produção não está completamente alocada" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Entre a quantidade da saída de produção" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "Quantidade inteira necessária para peças rastreáveis" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Quantidade inteira necessária, pois a lista de materiais contém peças rastreáveis" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Números de Série" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Digite os números de série para saídas de produção" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "Alocar Números de Série Automaticamente" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "Alocar automaticamente os itens necessários com os números de série correspondentes" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "Os seguintes números de série já existem ou são inválidos" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "Uma lista de saídas de produção deve ser fornecida" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Local" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "Local de estoque para saídas recicladas" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "Descartar alocações" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" -msgstr "" +msgstr "Descartar quaisquer alocações de estoque para saídas sucateadas" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" -msgstr "" +msgstr "Motivo para sucatear saída(s) de produção" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "Local para saídas de produção concluídas" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Situação" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "Aceitar Alocação Incompleta" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "Concluir saídas se o estoque não tiver sido totalmente alocado" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "Remover Estoque Alocado" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "Subtrair qualquer estoque que já tenha sido alocado para esta produção" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "Remover Saídas Incompletas" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "Excluir quaisquer saídas de produção que não tenham sido completadas" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "Não permitido" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "Aceitar conforme consumido por esta ordem de produção" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "Desatribua antes de completar esta ordem de produção" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "Estoque sobrealocado" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Como deseja manejar itens de estoque extras atribuídos a ordem de produção" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "Alguns itens de estoque foram sobrealocados" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "Aceitar não alocados" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Aceitar que os itens de estoque não foram totalmente alocados para esta produção" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "Estoque obrigatório não foi totalmente alocado" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Aceitar Incompleto" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "Aceitar que o número requerido de saídas de produção não foi concluído" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "Quantidade de produção requerida não foi concluída" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "Pedido de produção tem saídas incompletas" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "Item LDM" +#: build/serializers.py:722 +msgid "Build Line" +msgstr "Linha de produção" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "Saída da Produção" -#: build/serializers.py:732 +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "Saída de produção deve indicar a mesma produção" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "Item da linha de produção" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "bin_item.part deve indicar a mesma peça da ordem de produção" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "Item deve estar em estoque" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Quantidade disponível ({q}) excedida" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "Saída de produção deve ser definida para alocação de peças rastreadas" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Saída de produção deve ser definida para alocação de peças não rastreadas" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "O item em estoque já foi alocado para essa saída de produção" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "Alocação do Item precisa ser fornecida" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Local de estoque onde peças serão extraídas (deixar em branco para qualquer local)" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "Local não incluso" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "Não incluir itens de estoque deste local" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "Estoque permutável" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Itens de estoque em múltiplos locais pode ser permutável" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "Substituir Estoque" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "Permitir alocação de peças substitutas" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "Itens opcionais" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "Alocar itens LDM opcionais para a ordem de produção" @@ -1528,7 +1581,7 @@ msgstr "Pedido de produção {bo} está atrasada" #: build/templates/build/build_base.html:18 msgid "Part thumbnail" -msgstr "" +msgstr "Miniatura da parte" #: build/templates/build/build_base.html:39 #: company/templates/company/supplier_part.html:36 @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Ações de código de barras" @@ -1616,69 +1670,67 @@ msgstr "Concluir produção" msgid "Build Description" msgstr "Descrição da produção" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "Nenhuma saída de produção foi criada para esta ordem de serviço" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "Ordem de produção está pronta para ser marcada como concluída" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "Ordem de produção não pode ser concluída, os resultados pendentes permanecem" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "A quantidade de produção necessária ainda não foi concluída" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 msgid "Stock has not been fully allocated to this Build Order" msgstr "Estoque não foi totalmente alocado para este Pedido de Produção" -#: build/templates/build/build_base.html:160 -#: build/templates/build/detail.html:138 order/models.py:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Data alvo" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "Essa produção expirou em %(target)s" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "Expirou" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Concluído" +#: build/templates/build/build_base.html:178 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" +msgstr "Saídas Concluídas" -#: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "Concluído" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Pedido de Venda" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Emitido por" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "Prioridade" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "Excluir Ordem de Produção" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "QR Code do Pedido de Produção" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "Vincular código de barras ao Pedido de Produção" @@ -1727,8 +1779,8 @@ msgstr "Origem do estoque" msgid "Stock can be taken from any available location." msgstr "O estoque pode ser tirado de qualquer local disponível." -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Destino" @@ -1742,21 +1794,21 @@ msgstr "Peças alocadas" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Lote" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Criado" @@ -1764,147 +1816,106 @@ msgstr "Criado" msgid "No target date set" msgstr "Sem data alvo definida" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Concluído" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "Produção não concluída" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "Pedido de Produção Filho" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "Alocar Estoque para Produção" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" -msgstr "Estoque não alocado" +#: build/templates/build/detail.html:181 +msgid "Deallocate stock" +msgstr "Desalocar estoque" + +#: build/templates/build/detail.html:182 +msgid "Deallocate Stock" +msgstr "Desalocar estoque" #: build/templates/build/detail.html:184 -msgid "Unallocate Stock" -msgstr "Estoque não Alocado" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "Alocar o estoque para produção automaticamente" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "Alocar automaticamente" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "Alocar estoque para a produção manualmente" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "Alocar estoque" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Pedir peças necessárias" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Pedir Peças" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "Estoque não rastreável foi totalmente alocado para este Pedido de Produção" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "Estoque não rastreável não foi totalmente alocado para este Pedido de Produção" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "Alocar itens selecionados" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "Esse Pedido de Produção não possuí nenhum item não rastreável associado à LDM" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "Saída de Produção Incompletas" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "Criar nova saída de produção" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "Nova saída de produção" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "Ações de saídas" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "Concluir saídas de produções selecionados" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "Saídas concluídas" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "Excluir saídas de produções selecionados" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "Exlcuir saídas" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" -msgstr "" +msgstr "Consumir estoque" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "Saídas de Produção concluídas" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Anexos" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Notas de produção" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "Alocação Concluída" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" -msgstr "Todos os itens não rastreáveis foram alocados" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" +msgstr "Todas as linhas foram totalmente alocadas" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Novo Pedido de Produção" @@ -1912,14 +1923,10 @@ msgstr "Novo Pedido de Produção" msgid "Build Order Details" msgstr "Detalhes do Pedido de Produção" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "Saídas Incompletas" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "Saídas Concluídas" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "Atualizado" msgid "Timestamp of last update" msgstr "Tempo da última atualização" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "Código do projeto" - #: common/models.py:105 msgid "Unique project code" msgstr "Código único do projeto" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "Frequência para verificar atualizações (defina como zero para desativar)" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "dias" @@ -2259,9 +2256,9 @@ msgstr "Copiar Parâmetros dos Modelos de Categoria" msgid "Copy category parameter templates when creating a part" msgstr "Copiar parâmetros do modelo de categoria quando criar uma peça" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Modelo" @@ -2269,10 +2266,10 @@ msgstr "Modelo" msgid "Parts are templates by default" msgstr "Peças são modelos por padrão" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Montagem" @@ -2280,8 +2277,8 @@ msgstr "Montagem" msgid "Parts can be assembled from other components by default" msgstr "Peças podem ser montadas a partir de outros componentes por padrão" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Componente" @@ -2289,7 +2286,7 @@ msgstr "Componente" msgid "Parts can be used as sub-components by default" msgstr "Peças podem ser usadas como sub-componentes por padrão" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Comprável" @@ -2297,8 +2294,8 @@ msgstr "Comprável" msgid "Parts are purchaseable by default" msgstr "Peças são compráveis por padrão" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Vendível" @@ -2306,10 +2303,10 @@ msgstr "Vendível" msgid "Parts are salable by default" msgstr "Peças vão vendíveis por padrão" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Rastreável" @@ -2317,10 +2314,10 @@ msgstr "Rastreável" msgid "Parts are trackable by default" msgstr "Peças vão rastreáveis por padrão" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Virtual" @@ -2352,7 +2349,7 @@ msgstr "Dados Iniciais de Estoque" msgid "Allow creation of initial stock when adding a new part" msgstr "Permitir Criação de estoque inicial quando adicional uma nova peça" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Dados Iniciais de Fornecedor" @@ -2377,525 +2374,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "Ícone padrão de categoria de peça (vazio significa sem ícone)" #: common/models.py:1253 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 msgid "Minimum Pricing Decimal Places" msgstr "Mínimo de Casas Decimais do Preço" -#: common/models.py:1254 +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Mínimo número de casas decimais a exibir quando renderizar dados de preços" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "Máximo Casas Decimais de Preço" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Número máximo de casas decimais a exibir quando renderizar dados de preços" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "Usar Preços do Fornecedor" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Incluir quebras de preço do fornecedor nos cálculos de preços globais" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "Sobrescrever histórico de compra" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Histórico do pedido de compra substitui os intervalos dos preços do fornecedor" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "Usar Preços do Item em Estoque" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Usar preço inserido manualmente no estoque para cálculos de valores" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "Idade do preço do Item em Estoque" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Não incluir itens em estoque mais velhos que este número de dias no cálculo de preços" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "Usar Preço Variável" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "Incluir preços variáveis nos cálculos de valores gerais" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "Apenas Ativar Variáveis" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "Apenas usar peças variáveis ativas para calcular preço variáveis" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "Intervalo de Reconstrução de Preços" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "Número de dias antes da atualização automática dos preços das peças" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "Preços Internos" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "Habilitar preços internos para peças" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "Sobrepor Valor Interno" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "Se disponível, preços internos sobrepõe variação de cálculos de preço" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "Ativar impressão de etiquetas" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "Ativar impressão de etiqueta pela interface da internet" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "DPI da Imagem na Etiqueta" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Resolução de DPI quando gerar arquivo de imagens para fornecer à extensão de impressão de etiquetas" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "Habilitar Relatórios" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "Ativar geração de relatórios" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Modo de depuração" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "Gerar relatórios em modo de depuração (saída HTML)" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Tamanho da página" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Tamanho padrão da página PDF para relatórios" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "Ativar Relatórios Teste" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "Ativar geração de relatórios de teste" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "Anexar Relatórios de Teste" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Quando imprimir um Relatório de Teste, anexar uma cópia do mesmo ao item de estoque associado" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "Seriais Únicos Globais" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "Números de série para itens de estoque devem ser globalmente únicos" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "Preenchimento automático de Números Seriais" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "Preencher números de série automaticamente no formulário" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "Excluir Estoque Esgotado" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "Determina o comportamento padrão quando um item de estoque é esgotado" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "Modelo de Código de Lote" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "Modelo para gerar códigos de lote padrão para itens de estoque" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "Validade do Estoque" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "Ativar função de validade de estoque" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "Vender estoque expirado" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "Permitir venda de estoque expirado" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "Tempo de Estoque Inativo" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "Número de dias em que os itens em estoque são considerados obsoleto antes de vencer" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "Produzir Estoque Vencido" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "Permitir produção com estoque vencido" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "Controle de propriedade do estoque" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "Ativar controle de propriedade sobre locais e itens de estoque" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "Ícone padrão do local de estoque" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "Ícone padrão de local de estoque (vazio significa sem ícone)" -#: common/models.py:1471 +#: common/models.py:1478 +msgid "Show Installed Stock Items" +msgstr "Mostrar Itens de Estoque Instalados" + +#: common/models.py:1479 +msgid "Display installed stock items in stock tables" +msgstr "Exibir itens de estoque instalados nas tabelas de estoque" + +#: common/models.py:1485 msgid "Build Order Reference Pattern" msgstr "Modelo de Referência de Pedidos de Produção" -#: common/models.py:1472 +#: common/models.py:1486 msgid "Required pattern for generating Build Order reference field" msgstr "Modelo necessário para gerar campo de referência do Pedido de Produção" -#: common/models.py:1478 +#: common/models.py:1492 msgid "Enable Return Orders" msgstr "Ativar Pedidos de Devolução" -#: common/models.py:1479 +#: common/models.py:1493 msgid "Enable return order functionality in the user interface" msgstr "Ativar funcionalidade de pedido de retorno na interface do usuário" -#: common/models.py:1485 +#: common/models.py:1499 msgid "Return Order Reference Pattern" msgstr "Modelo de Referência de Pedidos de Devolução" -#: common/models.py:1486 +#: common/models.py:1500 msgid "Required pattern for generating Return Order reference field" msgstr "Modelo necessário para gerar campo de referência do Pedido de Devolução" -#: common/models.py:1492 +#: common/models.py:1506 msgid "Edit Completed Return Orders" msgstr "Editar os Pedidos de Devolução Concluídos" -#: common/models.py:1493 +#: common/models.py:1507 msgid "Allow editing of return orders after they have been completed" msgstr "Permitir a edição de pedidos de devolução após serem enviados ou concluídos" -#: common/models.py:1499 +#: common/models.py:1513 msgid "Sales Order Reference Pattern" msgstr "Modelo de Referência de Pedidos de Venda" -#: common/models.py:1500 +#: common/models.py:1514 msgid "Required pattern for generating Sales Order reference field" msgstr "Modelo necessário para gerar campo de referência do Pedido de Venda" -#: common/models.py:1506 +#: common/models.py:1520 msgid "Sales Order Default Shipment" msgstr "Envio Padrão de Pedidos de Venda" -#: common/models.py:1507 +#: common/models.py:1521 msgid "Enable creation of default shipment with sales orders" msgstr "Habilitar criação de envio padrão com Pedidos de Vendas" -#: common/models.py:1513 +#: common/models.py:1527 msgid "Edit Completed Sales Orders" msgstr "Editar os Pedidos de Vendas concluídos" -#: common/models.py:1514 +#: common/models.py:1528 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "Permitir a edição de pedidos de vendas após serem enviados ou concluídos" -#: common/models.py:1520 +#: common/models.py:1534 msgid "Purchase Order Reference Pattern" msgstr "Modelo de Referência de Pedidos de Compras" -#: common/models.py:1521 +#: common/models.py:1535 msgid "Required pattern for generating Purchase Order reference field" msgstr "Modelo necessário para gerar campo de referência do Pedido de Compra" -#: common/models.py:1527 +#: common/models.py:1541 msgid "Edit Completed Purchase Orders" msgstr "Editar Pedidos de Compra Concluídos" -#: common/models.py:1528 +#: common/models.py:1542 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "Permitir a edição de pedidos de compras após serem enviados ou concluídos" -#: common/models.py:1535 +#: common/models.py:1549 msgid "Enable password forgot" msgstr "Habitar esquecer senha" -#: common/models.py:1536 +#: common/models.py:1550 msgid "Enable password forgot function on the login pages" msgstr "Habilitar a função \"Esqueci minha senha\" nas páginas de acesso" -#: common/models.py:1542 +#: common/models.py:1556 msgid "Enable registration" msgstr "Habilitar cadastro" -#: common/models.py:1543 +#: common/models.py:1557 msgid "Enable self-registration for users on the login pages" msgstr "Ativar auto-registro para usuários na página de entrada" -#: common/models.py:1549 +#: common/models.py:1563 msgid "Enable SSO" msgstr "Ativar SSO" -#: common/models.py:1550 +#: common/models.py:1564 msgid "Enable SSO on the login pages" msgstr "Ativar SSO na página de acesso" -#: common/models.py:1556 +#: common/models.py:1570 msgid "Enable SSO registration" msgstr "Ativar registro SSO" -#: common/models.py:1557 +#: common/models.py:1571 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Ativar auto-registro por SSO para usuários na página de entrada" -#: common/models.py:1563 +#: common/models.py:1577 msgid "Email required" msgstr "Email obrigatório" -#: common/models.py:1564 +#: common/models.py:1578 msgid "Require user to supply mail on signup" msgstr "Exigir do usuário o e-mail no cadastro" -#: common/models.py:1570 +#: common/models.py:1584 msgid "Auto-fill SSO users" msgstr "Auto-preencher usuários SSO" -#: common/models.py:1571 +#: common/models.py:1585 msgid "Automatically fill out user-details from SSO account-data" msgstr "Preencher automaticamente os detalhes do usuário a partir de dados da conta SSO" -#: common/models.py:1577 +#: common/models.py:1591 msgid "Mail twice" msgstr "Enviar email duplo" -#: common/models.py:1578 +#: common/models.py:1592 msgid "On signup ask users twice for their mail" msgstr "No registro pedir aos usuários duas vezes pelo email" -#: common/models.py:1584 +#: common/models.py:1598 msgid "Password twice" msgstr "Senha duas vezes" -#: common/models.py:1585 +#: common/models.py:1599 msgid "On signup ask users twice for their password" msgstr "No registro pedir aos usuários duas vezes pela senha" -#: common/models.py:1591 +#: common/models.py:1605 msgid "Allowed domains" msgstr "Domínios permitidos" -#: common/models.py:1592 +#: common/models.py:1606 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "Restringir registros a certos domínios (separados por vírgula, começando com @)" -#: common/models.py:1598 +#: common/models.py:1612 msgid "Group on signup" msgstr "Grupo no cadastro" -#: common/models.py:1599 +#: common/models.py:1613 msgid "Group to which new users are assigned on registration" msgstr "Grupo ao qual novos usuários são atribuídos no registro" -#: common/models.py:1605 +#: common/models.py:1619 msgid "Enforce MFA" msgstr "Forçar AMF" -#: common/models.py:1606 +#: common/models.py:1620 msgid "Users must use multifactor security." msgstr "Os usuários devem usar uma segurança multifator." -#: common/models.py:1612 +#: common/models.py:1626 msgid "Check plugins on startup" msgstr "Checar extensões no início" -#: common/models.py:1613 +#: common/models.py:1627 msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "Checar que todas as extensões instaladas no início — ativar em ambientes de contêineres" -#: common/models.py:1620 -msgid "Check plugin signatures" -msgstr "Checar assinaturas de extensões" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "Checar e mostrar assinaturas das extensões" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "Ativar integração URL" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "Ativar extensão para adicionar rotas URL" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "Ativar integração de navegação" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "Ativar extensões para integrar à navegação" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "Ativa integração com aplicativo" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "Ativar extensões para adicionar aplicativos" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "Ativar integração do calendário" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "Ativar extensões para executar tarefas agendadas" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "Ativar integração de eventos" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "Ativar extensões para responder a eventos internos" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "Habilitar códigos de projeto" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "Ativar códigos de projeto para rastrear projetos" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "Funcionalidade de Balanço do Inventário" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Ativar funcionalidade de balanço para gravar níveis de estoque e calcular seu valor" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "Período de Balanço Automático" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Número de dias entre gravação do balanço de estoque (coloque zero para desativar)" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "Intervalo para Excluir o Relatório" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Relatórios de balanço serão apagados após um número de dias especificado" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "Senha de configurações (deve ser única — diferencia maiúsculas de minúsculas" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "Nenhuma impressora (Exportar para PDF)" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "Ocultar peças inativas" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Ocultar peças inativas nos resultados exibidos na página inicial" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "Mostrar peças subscritas" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "Mostrar peças subscritas na tela inicial" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "Mostrar categorias subscritas" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "Mostrar categorias de peças subscritas na tela inicial" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Mostrar peças mais recentes" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "Mostrar as peças mais recentes na página inicial" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "Contagem de peças recentes" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "Número de peças recentes para mostrar no índice" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "Mostrar LDMs não validadas" @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "Mostrar itens de estoque alterados recentemente na página inicial" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "Contagem de Estoque Recente" +msgid "Show low stock" +msgstr "Mostrar estoque baixo" #: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "Número recentes itens do estoque para mostrar no índice" - -#: common/models.py:1807 -msgid "Show low stock" -msgstr "Mostrar baixo estoque" - -#: common/models.py:1808 msgid "Show low stock items on the homepage" msgstr "Mostrar itens de baixo estoque na página inicial" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "Mostrar estoque esgotado" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "Mostrar itens sem estoque na página inicial" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "Mostrar estoque necessário" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "Mostrar itens de estoque necessários para produções na tela inicial" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "Mostrar estoque expirado" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "Mostrar expirados itens em estoque na tela inicial" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "Mostrar estoque inativo" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "Mostrar estoque inativo na tela inicial" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "Mostrar produções pendentes" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "Mostrar produções pendentes na tela inicial" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "Mostrar produções atrasadas" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "Mostrar produções atrasadas na tela inicial" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "Mostrar pedidos de compra pendentes" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "Mostrar os Pedidos de Compras pendentes na página inicial" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "Mostrar Pedidos de Compra atrasados" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "Mostrar os Pedidos de Compras atrasadas na tela inicial" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "Mostrar pedidos de vendas pendentes" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "Mostrar os Pedidos de Vendas pendentes na página inicial" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "Mostrar Pedidos de Venda atrasados" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "Mostrar os Pedidos de Vendas atrasadas na tela inicial" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "Mostrar remessas de OV pendentes" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "Mostrar envios OV pendentes na tela inicial" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "Mostrar notícias" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "Mostrar notícias na tela inicial" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "Mostrar etiqueta em linha" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Mostrar etiquetas em PDF no navegador, ao invés de baixar o arquivo" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "Impressora de etiquetas padrão" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "Configurar qual impressora de etiqueta deve ser selecionada por padrão" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "Mostrar relatório em linha" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Mostrar relatórios em PDF no navegador, ao invés de baixar o arquivo" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "Procurar Peças" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "Mostrar peças na janela de visualização de pesquisa" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "Buscar Peças do Fornecedor" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "Mostrar fornecedor de peças na janela de visualização de pesquisa" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "Buscar peças do fabricante" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "Mostrar fabricante de peças na janela de visualização de pesquisa" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "Ocultar peças inativas" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "Não incluir peças inativas na janela de visualização de pesquisa" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "Pesquisar Categorias" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "Mostrar categoria das peças na janela de visualização de pesquisa" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "Pesquisar Estoque" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "Mostrar itens do estoque na janela de visualização de pesquisa" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "Ocultar itens do estoque indisponíveis" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "Não incluir itens de estoque que não estão disponíveis na janela de visualização de pesquisa" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "Procurar Locais" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "Mostrar locais de estoque na janela de visualização de pesquisa" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "Pesquisar empresas" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "Mostrar empresas na janela de visualização de pesquisa" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "Procurar Pedidos de Produção" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "Mostrar pedidos de produção na janela de visualização de pesquisa" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "Mostrar Pedido de Compras" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "Mostrar pedidos de compra na janela de visualização de pesquisa" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "Não incluir Pedidos de Compras Inativos" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "Não incluir pedidos de compras inativos na janela de visualização de pesquisa" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "Procurar Pedidos de Vendas" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "Mostrar pedidos de vendas na janela de visualização de pesquisa" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "Não Incluir Pedidos de Compras Inativas" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "Não incluir pedidos de vendas inativos na janela de visualização de pesquisa" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "Procurar Pedidos de Devolução" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "Mostrar pedidos de devolução na janela de visualização de pesquisa" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "Não Incluir Pedidos de Devolução Inativas" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "Não incluir pedidos de devolução inativos na janela de visualização de pesquisa" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "Mostrar Resultados Anteriores" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "Número de resultados mostrados em cada seção da janela de visualização de pesquisa" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "Pesquisa de Regex" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "Permitir expressôes comuns nas conultas de pesquisas" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "Busca de Palavras Inteira" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "Pesquisa retorna que palavra inteira coincide" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "Mostrar Quantidade nos Formulários" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "Mostrar a quantidade de peças disponíveis em alguns formulários" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "Tecla Esc Fecha Formulários" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "Usar a tecla Esc para fechar fomulários modais" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "Fixar Navbar" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "A posição do Navbar é fixa no topo da tela" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "Formato da data" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "Formato preferido para mostrar datas" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Agendamento de peças" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "Mostrar informações de agendamento de peças" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Balanço de Peça" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Mostrar informação de balanço da peça (se a funcionalidade de balanço estiver habilitada)" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "Comprimento da Tabela de Frases" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "Limite máximo de comprimento para frases exibidas nas visualizações de tabela" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" -msgstr "" +msgstr "Modelo de rótulo padrão da peça" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" -msgstr "" +msgstr "O modelo de rótulo da peça a ser selecionado automaticamente" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" -msgstr "" +msgstr "Modelo padrão de item de estoque" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" -msgstr "" +msgstr "O modelo de rótulo do item a ser selecionado automaticamente" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" -msgstr "" +msgstr "Modelo de rótulo de localização do estoque padrão" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" -msgstr "" +msgstr "O modelo de rótulo do local de estoque a ser selecionado automaticamente" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "Quantidade de Parcelamentos" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Preço" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "Preço unitário na quantidade especificada" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "Ponto final" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "Ponto final em qual o gancho web foi recebido" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "Nome para este webhook" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "Ativo" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "Este gancho web está ativo" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "Token" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "Token de acesso" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "Segredo" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "Segredo compartilhado para HMAC" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "ID da Mensagem" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "Identificador exclusivo desta mensagem" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "Servidor" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "Servidor do qual esta mensagem foi recebida" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "Cabeçalho" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "Cabeçalho da mensagem" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "Corpo" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "Corpo da mensagem" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "Ponto do qual esta mensagem foi recebida" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "Trabalhado em" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "O trabalho desta mensagem foi concluído?" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "Id" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "Título" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "Publicado" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "Autor" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "Resumo" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "Lida" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "Esta notícia do item foi lida?" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "Esta notícia do item foi lida?" msgid "Image" msgstr "Imagem" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "Arquivo de imagem" @@ -3466,7 +3456,7 @@ msgstr "Coincidir campos" #: common/views.py:87 msgid "Match Items" -msgstr "Coincindir Itens" +msgstr "Coincidir Itens" #: common/views.py:420 msgid "Fields matching failed" @@ -3497,7 +3487,7 @@ msgstr "Descrição da empresa" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Página Web" @@ -3505,303 +3495,388 @@ msgstr "Página Web" msgid "Company website URL" msgstr "URL do Site da empresa" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Endereço" - -#: company/models.py:119 -msgid "Company address" -msgstr "Endereço da empresa" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Número de telefone" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Número de telefone do contato" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "Email" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Endereço de e-mail do contato" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Contato" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Ponto de contato" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "Link para informações externas da empresa" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "é cliente" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "Você vende itens para esta empresa?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "é fornecedor" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "Você compra itens desta empresa?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "é fabricante" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "Esta empresa fabrica peças?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "Moeda padrão utilizada para esta empresa" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Empresa" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "A empresa já tem um endereço principal" + +#: company/models.py:329 +msgid "Select company" +msgstr "Selecione a Empresa" + +#: company/models.py:332 +msgid "Address title" +msgstr "Título do endereço" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "Título descrevendo a entrada de endereço" + +#: company/models.py:337 +msgid "Primary address" +msgstr "Endereço Principal" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "Definir como endereço principal" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "Linha 1" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "Linha de endereço 1" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "Linha 2" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "Linha de endereço 2" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "Código Postal" + +#: company/models.py:356 +msgid "City/Region" +msgstr "Cidade/Região" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "Código Postal Cidade / Região" + +#: company/models.py:361 +msgid "State/Province" +msgstr "Estado/Provincia" + +#: company/models.py:362 +msgid "State or province" +msgstr "Estado ou Província" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "País" + +#: company/models.py:367 +msgid "Address country" +msgstr "País do endereço" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "Notas de envio da transportadora" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "Notas para o envio da transportadora" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "Notas de envio interno" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "Notas de envio para uso interno" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "Link para as informações do endereço (externo)" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Peça base" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Selecionar peça" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Fabricante" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Selecionar fabricante" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "NPF" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "Número de Peça do Fabricante" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "URL do link externo da peça do fabricante" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "Descrição da peça do fabricante" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Peça do Fabricante" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Nome do parâmetro" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Valor" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Valor do Parâmetro" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Unidades" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "Unidades do parâmetro" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" -msgstr "" +msgstr "Unidades de pacote devem ser compatíveis com as unidades de peça base" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" -msgstr "" +msgstr "Unidades de pacote deve ser maior do que zero" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "Parte do fabricante vinculado deve fazer referência à mesma peça base" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Fornecedor" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Selecione o fornecedor" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "Código (SKU)" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "Unidade de reserva de estoque fornecedor" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "Selecionar peça do fabricante" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "URL do link externo da peça do fabricante" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "Descrição da peça fornecedor" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Anotação" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "preço base" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "Taxa mínima (ex.: taxa de estoque)" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "Embalagem" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "Embalagem de peças" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "Quantidade de embalagens" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." -msgstr "" +msgstr "Quantidade total fornecida em um único pacote. Deixe em branco para itens únicos." -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "múltiplo" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "Pedir múltiplos" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "Disponível" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "Quantidade disponível do fornecedor" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "Disponibilidade Atualizada" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "Data da última atualização da disponibilidade dos dados" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "Moeda padrão utilizada para este fornecedor" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Criar Pedido de compra" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "Editar Informações da Empresa" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Editar Empresa" @@ -3854,17 +3929,17 @@ msgstr "Baixar imagem do URL" msgid "Delete image" msgstr "Excluir imagem" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Cliente" @@ -3872,6 +3947,13 @@ msgstr "Cliente" msgid "Uses default currency" msgstr "Usar moeda padrão" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Endereço" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Telefone" @@ -3904,7 +3986,7 @@ msgstr "Baixar Imagem" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Peças do Fornecedor" @@ -3914,129 +3996,121 @@ msgstr "Criar nova peça do fornecedor" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Nova peça do fornecedor" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Pedir peças" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Excluir peças" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Excluir Peças" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 msgid "Manufacturer Parts" msgstr "Fabricantes de peças" -#: company/templates/company/detail.html:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Criar novo fabricante de peça" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Nova peça do fabricante" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Estoque do Fornecedor" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Pedidos de compra" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Criar novo pedido de compra" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Novo Pedido de Compra" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "Pedidos de vendas" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Criar novo pedido de venda" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "Novo Pedido de Venda" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "Estoque Atribuído" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "Pedidos de Devolução" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "Criar novo pedido de devolução" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "Novo Pedido de Devolução" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Notas da Empresa" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "Contato da Empresa" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: company/templates/company/detail.html:187 +#: company/templates/company/detail.html:188 msgid "Add Contact" msgstr "Adicionar Contato" +#: company/templates/company/detail.html:206 +msgid "Company addresses" +msgstr "Endereços da empresa" + +#: company/templates/company/detail.html:210 +#: company/templates/company/detail.html:211 +msgid "Add Address" +msgstr "Adicionar endereço" + #: company/templates/company/index.html:8 msgid "Supplier List" msgstr "Lista de fornecedores" @@ -4048,17 +4122,17 @@ msgstr "Fabricantes" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "Pedir peça" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "Editar peça do fabricante" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "Excluir peça do fabricante" @@ -4078,40 +4152,22 @@ msgstr "Nenhuma informação do fabricante disponível" msgid "Suppliers" msgstr "Fornecedores" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "Excluir peças do fornecedor" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Excluir" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Parâmetros" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "Novo parâmetro" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Excluir parâmetros" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "Adicionar parâmetro" @@ -4135,23 +4191,28 @@ msgstr "Itens de Estoque atribuídos" msgid "Contacts" msgstr "Contatos" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Endereços" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "Fornecedor da Peça" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "Ações de peças do fornecedor" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "Pedir Peça" @@ -4162,13 +4223,13 @@ msgstr "Atualizar disponibilidade" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "Editar Fornecedor da Peça" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "Duplicar Peça do Fornecedor" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "Estoque de Peça do Fornecedor" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "Criar novo item de estoque" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "Novo item de estoque" @@ -4203,37 +4264,37 @@ msgstr "Novo item de estoque" msgid "Supplier Part Orders" msgstr "Pedidos de peças do fornecedor" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Informações de Preço" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "Adicionar parcela de preço" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "QR Code da Peça do Fornecedor" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "Vincular Código de Barras à Parte do Fornecedor" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "Atualizar disponibilidade de peças" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Itens de Estoque" @@ -4259,7 +4320,7 @@ msgstr "Clientes" msgid "New Customer" msgstr "Novo Cliente" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Empresas" @@ -4267,78 +4328,71 @@ msgstr "Empresas" msgid "New Company" msgstr "Nova Empresa" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "Nome da etiqueta" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "Descrição da etiqueta" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "Etiqueta" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "Arquivo de modelo de etiqueta" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "Habilitado" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "Modelo de Etiqueta Habilitado" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Largura [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "Largura da etiqueta, em mm" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Altura [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "Altura da Etiqueta, em mm" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "Padrão de Nome de Arquivo" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "Padrão para gerar nomes do arquivo das etiquetas" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," -msgstr "Filtros de consulta (lista de valores separados por vírgula)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" +msgstr "Filtros de consulta (lista de valores separados por vírgula)" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Filtros" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "Filtros de consulta (lista de valores separados por vírgula" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "Filtros de consulta de peça (lista de valores separados por vírgula)" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" -msgstr "Código QC" +msgid "QR Code" +msgstr "Código QR" #: label/templates/label/part/part_label_code128.html:31 #: label/templates/label/stocklocation/qr_and_text.html:31 @@ -4346,569 +4400,573 @@ msgstr "Código QC" msgid "QR code" msgstr "Código QR" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "Preço Total" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "Nenhum pedido de compra correspondente encontrado" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Pedido de Compra" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "Devolver pedido" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "Desconhecido" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "Preço total deste pedido" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "Moeda do pedido" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "Moeda para este pedido (deixe em branco para usar o padrão da empresa)" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "O contato não corresponde à empresa selecionada" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "Descrição do pedido (opcional)" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "Selecione o código do projeto para este pedido" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "Link para página externa" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Data esperada para entrega do pedido. A ordem estará atrasada após esta data." -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "Criado por" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "Usuário ou grupo responsável para este pedido" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "Ponto de contato para este pedido" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "Endereço da empresa para este pedido" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "Referência do pedido" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "Situação do pedido de compra" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "Empresa da qual os itens estão sendo encomendados" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "Referencia do fornecedor" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "Código de referência do pedido fornecedor" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "recebido por" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "Data de emissão" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "Dia que o pedido foi feito" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "Dia que o pedido foi concluído" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "Fornecedor de peça deve corresponder a fornecedor da OC" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "Quantidade deve ser um número positivo" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "Empresa para qual os itens foi vendidos" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "Referência do Cliente " -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "Código de Referência do pedido do cliente" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "Data de Envio" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "enviado por" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "O pedido não pode ser concluído, pois nenhuma parte foi atribuída" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "Apenas um pedido aberto pode ser marcado como completo" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Pedido não pode ser concluído, pois, há envios incompletos" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "Pedido não pode ser concluído, pois, há itens na linha incompletos" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "Quantidade do item" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "Referência do Item em Linha" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "Observações do Item de Linha" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Data alvo para este item de linha (deixe em branco para usar a data alvo a partir da ordem)" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" -msgstr "" +msgstr "Descrição item de linha (opcional)" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "Contexto" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "Contexto adicional para esta linha" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "Preço Unitário" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "A peça do fornecedor deve corresponder ao fornecedor" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "excluído" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "Pedido" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "Fornecedor da Peça" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "Recebido" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "Número de itens recebidos" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Preço de Compra" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "Preço unitário de compra" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "Onde o Comprador quer que este item seja armazenado?" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "Peça virtual não pode ser atribuída a um pedido de venda" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "Apenas peças vendáveis podem ser atribuídas a um pedido de venda" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "Preço de Venda" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "Preço de venda unitário" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "Quantidade enviada" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "Data do envio" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" -msgstr "" +msgstr "Data de Entrega" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" -msgstr "" +msgstr "Data da entrega do envio" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "Verificado por" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "Usuário que verificou esta remessa" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "Remessa" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "Número do Envio" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "Número de Rastreamento" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "Informação de rastreamento da remessa" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "Número da Fatura" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "Número de referência para fatura associada" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "O pedido já foi enviado" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "Remessa não foi alocada nos itens de estoque" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "O item do estoque não foi atribuído" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "Não é possível alocar o item de estoque para uma linha de uma peça diferente" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "Não é possível alocar uma linha sem uma peça" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "A quantidade de alocação não pode exceder a quantidade em estoque" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "Quantidade deve ser 1 para item de estoque serializado" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "Pedidos de venda não coincidem com a remessa" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "Remessa não coincide com pedido de venda" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "Linha" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "Referência de remessa do pedido de venda" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "Item" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "Selecione o item de estoque para alocar" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "Insira a quantidade de atribuição de estoque" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "Referência de Pedidos de Devolução" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "Empresa da qual os itens estão sendo retornados" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "Estado do pedido de retorno" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "Somente itens da série podem ser devolvidos" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "Selecione o item a ser devolvido pelo cliente" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "Data de Recebimento" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "Data que o pedido a ser devolvido foi recebido" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "Despesa/gastos" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "Gastos com esta linha de itens" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "Gastos para reparar e/ou devolver esta linha de itens" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "Pedido não pode ser cancelado" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "Permitir que o pedido seja fechado com itens de linha incompletos" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "O pedido tem itens da linha incompletos" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "O pedido não está aberto" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "Moeda de preço de compra" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "A peça do fornecedor deve ser especificada" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "O pedido de compra deve ser especificado" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "O fornecedor deve corresponder o pedido de compra" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "Pedido de compra deve corresponder ao fornecedor" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "Itens de linha" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "O item de linha não corresponde ao pedido de compra" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "Selecione o local de destino para os itens recebidos" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "Digite o código do lote para itens de estoque recebidos" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "Digite o número de série para itens de estoque recebidos" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Código de barras" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "Código de barras lido" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "Código de barras já em uso" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "Quantidade inteira deve ser fornecida para peças rastreáveis" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "Itens de linha deve ser providenciados" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "Loca de destino deve ser especificado" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "Código de barras fornecido deve ser único" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "Moeda de preço de venda" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "Nenhum detalhe da remessa fornecido" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "Item de linha não está associado a este pedido" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "Quantidade deve ser positiva" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "Digite números de série para alocar" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "O pedido já foi enviado" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "O envio não está associado a este pedido" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "Nenhuma correspondência encontrada para os seguintes números de série" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "Os seguintes números de série já estão alocados" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "Devolver item do pedido" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "Item do pedido não bate com a ordem de devolução" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "Item do pedido já foi recebido" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "Itens só podem ser recebidos de pedidos em processamento" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "Tipo de moeda para o item do pedido" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "Pedido de compra vencido" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "Pedido de compra {po} está atrasada" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "Pedido de venda vencido" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "Pedido de venda {so} está atrasada" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "Emitir Pedido" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "Receber itens" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "Receber Itens" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "Marcar pedido como concluído" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "Completar Pedido" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" -msgstr "" +msgstr "Miniatura da peça do fornecedor" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "Referência do Pedido" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "Descrição do Pedido" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "Situação do pedido" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "Nenhuma informação do fornecedor disponível" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "Itens de Linha Concluídos" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "Incompleto" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "Emitido" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "Custo total" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "O custo total não pôde ser calculado" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "Código QR do pedido" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "Vincular o código de barras ao pedido" @@ -5083,13 +5133,13 @@ msgstr "Duplicar seleção" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "Remover linha" @@ -5150,9 +5200,9 @@ msgstr "Itens do Pedido de Compra" #: 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "Adicionar item de linha" @@ -5163,37 +5213,32 @@ msgstr "Adicionar item de linha" msgid "Receive Line Items" msgstr "Receber os itens do pedido" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "Excluir Itens de Linha" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: order/templates/order/return_order_detail.html:45 +#: order/templates/order/sales_order_detail.html:41 msgid "Extra Lines" msgstr "Linhas Extra" -#: order/templates/order/purchase_order_detail.html:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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 "Adicionar Linha Extra" -#: order/templates/order/purchase_order_detail.html:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "Itens Recebidos" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "Notas do Pedido" #: order/templates/order/return_order_base.html:18 #: order/templates/order/sales_order_base.html:18 msgid "Customer logo thumbnail" -msgstr "" +msgstr "Miniatura logotipo do cliente" #: order/templates/order/return_order_base.html:61 msgid "Print return order report" @@ -5206,29 +5251,29 @@ msgstr "Imprimir lista de pacotes" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "Referência do Cliente" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "Custo Total" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "Código QR da guia de devolução" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "Vincular Código de Barras a Pedido de Devolução" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "Enviar itens" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "Concluir Pedido de Venda" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "Este Pedido de Venda não foi totalmente alocado" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: order/templates/order/sales_order_detail.html:99 #: order/templates/order/so_sidebar.html:11 msgid "Completed Shipments" msgstr "Envios concluídos" -#: order/templates/order/sales_order_base.html:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "Código QR da venda" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "Código de barras da venda" @@ -5272,18 +5317,17 @@ msgstr "Código de barras da venda" msgid "Sales Order Items" msgstr "Itens do Pedido de Venda" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 msgid "Pending Shipments" msgstr "Envios Pendentes" -#: order/templates/order/sales_order_detail.html:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "Ações" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "Nova Remessa" @@ -5309,12 +5353,12 @@ msgstr "Atualizado {part} unid.-preço para {price}" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "Atualizado {part} unid.-preço para {price} e quantidade para {qty}" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "ID da Peça" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "Nome da Peça" @@ -5323,19 +5367,20 @@ msgstr "Nome da Peça" msgid "Part Description" msgstr "Descrição da Peça" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "IPN" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "Revisão" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "Palavras chave" @@ -5356,24 +5401,24 @@ msgstr "ID Local Padrão" msgid "Default Supplier ID" msgstr "ID de Fornecedor Padrão" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "Variante de" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "Estoque Mínimo" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "Em Estoque" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "No pedido" @@ -5381,23 +5426,16 @@ msgstr "No pedido" msgid "Used In" msgstr "Usado em" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "Alocado" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "Produzindo" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "Custo Mínimo" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "Custo Máximo" @@ -5414,13 +5452,13 @@ msgstr "Nome Paternal" msgid "Category Path" msgstr "Caminho da Categoria" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Peças" @@ -5437,7 +5475,7 @@ msgstr "ID Item LDM" msgid "Parent IPN" msgstr "IPN Paternal" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "IPN da Peça" @@ -5451,35 +5489,35 @@ msgstr "Preço Mínimo" msgid "Maximum Price" msgstr "Preço Máximo" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "Pedido de compra recebido" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "Pedidos de Venda Feitos" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "Estoque produzido por Ordem de Produção" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "Estoque obrigatório para Pedido de Produção" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "Válido" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "Validar a Lista de Materiais completa" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "Esta opção deve ser selecionada" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "Local Padrão" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "Estoque Total" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "Estoque Disponível" @@ -5497,917 +5535,913 @@ msgstr "Estoque Disponível" msgid "Input quantity for price calculation" msgstr "Quantidade para o cálculo de preço" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Categoria da Peça" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "Categorias de Peça" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "Local padrão para peças desta categoria" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "Estrutural" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Peças não podem ser diretamente atribuídas a uma categoria estrutural, mas podem ser atribuídas a categorias filhas." -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "Palavras-chave Padrão" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "Palavras-chave padrão para peças nesta categoria" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "Ícone" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "Ícone (opcional)" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Você não pode tornar esta categoria em estrutural, pois, algumas partes já estão alocadas!" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "Escolha inválida para peça parental" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "Parte '{p1}' é usada na LDM para '{p2}' (recursiva)" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN deve corresponder ao padrão regex {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "Item em estoque com este número de série já existe" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "Não é permitido duplicar IPN em configurações de partes" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "Uma parte com este Nome, IPN e Revisão já existe." -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "Peças não podem ser atribuídas a categorias estruturais!" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "Nome da peça" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "É um modelo" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "Esta peça é uma peça modelo?" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "Esta peça é variante de outra peça?" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "Descrição da peça (opcional)" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "Palavras-chave para melhorar a visibilidade nos resultados da pesquisa" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "Categoria" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "Categoria da Peça" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "Numero interno do produto" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "Revisão de peça ou número de versão" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "Onde este item é armazenado normalmente?" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "Fornecedor Padrão" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "Fornecedor padrão da peça" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "Validade Padrão" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "Validade (em dias) para itens do estoque desta peça" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "Nível mínimo de estoque permitido" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "Unidade de medida para esta peça" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "Essa peça pode ser construída a partir de outras peças?" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "Essa peça pode ser usada para construir outras peças?" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "Esta parte tem rastreamento para itens únicos?" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "Esta peça pode ser comprada de fornecedores externos?" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "Esta peça pode ser vendida a clientes?" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "Esta parte está ativa?" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "Esta é uma peça virtual, como um software de produto ou licença?" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "Soma de Verificação da LDM" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "Soma de verificação da LDM armazenada" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "LDM conferida por" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "LDM verificada no dia" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "Criação de Usuário" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "Usuário responsável por esta peça" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "Último Balanço" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "Venda múltipla" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "Moeda usada para armazenar os cálculos de preços" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "Custo Mínimo da LDM" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "Custo mínimo das peças componentes" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "Custo Máximo da LDM" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "Custo máximo das peças componentes" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "Custo Mínimo de Compra" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "Custo mínimo histórico de compra" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "Custo Máximo de Compra" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "Custo máximo histórico de compra" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "Preço Interno Mínimo" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "Custo mínimo baseado nos intervalos de preço internos" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "Preço Interno Máximo" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "Custo máximo baseado nos intervalos de preço internos" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "Preço Mínimo do Fornecedor" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "Preço mínimo da peça de fornecedores externos" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "Preço Máximo do Fornecedor" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "Preço máximo da peça de fornecedores externos" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "Custo Mínimo variável" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "Custo mínimo calculado das peças variáveis" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "Custo Máximo Variável" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "Custo máximo calculado das peças variáveis" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "Custo total mínimo calculado" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "Custo total máximo calculado" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "Preço Mínimo de Venda" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "Preço mínimo de venda baseado nos intervalos de preço" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "Preço Máximo de Venda" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "Preço máximo de venda baseado nos intervalos de preço" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "Custo Mínimo de Venda" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "Preço histórico mínimo de venda" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "Custo Máximo de Venda" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "Preço histórico máximo de venda" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "Peça para Balanço" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "Total de Itens" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "Número de entradas de estoques individuais no momento do balanço" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "Estoque total disponível no momento do balanço" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "Data" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "Data de realização do balanço" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "Notas adicionais" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "Usuário que fez o balanço" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "Custo Mínimo de Estoque" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "Custo mínimo estimado de estoque disponível" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "Custo Máximo de Estoque" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "Custo máximo estimado de estoque disponível" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "Reportar" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "Arquivo de Relatório de Balanço (gerado internamente)" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "Contagem de Peças" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "Número de peças cobertas pelo Balanço" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "Usuário que solicitou este relatório de balanço" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "Modelos de teste só podem ser criados para peças rastreáveis" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "O teste com este nome já existe para esta peça" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "Nome de Teste" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "Insira um nome para o teste" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "Descrição do Teste" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "Digite a descrição para este teste" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "Requerido" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "Este teste é obrigatório passar?" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "Requer Valor" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "Este teste requer um valor ao adicionar um resultado de teste?" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "Anexo obrigatório" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "Este teste requer um anexo ao adicionar um resultado de teste?" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" -msgstr "" +msgstr "Parâmetros da caixa de seleção não podem ter unidades" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" -msgstr "" +msgstr "Os parâmetros da caixa de seleção não podem ter escolhas" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" -msgstr "" +msgstr "Escolhas devem ser únicas" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "Nome do modelo de parâmetro deve ser único" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "Nome do Parâmetro" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" -msgstr "" +msgstr "Unidades físicas para este parâmetro" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "Descrição do Parâmetro" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" -msgstr "" +msgstr "Caixa de seleção" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" -msgstr "" +msgstr "Este parâmetro é uma caixa de seleção?" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" -msgstr "" +msgstr "Escolhas" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3505 -msgid "Invalid choice for parameter value" -msgstr "" +msgstr "Opções válidas para este parâmetro (separadas por vírgulas)" #: part/models.py:3549 +msgid "Invalid choice for parameter value" +msgstr "Escolha inválida para valor do parâmetro" + +#: part/models.py:3593 msgid "Parent Part" msgstr "Peça Paternal" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "Modelo de parâmetro" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "Dados" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "Valor do Parâmetro" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "Valor Padrão" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "Valor Padrão do Parâmetro" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "ID da peça ou nome da peça" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "Valor exclusivo do ID de peça" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "Valor da parte IPN" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "Nível" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "Nível da LDM" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "Item LDM" + +#: part/models.py:3812 msgid "Select parent part" msgstr "Selecione a Peça Parental" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "Sub peça" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "Selecionar peça a ser usada na LDM" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "Quantidade de LDM para este item LDM" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "Opcional" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "Este item LDM é opcional" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "Consumível" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Este item LDM é consumível (não é rastreado nos pedidos de construção)" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Excedente" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Quantidade estimada de desperdício (absoluto ou porcentagem)" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "Referência do Item LDM" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "Notas do Item LDM" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "Soma de verificação" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "Soma de Verificação da LDM da linha" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "Validado" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" -msgstr "O item da LDM foi calidado" +msgstr "O item da LDM foi validado" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "Obtém herdados" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Este item da LDM é herdado por LDMs para peças variáveis" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "Permitir variações" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Itens de estoque para as peças das variantes podem ser usados para este item LDM" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "Quantidade deve ser valor inteiro para peças rastreáveis" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "Sub peça deve ser especificada" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "Substituir Item da LDM" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "A peça de substituição não pode ser a mesma que a peça mestre" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "Item LDM Parental" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "Substituir peça" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "Parte 1" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "Parte 2" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "Selecionar Peça Relacionada" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "Relacionamento da peça não pode ser criada com ela mesma" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "Relação duplicada já existe" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "Moeda de compra deste item de estoque" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "Nenhuma parte selecionada" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "Selecionar categoria" + +#: part/serializers.py:363 msgid "Original Part" msgstr "Peça Original" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "Selecione a peça original para duplicar" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "Copiar imagem" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "Copiar imagem da peça original" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Copiar LDM" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "Copiar lista de materiais da peça original" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "Copiar Parâmetros" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "Copiar dados do parâmetro da peça original" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "Quantidade Inicial de Estoque" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Especificar a quantidade inicial de estoque para a peça. Se for zero, nenhum estoque é adicionado." -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "Local Inicial do Estoque" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "Especifique o local do estoque inicial para esta Peça" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "Selecione o fornecedor (ou deixe em branco para pular)" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "Selecione fabricante (ou deixe em branco para pular)" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "Número de Peça do Fabricante" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "A empresa selecionada não é um fornecedor válido" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "A empresa selecionada não é um fabricante válido" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "A peça do fabricante que corresponde a essa MPN já existe" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "A peça do fornecedor que corresponde a essa SKU já existe" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "Peça duplicada" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "Copiar dados iniciais de outra peça" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Estoque inicial" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "Criar peça com a quantidade inicial de estoque" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "Informações do Fornecedor" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "Adicionar informação inicial de fornecedor para esta peça" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "Copiar Parâmetros da Categoria" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "Copiar modelos de parâmetros a partir de categoria de peça selecionada" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "Limitar o relatório de balanço a uma determinada peça e quaisquer peças variantes" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "Limitar o relatório de balanço a uma determinada categoria, e qualquer peças filhas" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "Limitar o relatório de balanço a um determinado local de estoque, e qualquer local filho" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "Gerar relatório" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "Gerar arquivo de relatório contendo dados de estoque calculados" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "Atualizar Peças" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "Atualizar peças especificadas com dados de estoque calculados" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "Função de Balanço de Estoque não está ativada" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "Atualizar" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "Atualizar preços desta peça" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "Selecionar peça para copiar a LDM" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "Remover Dado Existente" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "Remova itens LDM existentes antes de copiar" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "Incluir Herdados" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "Incluir itens LDM que são herdados de peças modelo" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "Pular Linhas inválidas" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "Habilitar esta opção para pular linhas inválidas" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "Copiar Peças Substitutas" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "Copiar peças de substitutas quando duplicar itens de LDM" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "Limpar LDM Existente" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "Apagar itens LDM existentes antes de carregar" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "Nenhuma coluna de peça especificada" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "Múltiplas peças correspondentes encontradas" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "Nenhuma peça correspondente encontrada" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "Peça não está designada como componente" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "Quantidade não foi fornecida" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "Quantidade Inválida" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "Pelo menos um item LDM é necessário" @@ -6420,9 +6454,9 @@ msgstr "Notificação de estoque baixo" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "O estoque disponível para {part.name} caiu abaixo do nível mínimo definido" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "Quantidade Total" @@ -6460,14 +6494,6 @@ msgstr "A LDM de %(part)s foi verificada pela última vez por %(checker msgid "The BOM for %(part)s has not been validated." msgstr "A LDM para %(part)s não foi validada." -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "Ações da LDM" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "Excluir itens" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "Fazer balanço de estoque para esta categoria de peça" @@ -6504,7 +6530,7 @@ msgstr "Excluir Categoria" msgid "Top level part category" msgstr "Categoria de peça de nível superior" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Sub-categorias" @@ -6517,33 +6543,21 @@ msgstr "Peças (incluindo subcategorias)" msgid "Create new part" msgstr "Criar nova peça" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "Nova Peça" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "Opções" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "Definir categoria" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "Definir Categoria" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "Parâmetros da Peça" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "Criar categoria de peça" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "Nova Categoria" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "Atualizar dados de agendamento" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "Recarregar" @@ -6591,7 +6605,7 @@ msgstr "Adicionar informações de balanço de estoque" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "Balanço" @@ -6603,101 +6617,101 @@ msgstr "Modelos de Teste de Peça" msgid "Add Test Template" msgstr "Adicionar Modelo de Teste" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "Alocações do Pedido de Vendas" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "Notas de Peça" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "Variantes de Peça" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "Criar variante" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "Nova Variação" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "Adicionar um novo parâmetro" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "Peças Relacionadas" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "Adicionar Relacionado" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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 "Lista de Materiais" -#: part/templates/part/detail.html:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "Exportar Ações" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "Exportar LDM" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "Imprimir Relatório da LDM" -#: part/templates/part/detail.html:295 +#: part/templates/part/detail.html:272 +msgid "BOM actions" +msgstr "Ações da LDM" + +#: part/templates/part/detail.html:276 msgid "Upload BOM" msgstr "Carregar LDM" -#: part/templates/part/detail.html:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "Validar LDM" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "Adicionar Item LDM" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "Montagens" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "Produções de peça" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "Alocações de Pedido de Produção" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "Fornecedores da peça" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "Fabricantes da peça" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "Apagar peças do fabricante" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "Peça Relacionada" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "Adicionar peça relacionada" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "Adicionar Modelo de Resultado de Teste" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "Baixar Modelo de Importação de Peça" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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 "Formato" #: part/templates/part/import_wizard/part_upload.html:93 -#: templates/js/translated/bom.js:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "Selecione o formato de arquivo" @@ -6766,7 +6780,7 @@ msgstr "Mostrar informações de preços" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "Ações de Estoque" @@ -6778,7 +6792,7 @@ msgstr "Contagem peça em estoque" msgid "Transfer part stock" msgstr "Transferir estoque de peça" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "Ações de peça" @@ -6820,13 +6834,13 @@ msgstr "Peça pode ser vendida a clientes" #: part/templates/part/part_base.html:147 msgid "Part is not active" -msgstr "Item bloqueado" +msgstr "Peça inativa" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "Inativo" @@ -6849,7 +6863,7 @@ msgstr "Alocado para Pedidos de Construção" msgid "Allocated to Sales Orders" msgstr "Alocado para Pedidos de Venda" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "Pode Produzir" @@ -6857,8 +6871,8 @@ msgstr "Pode Produzir" msgid "Minimum stock level" msgstr "Nível mínimo de estoque" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "QR Code da Peça" msgid "Link Barcode to Part" msgstr "Vincular Código de Barras à Peça" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "peça" @@ -6955,9 +6969,9 @@ msgstr "Variantes" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Estoque" @@ -6988,9 +7002,9 @@ msgstr "Atualizar Preço da Peça" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "Última atualização" @@ -7053,12 +7067,12 @@ msgstr "Preço de Venda" msgid "Add Sell Price Break" msgstr "Adicionar intervalo de preço de venda" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "Sem Estoque" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "Estoque Baixo" @@ -7141,10 +7155,6 @@ msgstr "Imagem da peça não encontrada" msgid "Part Pricing" msgstr "Preço Peça" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "Seu ambiente tem uma versão git desatualizada. Isto impede que o InvenTree carregue detalhes da extensão." - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Nenhuma ação especificada" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "Coincidência encontrada para dados de código de barras" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "Código de barras corresponde ao item existente" @@ -7197,7 +7207,7 @@ msgstr "Notificações do InvenTree" #: plugin/builtin/integration/core_notifications.py:35 msgid "Integrated outgoing notification methods" -msgstr "" +msgstr "Métodos de envio de notificação integrados" #: plugin/builtin/integration/core_notifications.py:40 #: plugin/builtin/integration/core_notifications.py:81 @@ -7229,47 +7239,43 @@ msgstr "URL usada para enviar mensagens para um canal do Slack" msgid "Open link" msgstr "Abrir link" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "Configuração de Extensão" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "Configuração de Extensões" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "Chave" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "Chave da extensão" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "Nome da Extensão" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "O plug-in está ativo" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "Indisponível" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "Plug-in de exemplo" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "Plugin embutido" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "Extensões" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "Método" @@ -7277,21 +7283,17 @@ msgstr "Método" msgid "No author found" msgstr "Nenhum autor encontrado" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "Nenhum dado encontrado" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "A extensão '{p}' não é compatível com a versão atual do InvenTree {v}" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "Extensão requer pelo menos a versão {v}" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "Extensão requer no máximo a versão {v}" @@ -7328,139 +7330,151 @@ msgstr "Configurações de Escolha" msgid "A setting with multiple choices" msgstr "Uma configuração com várias escolhas" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "URL de origem" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "Fonte do pacote — este pode ser um registro personalizado ou um caminho de VCS" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "Nome do Pacote" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "Nome para o Pacote da Extensão — também pode conter um indicador de versão" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "Confirmar instalação da extensão" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "Isto instalará a extensão agora na instância atual. A instância irá entrar em manutenção." -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "Instalação não confirmada" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "Qualquer nome do pacote URL deve ser fornecido" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "Ativar Extensão" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "Ativar esta extensão" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "Nenhum objeto válido fornecido para o modelo" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "Arquivo modelo '{template}' perdido ou não existe" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "Relatório de teste" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "Nome do modelo" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "Arquivo modelo de relatório" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "Descrição do modelo de relatório" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "Relatar número de revisão (auto-incrementos)" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "Padrão para gerar nomes de arquivo de relatórios" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "Modelo de relatório Habilitado" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "Filtros de consulta de itens de estoque(lista de valores separados por vírgula)" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "Incluir testes instalados" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "Incluir resultados de testes para itens de estoque instalados dentro de item montado" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "Filtros de Produção" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "Filtros de consulta de produção (lista de valores separados por vírgula" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "Filtros de Peças" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "Filtros de consulta de peças (lista de valores separados por vírgula" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "Filtros de consultas de pedidos de compra" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "Filtros de consultas de pedidos de venda" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "Filtrar pesquisa de itens devolvidos" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "Recorte" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "Relatar arquivo de recorte" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "Descrição do arquivo de recorte" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" -msgstr "Ativos" +msgstr "Patrimônio" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "Reportar arquivo de ativos" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "Descrição do arquivo de ativos" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "Materiais necessários" @@ -7478,8 +7492,8 @@ msgstr "Fornecedor foi excluído" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "Preço unitário" @@ -7491,26 +7505,30 @@ msgstr "Extra Itens de Linha" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "Total" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Número de Sério" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "Relatório Teste do Item em Estoque" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "Resultados do teste" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "Teste" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "Resultado" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "Itens instalados" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "Série" @@ -7564,8 +7582,8 @@ msgstr "ID do local" msgid "Location Name" msgstr "Nome do Local" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "Caminho do local" @@ -7620,31 +7638,31 @@ msgstr "Excluir quando esgotado" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "Data de validade" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "Localização externa" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "Quantidade obrigatória" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "Uma peça válida deve ser fornecida" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" -msgstr "" +msgstr "A peça do fornecedor informado não existe" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" -msgstr "" +msgstr "A peça do fornecedor tem um tamanho de pacote definido, mas o item use_pack_size não foi definida" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "Números de série não podem ser fornecidos para uma parte não rastreável" @@ -7654,8 +7672,8 @@ msgstr "Números de série não podem ser fornecidos para uma parte não rastre msgid "Stock Location" msgstr "Localizacao do estoque" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "Locais de estoque" @@ -7673,8 +7691,8 @@ msgstr "Selecionar Responsável" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "Os itens de estoque podem não estar diretamente localizados em um local de estoque estrutural, mas podem ser localizados em locais filhos." -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "Externo" @@ -7690,7 +7708,7 @@ msgstr "Você não pode tornar este local do estoque estrutural, pois alguns ite msgid "Stock items cannot be located into structural stock locations!" msgstr "Os itens de estoque não podem estar localizados em locais de estoque estrutural!" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "Item de estoque não pode ser criado para peças virtuais" @@ -7765,11 +7783,11 @@ msgstr "Produção para este item de estoque" #: stock/models.py:761 stock/templates/stock/item_base.html:364 msgid "Consumed By" -msgstr "" +msgstr "Consumido por" #: stock/models.py:763 msgid "Build order which consumed this stock item" -msgstr "" +msgstr "Pedido de produção que consumiu este item de estoque" #: stock/models.py:774 msgid "Source Purchase Order" @@ -7803,313 +7821,324 @@ msgstr "Preço de compra unitário único no momento da compra" msgid "Converted to part" msgstr "Convertido para peça" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "Peça não está definida como rastreável" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "Quantidade deve ser inteira" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "Quantidade não deve exceder a quantidade disponível em estoque ({n})" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "Números de série devem ser uma lista de números inteiros" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "A quantidade não corresponde aos números de série" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "Números de série já existem" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "Item em estoque foi reservado para um pedido" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "Item em estoque está instalado em outro item" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "item em estoque contem outro(s) items" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "Item em estoque foi reservado para outro cliente" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "Item no estoque está em produção no momento" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "Itens de série não podem ser mesclados" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "Item de estoque duplicado" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "Itens de estoque devem se referir à mesma peça" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "Itens de estoque devem se referir à mesma peça do fornecedor" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "Códigos de estado do estoque devem corresponder" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "Item do estoque não pode ser realocado se não houver estoque da mesma" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "Observações de entrada" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "Deve-se fornecer o valor desse teste" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "O anexo deve ser enviado para este teste" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "Nome de teste" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "Resultado do teste" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "Valor da saída do teste" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "Anexo do resultado do teste" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "Notas do teste" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "Número de série é muito grande" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" -msgstr "" +msgstr "Usar tamanho do pacote ao adicionar: a quantidade definida é o número de pacotes" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" -msgstr "" +msgstr "Preço de compra para este item de estoque, por unidade ou pacote" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "Insira o número de itens de estoque para serializar" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Quantidade não deve exceder a quantidade disponível em estoque ({q})" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "Inserir número de série para novos itens" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "Local de destino do estoque" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "Campo opcional de notas" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "Números de série não podem ser atribuídos a esta peça" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "Selecione o item de estoque para instalar" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "Item de estoque indisponível" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "Peça selecionada não está na Lista de Materiais" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "Local de destino para o item desinstalado" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "Adicionar nota de transação (opcional)" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "Item de estoque indisponível" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "Peça selecionada não está na Lista de Materiais" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "Local de destino para o item desinstalado" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "Selecione peça para converter o item de estoque em" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "Peça selecionada não é uma opção válida para conversão" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "Local de destino para item retornado" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "Selecionar itens de estoque para mudar estados" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "Nenhum item de estoque selecionado" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "Parte deve ser comercializável" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "Item é alocado para um pedido de venda" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "Item está alocado a um pedido de produção" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "Cliente para atribuir itens de estoque" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "A empresa selecionada não é um cliente" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" -msgstr "" +msgstr "Nodas atribuídas a estoque" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" -msgstr "" +msgstr "Uma lista de item de estoque deve ser providenciada" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" -msgstr "" +msgstr "Notas de fusão de estoque" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" -msgstr "" +msgstr "Permitir fornecedores divergentes" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" -msgstr "" +msgstr "Permitir a fusão de itens de estoque de fornecedores diferentes" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "Permitir estado incompatível" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "Permitir a fusão de itens de estoque com estado diferentes" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" -msgstr "" +msgstr "Ao menos dois itens de estoque devem ser providenciados" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" -msgstr "" +msgstr "Valor da chave primária do Item Estoque" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" -msgstr "" +msgstr "Notas da transação de estoque" #: stock/templates/stock/item.html:17 msgid "Stock Tracking Information" -msgstr "" +msgstr "Informações de Rastrrio de Estoque" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" -msgstr "" +msgstr "Itens de Estoque Filhos" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" -msgstr "" +msgstr "Este item de estoque não possuí nenhum filho" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" -msgstr "" +msgstr "Dados de teste" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" -msgstr "" +msgstr "Relatório do teste" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" -msgstr "" +msgstr "Excluir dados de teste" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" -msgstr "" +msgstr "Adicionar dados de teste" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "Notas de Item Estoque" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" -msgstr "" +msgstr "Itens de Estoque Instalados" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" -msgstr "" +msgstr "Instalar Item de Estoque" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" -msgstr "" +msgstr "Excluir todos os resultados de teste deste item de estoque" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" -msgstr "" +msgstr "Adicionar Resultado de Teste" #: stock/templates/stock/item_base.html:34 msgid "Locate stock item" -msgstr "" +msgstr "Localizar item de estoque" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" -msgstr "" +msgstr "Escanear a Localização" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" -msgstr "" +msgstr "Ações de Impressão" #: stock/templates/stock/item_base.html:76 msgid "Stock adjustment actions" -msgstr "" +msgstr "Ações de ajuste de estoque" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" -msgstr "" +msgstr "Contagem de estoque" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "Adicionar estoque" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "Remover estoque" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "Serializar estoque" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "Transferir estoque" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "Disponibilizar para o cliente" @@ -8162,6 +8192,11 @@ msgstr "Editar item de estoque" msgid "Delete stock item" msgstr "Excluir item de estoque" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Produção" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "Item Primário" @@ -8172,10 +8207,10 @@ msgstr "Nenhum fabricante definido" #: stock/templates/stock/item_base.html:252 msgid "You are not in the list of owners of this item. This stock item cannot be edited." -msgstr "Vc não está autorizado a editar esse item." +msgstr "Você não está autorizado a editar esse item." #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "Somente leitura" @@ -8193,66 +8228,66 @@ msgstr "Edite este item usando o formulário de construçao." #: stock/templates/stock/item_base.html:288 msgid "This stock item is allocated to Sales Order" -msgstr "" +msgstr "Este item de estoque está alocado a uma ordem de venda" #: stock/templates/stock/item_base.html:296 msgid "This stock item is allocated to Build Order" -msgstr "" +msgstr "Este item de estoque está alocado a uma ordem de produção" #: stock/templates/stock/item_base.html:312 msgid "This stock item is serialized. It has a unique serial number and the quantity cannot be adjusted" -msgstr "" +msgstr "Este item de estoque é serializado. Tem um único número de série e a quantidade não pode ser ajustada" #: stock/templates/stock/item_base.html:318 msgid "previous page" -msgstr "" +msgstr "página anterior" #: stock/templates/stock/item_base.html:318 msgid "Navigate to previous serial number" -msgstr "" +msgstr "Navegar para o número de série anterior" #: stock/templates/stock/item_base.html:327 msgid "next page" -msgstr "" +msgstr "próxima página" #: stock/templates/stock/item_base.html:327 msgid "Navigate to next serial number" -msgstr "" +msgstr "Navegar para o próximo número de série" #: stock/templates/stock/item_base.html:341 msgid "Available Quantity" -msgstr "" +msgstr "Quantidade Disponível" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" -msgstr "" +msgstr "Nenhum local definido" #: stock/templates/stock/item_base.html:409 msgid "Tests" -msgstr "" +msgstr "Testes" #: stock/templates/stock/item_base.html:415 msgid "This stock item has not passed all required tests" -msgstr "" +msgstr "Este item de estoque não passou todos os testes necessários" #: stock/templates/stock/item_base.html:433 #, python-format msgid "This StockItem expired on %(item.expiry_date)s" -msgstr "" +msgstr "Este Item do Estoque expirou em %(item.expiry_date)s" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" -msgstr "" +msgstr "Expirado" #: stock/templates/stock/item_base.html:435 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" -msgstr "" +msgstr "Este Item do Estoque expira em %(item.expiry_date)s" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "Inativo" @@ -8261,9 +8296,9 @@ msgid "No stocktake performed" msgstr "Nenhum balanço feito" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" -msgstr "" +msgstr "item de estoque" #: stock/templates/stock/item_base.html:528 msgid "Edit Stock Status" @@ -8271,39 +8306,39 @@ msgstr "Editar Situação do Estoque" #: stock/templates/stock/item_base.html:537 msgid "Stock Item QR Code" -msgstr "" +msgstr "QR Code do Item de Estoque" #: stock/templates/stock/item_base.html:548 msgid "Link Barcode to Stock Item" -msgstr "" +msgstr "Ligar Código de barras ao item de estoque" #: stock/templates/stock/item_base.html:612 msgid "Select one of the part variants listed below." -msgstr "" +msgstr "Selecione uma das peças variantes listada abaixo." #: stock/templates/stock/item_base.html:615 msgid "Warning" -msgstr "" +msgstr "Atenção" #: stock/templates/stock/item_base.html:616 msgid "This action cannot be easily undone" -msgstr "" +msgstr "Esta ação não pode ser facilmente desfeita" #: stock/templates/stock/item_base.html:624 msgid "Convert Stock Item" -msgstr "" +msgstr "Converter Item de Estoque" #: stock/templates/stock/item_base.html:654 msgid "Return to Stock" -msgstr "" +msgstr "Retornar ao estoque" #: stock/templates/stock/item_serialize.html:5 msgid "Create serialized items from this stock item." -msgstr "" +msgstr "Criar itens serializados deste item de estoque." #: stock/templates/stock/item_serialize.html:7 msgid "Select quantity to serialize, and unique serial numbers." -msgstr "" +msgstr "Selecione a quantidade para serializar e números de série único." #: stock/templates/stock/location.html:37 msgid "Perform stocktake for this stock location" @@ -8311,115 +8346,119 @@ msgstr "Fazer balanço para o estoque deste local" #: stock/templates/stock/location.html:44 msgid "Locate stock location" -msgstr "" +msgstr "Localizar o local de estoque" #: stock/templates/stock/location.html:62 msgid "Scan stock items into this location" -msgstr "" +msgstr "Buscar itens de estoque neste local" #: stock/templates/stock/location.html:62 msgid "Scan In Stock Items" -msgstr "" +msgstr "Buscar nos Itens de Estoque" #: stock/templates/stock/location.html:63 msgid "Scan stock container into this location" -msgstr "" +msgstr "Buscar recipiente do estoque neste local" #: stock/templates/stock/location.html:63 msgid "Scan In Container" +msgstr "Buscar no recipiente" + +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:103 msgid "Location actions" -msgstr "" +msgstr "Ações de Locais" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" -msgstr "" +msgstr "Editar Local" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" -msgstr "" +msgstr "Excluir Local" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" -msgstr "" +msgstr "Local de estoque de alto nível" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" -msgstr "" +msgstr "Dono do Local" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." -msgstr "" +msgstr "Você não está na lista de donos deste local. Este local de estoque não pode ser editado." -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" -msgstr "" - -#: stock/templates/stock/location.html:215 -msgid "Create new stock location" -msgstr "" +msgstr "Sub-locais" #: stock/templates/stock/location.html:216 +msgid "Create new stock location" +msgstr "Criar novo local de estoque" + +#: stock/templates/stock/location.html:217 msgid "New Location" -msgstr "" +msgstr "Novo local" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" -msgstr "" +msgstr "local de estoque" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" -msgstr "" +msgstr "Escaneado o recipiente de estoque neste local" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" -msgstr "" +msgstr "Código QR do Local de Estoque" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" -msgstr "" +msgstr "Ligar Código de barras ao Local de Estoque" #: stock/templates/stock/stock_app_base.html:16 msgid "Loading..." -msgstr "" +msgstr "Carregando..." #: stock/templates/stock/stock_sidebar.html:5 msgid "Stock Tracking" -msgstr "" +msgstr "Rastreamento de estoque" #: stock/templates/stock/stock_sidebar.html:8 msgid "Allocations" -msgstr "" +msgstr "Alocações" #: stock/templates/stock/stock_sidebar.html:20 msgid "Child Items" -msgstr "" +msgstr "Itens Filhos" #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" -msgstr "" +msgstr "Permissão Negada" #: templates/403.html:15 msgid "You do not have permission to view this page." -msgstr "" +msgstr "Você não tem permissão para visualizar esta página." #: templates/403_csrf.html:11 msgid "Authentication Failure" -msgstr "" +msgstr "Falha na Autenticação" #: templates/403_csrf.html:14 msgid "You have been logged out from InvenTree." -msgstr "" +msgstr "Você foi desconectado do InvenTree." #: templates/403_csrf.html:19 templates/InvenTree/settings/sidebar.html:29 #: templates/navbar.html:147 msgid "Login" -msgstr "" +msgstr "Iniciar sessão" #: templates/404.html:6 templates/404.html:12 msgid "Page Not Found" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "Estoque Inativo" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8644,19 +8683,19 @@ msgstr "" #: templates/InvenTree/settings/part.html:7 msgid "Part Settings" -msgstr "" +msgstr "Configurações de Peça" #: templates/InvenTree/settings/part.html:42 msgid "Part Import" -msgstr "" +msgstr "Peça importada" #: templates/InvenTree/settings/part.html:46 msgid "Import Part" -msgstr "" +msgstr "Importar Peça" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" -msgstr "" +msgstr "Modelo de Parâmetro da Peça" #: templates/InvenTree/settings/part_stocktake.html:7 msgid "Stocktake Settings" @@ -8669,232 +8708,208 @@ msgstr "Relatório de Balanço" #: templates/InvenTree/settings/plugin.html:9 #: templates/InvenTree/settings/sidebar.html:62 msgid "Plugin Settings" -msgstr "" +msgstr "Configurações da Extensão" #: 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 "" +msgstr "Alterar as configurações abaixo requer que você reinicie imediatamente o servidor. Não altere isso enquanto estiver em uso." -#: templates/InvenTree/settings/plugin.html:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" -msgstr "" +msgstr "Extensões" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" -msgstr "" +msgstr "Instalar extensão" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" -msgstr "" +msgstr "Extensões externos não estão ativados para esta instalação do InvenTree" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" -msgstr "" +msgstr "Erro da Pilha da Extensão" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" -msgstr "" +msgstr "Fase" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" +msgstr "Mensagem" #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" -msgstr "" +msgstr "Informações da extensões" + +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "Versão" #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" -msgstr "" +msgstr "nenhuma informação de versão fornecida" #: templates/InvenTree/settings/plugin_settings.html:61 msgid "License" -msgstr "" +msgstr "Licença" #: 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 "" +msgstr "A informação de código é retirada do último git commit para esta extensão. Pode não refletir números de versão ou informações oficiais, mas sim o código em execução." #: templates/InvenTree/settings/plugin_settings.html:76 msgid "Package information" -msgstr "" +msgstr "Informações do pacote" #: templates/InvenTree/settings/plugin_settings.html:82 msgid "Installation method" -msgstr "" +msgstr "Método de instalação" #: templates/InvenTree/settings/plugin_settings.html:85 msgid "This plugin was installed as a package" -msgstr "" +msgstr "Esta extensão foi instalada como um pacote" #: templates/InvenTree/settings/plugin_settings.html:87 msgid "This plugin was found in a local server path" -msgstr "" +msgstr "Esta extensão foi encontrada no caminho do servidor local" #: templates/InvenTree/settings/plugin_settings.html:93 msgid "Installation path" -msgstr "" +msgstr "Caminho de instalação" + +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "Embutido" #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" -msgstr "" +msgstr "Esse é uma extensão embutida que não pode ser desativado" #: templates/InvenTree/settings/plugin_settings.html:106 msgid "Commit Author" -msgstr "" +msgstr "Autor do Commit" #: templates/InvenTree/settings/plugin_settings.html:110 #: templates/about.html:36 msgid "Commit Date" -msgstr "" +msgstr "Data do commit" #: templates/InvenTree/settings/plugin_settings.html:114 #: templates/about.html:29 msgid "Commit Hash" -msgstr "" +msgstr "Hash do Commit" #: templates/InvenTree/settings/plugin_settings.html:118 msgid "Commit Message" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "Placa da Situação" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" +msgstr "Mensagem do Commit" #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" -msgstr "" +msgstr "Configurações do Pedido de Compra" #: templates/InvenTree/settings/pricing.html:7 msgid "Pricing Settings" -msgstr "" +msgstr "Configurações de preços" #: templates/InvenTree/settings/pricing.html:34 msgid "Exchange Rates" -msgstr "" +msgstr "Taxas de Câmbio" #: templates/InvenTree/settings/pricing.html:38 msgid "Update Now" -msgstr "" +msgstr "Atualizar agora" #: templates/InvenTree/settings/pricing.html:46 #: templates/InvenTree/settings/pricing.html:50 msgid "Last Update" -msgstr "" +msgstr "Última Atualização" #: templates/InvenTree/settings/pricing.html:50 msgid "Never" -msgstr "" +msgstr "Nunca" #: templates/InvenTree/settings/project_codes.html:8 msgid "Project Code Settings" -msgstr "" +msgstr "Configurações de código do projeto" #: templates/InvenTree/settings/project_codes.html:21 #: templates/InvenTree/settings/sidebar.html:33 msgid "Project Codes" -msgstr "" +msgstr "Códigos de Projeto" #: templates/InvenTree/settings/project_codes.html:25 #: templates/InvenTree/settings/settings_staff_js.html:120 msgid "New Project Code" -msgstr "" +msgstr "Novo Código de Projeto" #: templates/InvenTree/settings/report.html:8 #: templates/InvenTree/settings/user_reporting.html:9 msgid "Report Settings" -msgstr "" +msgstr "Configurações de relatórios" #: templates/InvenTree/settings/returns.html:7 msgid "Return Order Settings" -msgstr "" +msgstr "Configurações de Pedido de Devolução" #: templates/InvenTree/settings/setting.html:31 msgid "No value set" -msgstr "" +msgstr "Nenhum valor definido" #: templates/InvenTree/settings/setting.html:44 msgid "Edit setting" -msgstr "" +msgstr "Editar configurações" #: templates/InvenTree/settings/settings_js.html:58 msgid "Edit Plugin Setting" -msgstr "" +msgstr "Editar configurações da extensão" #: templates/InvenTree/settings/settings_js.html:60 msgid "Edit Notification Setting" -msgstr "" +msgstr "Editar Configurações de Notificação" #: templates/InvenTree/settings/settings_js.html:63 msgid "Edit Global Setting" -msgstr "" +msgstr "Editar Configurações Globais" #: templates/InvenTree/settings/settings_js.html:65 msgid "Edit User Setting" -msgstr "" +msgstr "Editar Configurações de Usuário" #: templates/InvenTree/settings/settings_staff_js.html:49 msgid "Rate" -msgstr "" +msgstr "Taxa" #: templates/InvenTree/settings/settings_staff_js.html:64 msgid "No project codes found" -msgstr "" +msgstr "Nenhum código de projetos encontrado" #: templates/InvenTree/settings/settings_staff_js.html:80 #: templates/InvenTree/settings/settings_staff_js.html:94 msgid "Edit Project Code" -msgstr "" +msgstr "Editar Código do Projeto" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/InvenTree/settings/settings_staff_js.html:107 msgid "Delete Project Code" -msgstr "" +msgstr "Excluir Código do Projeto" #: templates/InvenTree/settings/settings_staff_js.html:189 msgid "No category parameter templates found" -msgstr "" +msgstr "Nenhum modelo de parâmetro de categoria encontrado" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9103,24 +9119,24 @@ msgstr "" #: templates/InvenTree/settings/user.html:204 #, python-format msgid "%(time)s ago (this session)" -msgstr "" +msgstr "%(time)s atrás (esta sessão)" #: templates/InvenTree/settings/user.html:206 #, python-format msgid "%(time)s ago" -msgstr "" +msgstr "%(time)s atrás" #: templates/InvenTree/settings/user.html:218 msgid "Do you really want to remove the selected email address?" -msgstr "" +msgstr "Você realmente deseja remover o endereço de e-mail selecionado?" #: templates/InvenTree/settings/user_display.html:9 msgid "Display Settings" -msgstr "" +msgstr "Definições de Exibição" #: templates/InvenTree/settings/user_display.html:29 msgid "Theme Settings" -msgstr "" +msgstr "Configurações de tema" #: templates/InvenTree/settings/user_display.html:39 msgid "Select theme" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "Identificador de Código de Barras" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "Saídas concluídas" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "Exlcuir saídas" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Pedir peças" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "Apagar peças do fabricante" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "Excluir peças do fornecedor" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Excluir" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "Criar Categoria de Peça" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "Programar geração de um novo relatório de balanço." -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "Uma vez concluído, o relatório de estoque estará disponível para baixar." -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "Gerar Relatório de Balanço" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "Relatório de balanço agendado" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "Nenhuma informação de balanço disponível" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "Editar Lançamento de Balanço" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "Apagar Lançamento de Balanço" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "Definir categoria" + +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2349 +msgid "No category" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "Situação do Estoque" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "Envios concluídos" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "Situação dos Pedidos" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "Estado do Estoque" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "Estado da Produção" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "Tem entradas em balanço" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "Fazer balanço de itens do estoque selecionados" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "Grupo" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/pt_br/LC_MESSAGES/django.po b/InvenTree/locale/pt_br/LC_MESSAGES/django.po index 85d1a15c96..697fb1a053 100644 --- a/InvenTree/locale/pt_br/LC_MESSAGES/django.po +++ b/InvenTree/locale/pt_br/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 21:56+0000\n" +"POT-Creation-Date: 2023-07-04 21:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,19 +26,19 @@ msgstr "" msgid "User does not have permission to view this model" msgstr "" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -50,26 +50,26 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "" @@ -82,47 +82,51 @@ msgstr "" msgid "Provided value does not match required pattern: " msgstr "" -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "" -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "" -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "" @@ -238,9 +242,9 @@ msgstr "" msgid "Missing external link" msgstr "" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "" @@ -248,29 +252,30 @@ msgstr "" msgid "Select file to attach" msgstr "" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2681 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "" @@ -278,13 +283,13 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2140 +#: common/models.py:2141 common/models.py:2354 common/models.py:2355 +#: common/models.py:2611 common/models.py:2612 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "" @@ -325,54 +330,54 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2340 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:159 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:172 +#: report/models.py:575 report/models.py:619 #: report/templates/report/inventree_build_order_base.html:117 #: stock/admin.py:41 stock/templates/stock/location.html:123 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "" @@ -385,7 +390,7 @@ msgid "parent" msgstr "" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "" @@ -421,12 +426,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3873 +#: InvenTree/serializers.py:60 part/models.py:3935 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -499,316 +504,319 @@ msgstr "" msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -832,99 +840,127 @@ msgstr "" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3827 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3821 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3774 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3836 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3531 -#: part/models.py:3639 part/models.py:3739 part/models.py:4053 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3583 +#: part/models.py:3706 part/models.py:3801 part/models.py:4115 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -934,266 +970,229 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2162 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3755 +#: part/forms.py:47 part/models.py:3029 part/models.py:3817 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1202,315 +1201,367 @@ msgstr "" #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:668 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3662 -#: part/models.py:4045 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1539,6 +1590,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1617,69 +1669,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1687,32 +1737,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1728,8 +1778,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1743,21 +1793,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1765,147 +1815,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1913,14 +1922,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1967,16 +1972,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2260,9 +2255,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3536 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3588 +#: report/models.py:165 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2270,10 +2265,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2281,8 +2276,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2290,7 +2285,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2298,8 +2293,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2307,10 +2302,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2318,10 +2313,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2353,7 +2348,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2602,179 +2597,179 @@ msgid "Stock location default icon (empty means no icon)" msgstr "" #: common/models.py:1471 -msgid "Build Order Reference Pattern" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Required pattern for generating Purchase Order reference field" +msgstr "" + +#: common/models.py:1534 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" -msgstr "" - -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1542 -msgid "Enable registration" +msgid "Enable password forgot" msgstr "" #: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable registration" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable SSO" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Email required" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Mail twice" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Password twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Allowed domains" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Group on signup" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Group to which new users are assigned on registration" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Enforce MFA" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Users must use multifactor security." +msgstr "" + +#: common/models.py:1619 +msgid "Check plugins on startup" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" -msgstr "" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" #: common/models.py:1628 @@ -2849,7 +2844,7 @@ msgstr "" msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1710 common/models.py:2133 msgid "Settings key (must be unique - case insensitive" msgstr "" @@ -2890,528 +2885,513 @@ msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "" - -#: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1787 +#: common/models.py:1780 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1793 +#: common/models.py:1786 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1794 +#: common/models.py:1787 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 +#: common/models.py:1793 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1794 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1800 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1801 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1807 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1808 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1814 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1815 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1821 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1822 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1828 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1829 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1835 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1836 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1842 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1843 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1849 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1850 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1856 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1857 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1863 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1864 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1870 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1871 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1877 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1878 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1884 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1885 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1891 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1892 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1898 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1899 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1905 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1906 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1912 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1913 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1919 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1920 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1926 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1927 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1933 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1934 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1940 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1941 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1947 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1948 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1954 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1955 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1961 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1962 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1968 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1969 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1975 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1976 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1982 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1983 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1989 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1990 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:1996 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:1997 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2003 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2004 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2010 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2011 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2017 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2018 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2024 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2025 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2031 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2032 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2038 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2039 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2045 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2046 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2052 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2053 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2059 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2060 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2074 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2075 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2081 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2082 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2088 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2089 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2098 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2099 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2107 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2108 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2116 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2117 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2163 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2170 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2171 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2331 common/models.py:2509 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2332 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2341 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2346 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2347 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2361 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2362 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2369 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2370 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2476 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2477 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2485 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2486 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2493 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2494 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2500 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2501 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2510 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2515 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2516 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2670 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2676 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2686 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2691 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2696 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2701 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2702 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2722 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3421,7 +3401,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2723 msgid "Image file" msgstr "" @@ -3498,7 +3478,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3506,303 +3486,387 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3777 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3839 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3815,7 +3879,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3855,17 +3919,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3873,6 +3937,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3905,7 +3976,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3915,129 +3986,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4049,17 +4112,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4079,40 +4142,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4136,23 +4181,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4163,13 +4213,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4196,7 +4246,7 @@ msgstr "" #: company/templates/company/supplier_part.html:211 #: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4204,37 +4254,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 +#: stock/serializers.py:662 stock/templates/stock/location.html:168 #: stock/templates/stock/location.html:182 #: stock/templates/stock/location.html:194 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4260,7 +4310,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4268,77 +4318,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:272 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:265 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:293 report/models.py:440 +#: report/models.py:478 report/models.py:516 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4347,569 +4390,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4956,82 +5003,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5084,13 +5123,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5151,9 +5190,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5164,30 +5203,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5207,29 +5241,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5247,7 +5281,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5256,16 +5290,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5273,18 +5307,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5310,12 +5343,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3643 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3710 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3647 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3714 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5324,19 +5357,19 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:178 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5357,24 +5390,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5382,23 +5415,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5415,13 +5441,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5438,7 +5464,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3651 +#: part/admin.py:274 part/models.py:3718 msgid "Part IPN" msgstr "" @@ -5452,35 +5478,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5490,7 +5516,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5498,917 +5524,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3592 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3659 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3648 +#: part/models.py:850 part/models.py:3715 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3591 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3658 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3539 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3531 +#: part/models.py:3583 msgid "Parent Part" msgstr "" -#: part/models.py:3536 part/models.py:3597 part/models.py:3598 +#: part/models.py:3588 part/models.py:3664 part/models.py:3665 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3541 +#: part/models.py:3593 msgid "Data" msgstr "" -#: part/models.py:3541 +#: part/models.py:3593 msgid "Parameter Value" msgstr "" -#: part/models.py:3602 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3669 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3603 +#: part/models.py:3670 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3640 +#: part/models.py:3707 msgid "Part ID or part name" msgstr "" -#: part/models.py:3644 +#: part/models.py:3711 msgid "Unique part ID value" msgstr "" -#: part/models.py:3652 +#: part/models.py:3719 msgid "Part IPN value" msgstr "" -#: part/models.py:3655 +#: part/models.py:3722 msgid "Level" msgstr "" -#: part/models.py:3656 +#: part/models.py:3723 msgid "BOM level" msgstr "" -#: part/models.py:3740 +#: part/models.py:3729 part/models.py:4107 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3802 msgid "Select parent part" msgstr "" -#: part/models.py:3748 +#: part/models.py:3810 msgid "Sub part" msgstr "" -#: part/models.py:3749 +#: part/models.py:3811 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3755 +#: part/models.py:3817 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3759 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3760 +#: part/models.py:3822 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3765 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3766 +#: part/models.py:3828 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3770 part/templates/part/upload_bom.html:55 +#: part/models.py:3832 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3771 +#: part/models.py:3833 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3774 +#: part/models.py:3836 msgid "BOM item reference" msgstr "" -#: part/models.py:3777 +#: part/models.py:3839 msgid "BOM item notes" msgstr "" -#: part/models.py:3781 +#: part/models.py:3843 msgid "Checksum" msgstr "" -#: part/models.py:3781 +#: part/models.py:3843 msgid "BOM line checksum" msgstr "" -#: part/models.py:3786 templates/js/translated/table_filters.js:144 +#: part/models.py:3848 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3787 +#: part/models.py:3849 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3792 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3854 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3793 +#: part/models.py:3855 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3798 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3860 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3799 +#: part/models.py:3861 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3885 stock/models.py:577 +#: part/models.py:3947 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3894 part/models.py:3896 +#: part/models.py:3956 part/models.py:3958 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4012 +#: part/models.py:4074 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4033 +#: part/models.py:4095 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4046 +#: part/models.py:4108 msgid "Parent BOM item" msgstr "" -#: part/models.py:4054 +#: part/models.py:4116 msgid "Substitute part" msgstr "" -#: part/models.py:4069 +#: part/models.py:4131 msgid "Part 1" msgstr "" -#: part/models.py:4073 +#: part/models.py:4135 msgid "Part 2" msgstr "" -#: part/models.py:4073 +#: part/models.py:4135 msgid "Select Related Part" msgstr "" -#: part/models.py:4091 +#: part/models.py:4153 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4095 +#: part/models.py:4157 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6421,9 +6443,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6461,14 +6483,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6505,7 +6519,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6518,33 +6532,20 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6581,7 +6582,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6592,7 +6593,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6604,101 +6605,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6732,13 +6733,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6779,7 +6780,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6824,10 +6825,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6850,7 +6851,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6858,8 +6859,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6882,7 +6883,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6956,9 +6957,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6989,9 +6990,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7054,12 +7055,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7142,10 +7143,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "" @@ -7167,7 +7164,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7197,7 +7194,7 @@ msgid "InvenTree Notifications" msgstr "" #: plugin/builtin/integration/core_notifications.py:35 -msgid "Integrated outgoing notificaton methods" +msgid "Integrated outgoing notification methods" msgstr "" #: plugin/builtin/integration/core_notifications.py:40 @@ -7230,47 +7227,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 templates/InvenTree/settings/plugin_details.html:47 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7278,21 +7271,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7329,38 +7318,46 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + #: report/api.py:171 msgid "No valid objects provided to template" msgstr "" @@ -7374,91 +7371,91 @@ msgstr "" msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:160 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:166 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:173 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:179 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:266 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:273 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:294 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:302 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:303 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:364 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:365 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:406 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:407 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:441 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:479 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:517 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:570 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:571 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:575 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:612 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:613 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:620 msgid "Asset file description" msgstr "" @@ -7479,8 +7476,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7492,23 +7489,23 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" @@ -7521,12 +7518,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7552,8 +7549,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7621,31 +7618,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:580 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:587 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:613 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:622 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:640 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7656,7 +7653,7 @@ msgid "Stock Location" msgstr "" #: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7674,8 +7671,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7691,7 +7688,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7804,233 +7801,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8038,48 +8044,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8087,13 +8093,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8102,15 +8108,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:88 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8119,11 +8127,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:94 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8163,6 +8172,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8225,7 +8239,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8243,7 +8257,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8253,7 +8267,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8262,7 +8276,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8368,20 +8382,20 @@ msgstr "" msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:278 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:295 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:368 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:379 msgid "Link Barcode to Stock Location" msgstr "" @@ -8455,71 +8469,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8676,59 +8690,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8761,6 +8758,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8783,14 +8785,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8886,12 +8880,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8929,7 +8923,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9006,6 +9000,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9153,7 +9148,7 @@ msgid "Some languages are not complete" msgstr "" #: templates/InvenTree/settings/user_display.html:97 -msgid "Show only sufficent" +msgid "Show only sufficient" msgstr "" #: templates/InvenTree/settings/user_display.html:99 @@ -9220,44 +9215,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9451,14 +9450,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9503,7 +9494,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9517,7 +9508,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9589,23 +9580,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9662,7 +9665,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9720,743 +9723,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10464,31 +10561,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10513,6 +10610,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:253 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10530,23 +10633,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10566,6 +10669,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10667,7 +10778,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10716,7 +10827,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10732,370 +10843,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11136,234 +11287,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11392,941 +11543,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:249 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12358,51 +12541,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12585,50 +12768,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12661,34 +12800,34 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:236 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:244 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:247 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:247 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:249 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:251 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:251 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:253 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/ru/LC_MESSAGES/django.po b/InvenTree/locale/ru/LC_MESSAGES/django.po index 1a97cd5e8f..fd1c663f23 100644 --- a/InvenTree/locale/ru/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -23,23 +23,23 @@ msgstr "Конечная точка API не обнаружена" #: InvenTree/api.py:299 msgid "User does not have permission to view this model" -msgstr "" +msgstr "У пользователя недостаточно прав для просмотра этой модели!" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" -msgstr "" +msgstr "Не указано название" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" -msgstr "" +msgstr "Предоставленное значение не является допустимым числом" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" -msgstr "" +msgstr "Предоставленное значение имеет недопустимую единицу" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" -msgstr "" +msgstr "Предоставленное значение не может быть преобразовано в указанную единицу измерения" #: InvenTree/exceptions.py:90 msgid "Error details can be found in the admin panel" @@ -49,79 +49,83 @@ msgstr "Подробности об ошибке можно найти в пан msgid "Enter date" msgstr "Введите дату" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Заметки" #: InvenTree/format.py:152 #, python-brace-format msgid "Value '{name}' does not appear in pattern format" -msgstr "" +msgstr "Значение '{name}' отсутствует в формате шаблона" #: InvenTree/format.py:162 msgid "Provided value does not match required pattern: " msgstr "Предоставленное значение не соответствует требуемому формату: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Введите пароль" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Введите новый пароль" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Подтвердить пароль" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Подтвердите новый пароль" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Старый пароль" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Email (еще раз)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Подтверждение адреса электронной почты" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Вы должны вводить один и тот же адрес электронной почты." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Указанный основной адрес электронной почты неверен." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Указанный домен электронной почты не утверждён." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "Регистрация отключена." + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "недопустимое количество" @@ -131,22 +135,22 @@ msgstr "Пустая строка серийного номера" #: InvenTree/helpers.py:500 msgid "Duplicate serial" -msgstr "" +msgstr "Повторяющийся серийный номер" #: InvenTree/helpers.py:533 InvenTree/helpers.py:568 #, python-brace-format msgid "Invalid group range: {g}" -msgstr "" +msgstr "Некорректный идентификатор группы {g}" #: InvenTree/helpers.py:562 #, python-brace-format msgid "Group range {g} exceeds allowed quantity ({q})" -msgstr "" +msgstr "Диапазон групп {g} превышает допустимое количество ({q})" #: InvenTree/helpers.py:586 InvenTree/helpers.py:593 InvenTree/helpers.py:608 #, python-brace-format msgid "Invalid group sequence: {g}" -msgstr "" +msgstr "Неверная последовательность групп: {g}" #: InvenTree/helpers.py:618 msgid "No serial numbers found" @@ -155,11 +159,11 @@ msgstr "Серийных номеров не найдено" #: InvenTree/helpers.py:621 #, python-brace-format msgid "Number of unique serial numbers ({s}) must match quantity ({q})" -msgstr "" +msgstr "Число уникальных серийных номеров ({s}) должно соответствовать количеству ({q})" #: InvenTree/helpers.py:751 msgid "Remove HTML tags from this value" -msgstr "" +msgstr "Удалить HTML теги из этого значения" #: InvenTree/helpers_model.py:133 msgid "Connection error" @@ -167,7 +171,7 @@ msgstr "Ошибка соединения" #: InvenTree/helpers_model.py:137 InvenTree/helpers_model.py:142 msgid "Server responded with invalid status code" -msgstr "" +msgstr "Сервер ответил неверным кодом статуса" #: InvenTree/helpers_model.py:139 msgid "Exception occurred" @@ -175,7 +179,7 @@ msgstr "Произошло исключение" #: InvenTree/helpers_model.py:147 msgid "Server responded with invalid Content-Length value" -msgstr "" +msgstr "Сервер ответил неверным значением Контент-Длина" #: InvenTree/helpers_model.py:150 msgid "Image size is too large" @@ -183,51 +187,51 @@ msgstr "Изображение слишком большое" #: InvenTree/helpers_model.py:162 msgid "Image download exceeded maximum size" -msgstr "" +msgstr "Загрузка изображения превышен максимальный размер" #: InvenTree/helpers_model.py:167 msgid "Remote server returned empty response" -msgstr "" +msgstr "Удаленный сервер вернул пустой ответ" #: InvenTree/helpers_model.py:175 msgid "Supplied URL is not a valid image file" -msgstr "" +msgstr "Предоставленный URL не является допустимым файлом изображения" #: InvenTree/models.py:82 msgid "Metadata must be a python dict object" -msgstr "" +msgstr "Метаданные должны быть объектом python dict" #: InvenTree/models.py:86 msgid "Plugin Metadata" -msgstr "" +msgstr "Метаданные плагина" #: InvenTree/models.py:87 msgid "JSON metadata field, for use by external plugins" -msgstr "" +msgstr "Поле метаданных JSON для использования внешними плагинами" #: InvenTree/models.py:320 msgid "Improperly formatted pattern" -msgstr "" +msgstr "Неправильно отформатированный шаблон" #: InvenTree/models.py:327 msgid "Unknown format key specified" -msgstr "" +msgstr "Указан неизвестный ключ формата" #: InvenTree/models.py:333 msgid "Missing required format key" -msgstr "" +msgstr "Отсутствует требуемый ключ формата" #: InvenTree/models.py:345 msgid "Reference field cannot be empty" -msgstr "" +msgstr "Ссылочный идентификатор не может быть пустым" #: InvenTree/models.py:352 msgid "Reference must match required pattern" -msgstr "" +msgstr "Ссылка должна соответствовать шаблону {pattern}" #: InvenTree/models.py:383 msgid "Reference number is too large" -msgstr "" +msgstr "Номер ссылки слишком большой" #: InvenTree/models.py:465 msgid "Missing file" @@ -237,9 +241,9 @@ msgstr "Файл не найден" msgid "Missing external link" msgstr "Отсутствует внешняя ссылка" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Вложения" @@ -247,29 +251,30 @@ msgstr "Вложения" msgid "Select file to attach" msgstr "Выберите файл для вложения" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Ссылка" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Ссылка на внешний URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Комментарий" @@ -277,13 +282,13 @@ msgstr "Комментарий" msgid "File comment" msgstr "Комментарий к файлу" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Пользователь" @@ -318,60 +323,60 @@ msgstr "Ошибка переименования файла" #: InvenTree/models.py:604 msgid "Duplicate names cannot exist under the same parent" -msgstr "" +msgstr "Повторяющиеся имена не могут существовать под одним и тем же родителем" #: InvenTree/models.py:623 msgid "Invalid choice" msgstr "Неверный выбор" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Название" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Описание" @@ -384,48 +389,48 @@ msgid "parent" msgstr "родитель" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Путь" #: InvenTree/models.py:767 msgid "Markdown notes (optional)" -msgstr "" +msgstr "Описание обновления (необязательное)" #: InvenTree/models.py:794 msgid "Barcode Data" -msgstr "" +msgstr "Данные штрих-кода" #: InvenTree/models.py:795 msgid "Third party barcode data" -msgstr "" +msgstr "Данные стороннего штрих-кода" #: InvenTree/models.py:800 msgid "Barcode Hash" -msgstr "" +msgstr "Хэш штрих-кода" #: InvenTree/models.py:801 msgid "Unique hash of barcode data" -msgstr "" +msgstr "Уникальный хэш данных штрих-кода" #: InvenTree/models.py:846 msgid "Existing barcode found" -msgstr "" +msgstr "Обнаружен существующий штрих-код" #: InvenTree/models.py:900 msgid "Server Error" -msgstr "" +msgstr "Ошибка сервера" #: InvenTree/models.py:901 msgid "An error has been logged by the server." -msgstr "" +msgstr "Сервер зарегистрировал ошибку." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Должно быть действительным номером" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -433,7 +438,7 @@ msgstr "Валюта" #: InvenTree/serializers.py:93 msgid "Select currency from available options" -msgstr "" +msgstr "Выберите валюту из доступных вариантов" #: InvenTree/serializers.py:364 msgid "Filename" @@ -473,12 +478,12 @@ msgstr "Строки данных в файле не найдены" #: InvenTree/serializers.py:601 msgid "No data columns supplied" -msgstr "" +msgstr "Столбцы данных не предоставлены" #: InvenTree/serializers.py:678 #, python-brace-format msgid "Missing required column: '{name}'" -msgstr "" +msgstr "Отсутствует обязательный столбец: '{name}'" #: InvenTree/serializers.py:687 #, python-brace-format @@ -492,328 +497,331 @@ msgstr "Ссылка" #: InvenTree/serializers.py:714 msgid "URL of remote image file" -msgstr "" +msgstr "ССЫЛКА файла изображения на удаленном сервере" #: InvenTree/serializers.py:728 msgid "Downloading images from remote URL is not enabled" -msgstr "" +msgstr "Загрузка изображений с удаленного URL-адреса не включена" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Чешский" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Датский" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Немецкий" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Греческий" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Английский" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Испанский" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Испанский (Мексика)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Фарси / Персидский" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" -msgstr "" +msgstr "Финский" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Французский" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Иврит" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Венгерский" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Итальянский" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Японский" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Корейский" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Голландский" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Норвежский" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Польский" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Португальский" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Португальский (Бразильский диалект)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Русский" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Словенский" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Шведский" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Тайский" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Турецкий" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Вьетнамский" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Китайский" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Проверка фонового работника не удалась" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "Сервер электронной почты не настроен" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "Ошибка проверки состояния системы InvenTree" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Ожидаемый" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Размещены" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Готово" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Отменено" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Потерян" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Возвращено" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" -msgstr "" +msgstr "Выполняется" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Доставлено" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "Да" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Требует внимания" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Поврежденный" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Разрушено" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Отклоненный" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" -msgstr "" +msgstr "Карантин" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Отслеживание устаревших запасов" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Товар создан" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Отредактированный товар" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Присвоенный серийный номер" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Склад подсчитан" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Добавлен вручную" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Удалено вручную" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Расположение изменено" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" -msgstr "" +msgstr "Запас обновлен" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Укомплектовано" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Удалено из сборки" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Установленный элемент компонента" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Удален элемент компонента" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Отделить от родительского элемента" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Разбить дочерний элемент" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Объединенные позиции на складе" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" -msgstr "" +msgstr "Преобразовать в разновидность" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Отправлено клиенту" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Возвращено от клиента" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Создан вывод заказа сборки" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Вывод заказа сборки завершён" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" -msgstr "" +msgstr "Выходные данные заказа на сборку отклонены" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" -msgstr "" +msgstr "Потребляется по порядку сборки" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" -msgstr "" +msgstr "Отгружено по заказу на продажу" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" -msgstr "" +msgstr "Получено по заказу на поставку" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" -msgstr "" +msgstr "Возвращено против заказа на возврат" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Отправлено клиенту" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Возвращено от клиента" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Продукция" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" -msgstr "" - -#: InvenTree/status_codes.py:434 -msgid "Repair" -msgstr "" - -#: InvenTree/status_codes.py:435 -msgid "Refund" msgstr "Возврат" -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:194 +msgid "Repair" +msgstr "Починить" + +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "Заменить" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "Возврат" + +#: InvenTree/status_codes.py:203 msgid "Reject" -msgstr "" +msgstr "Отклонить" #: InvenTree/validators.py:32 InvenTree/validators.py:34 msgid "Invalid physical unit" -msgstr "" +msgstr "Неверная физическая единица" #: InvenTree/validators.py:40 msgid "Not a valid currency code" @@ -831,99 +839,127 @@ msgstr "Перегрузка не может превысить 100%" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Редактировать информацию о пользователе" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Установить пароль" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Пароли должны совпадать" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" -msgstr "" +msgstr "Указан неверный пароль" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Информация о системе" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" -msgstr "" +msgstr "О программе InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" -msgstr "" +msgstr "Сборка должна быть отменена перед удалением" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "Расходники" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "Необязательно" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "Отслеживается" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "Выделено" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Порядок сборки" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Порядок сборки" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Неверный выбор для родительской сборки" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Ссылка на заказ" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Отсылка" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Родительская сборка" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Детали" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Выберите часть для сборки" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Отсылка на заказ" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Расположение источника" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Место назначения" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Выберите место хранения завершенных элементов" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Количество сборки" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Количество складских предметов для сборки" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Завершенные предметы" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Количество предметов на складе, которые были завершены" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Статус сборки" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Код статуса сборки" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Код партии" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Код партии для этого вывода сборки" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Дата создания" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Целевая дата завершения" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Целевая дата для сборки. Сборка будет просрочена после этой даты." -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Дата завершения" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "выполнено" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Выдал/ла" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Пользователь, выпустивший этот заказ на сборку" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Ответственный" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" -msgstr "" +msgstr "Пользователь, ответственный за сборку этого заказа" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Внешняя ссылка" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" -msgstr "" +msgstr "Приоритет сборки" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "Код проекта" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Вывод сборки не указан" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Вывод сборки уже завершен" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Вывод сборки не совпадает с порядком сборки" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "Количество должно быть больше нуля" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" -msgstr "Элемент сборки должен указать вывод сборки, так как основная часть помечена как отслеживаемая" +#: build/models.py:1265 +msgid "Build object" +msgstr "Построить объект" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Предмет на складе перераспределен" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Выделенное количество должно быть больше нуля" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Количество должно быть 1 для сериализованных запасов" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Выбранная единица хранения не найдена в BOM" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Сборка" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Предметы на складе" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Исходный складской предмет" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Количество" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "Элемент сборки должен указать вывод сборки, так как основная часть помечена как отслеживаемая" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "Выделенное количество ({q}) не должно превышать доступное количество на складе ({a})" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Предмет на складе перераспределен" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Выделенное количество должно быть больше нуля" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Количество должно быть 1 для сериализованных запасов" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Предметы на складе" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Исходный складской предмет" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Установить в" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" -msgstr "" +msgstr "Вывод результата сборки" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "Результат сборки не совпадает с родительской сборкой" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Результат этой сборки уже помечен как завершенный" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Введите количество для вывода сборки" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Серийные номера" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Введите серийные номера для результатов сборки" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Расположение" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" -msgstr "" +msgstr "Отклонить распределения" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" -msgstr "" +msgstr "Отменить любые распределения запасов для отбракованных выходов" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Статус" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" -msgstr "" +msgstr "Нет разрешения" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" -msgstr "" +msgstr "Перераспределенные запасы" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" -msgstr "" +msgstr "Как вы хотите обработать дополнительные товары, назначенные для заказа на сборку" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" -msgstr "" +msgstr "Некоторые товары на складе перераспределены" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "BOM Компонент" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "Компонент должен быть в наличии" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Превышено доступное количество ({q})" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" -msgstr "" +msgstr "Исключить местоположение" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" -msgstr "" +msgstr "Заменить запасы" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" -msgstr "" +msgstr "Необязательные элементы" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1519,7 +1572,7 @@ msgstr "Для заказа сборки необходим остаток" #: build/tasks.py:119 msgid "Overdue Build Order" -msgstr "" +msgstr "Просроченный заказ сборки" #: build/tasks.py:124 #, python-brace-format @@ -1528,7 +1581,7 @@ msgstr "" #: build/templates/build/build_base.html:18 msgid "Part thumbnail" -msgstr "" +msgstr "Миниатюра детали" #: build/templates/build/build_base.html:39 #: company/templates/company/supplier_part.html:36 @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Действия со штрих-кодом" @@ -1550,7 +1604,7 @@ msgstr "Действия со штрих-кодом" #: stock/templates/stock/item_base.html:45 #: stock/templates/stock/location.html:56 templates/qr_button.html:1 msgid "Show QR Code" -msgstr "" +msgstr "Показать QR-код" #: build/templates/build/build_base.html:46 #: company/templates/company/supplier_part.html:42 @@ -1563,7 +1617,7 @@ msgstr "" #: templates/js/translated/barcode.js:479 #: templates/js/translated/barcode.js:484 msgid "Unlink Barcode" -msgstr "" +msgstr "Отвязать штрих-код" #: build/templates/build/build_base.html:48 #: company/templates/company/supplier_part.html:44 @@ -1574,7 +1628,7 @@ msgstr "" #: stock/templates/stock/item_base.html:50 #: stock/templates/stock/location.html:60 msgid "Link Barcode" -msgstr "" +msgstr "Привязать штрих-код" #: build/templates/build/build_base.html:57 #: order/templates/order/order_base.html:46 @@ -1601,7 +1655,7 @@ msgstr "Отменить сборку" #: build/templates/build/build_base.html:77 msgid "Duplicate Build" -msgstr "" +msgstr "Дублировать сборку" #: build/templates/build/build_base.html:80 msgid "Delete Build" @@ -1616,69 +1670,67 @@ msgstr "Завершить сборку" msgid "Build Description" msgstr "Описание сборки" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" -msgstr "" +msgstr "Нет результатов сборки для этого заказа сборки" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" -msgstr "" +msgstr "Заказ на сборку готов к отметке как выполненный" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Целевая дата" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "Просрочено" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Завершённые" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,34 +1738,34 @@ msgstr "Завершённые" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Заказ покупателя" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Выдано" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" -msgstr "" +msgstr "Приоритет" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "Удалить заказ на сборку" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" -msgstr "" +msgstr "Создать QR-код заказа" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" -msgstr "" +msgstr "Привязать штрих-код для заказа сборки" #: build/templates/build/detail.html:15 msgid "Build Details" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Назначение" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Партия" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Создано" @@ -1764,147 +1816,106 @@ msgstr "Создано" msgid "No target date set" msgstr "Нет конечной даты" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Заказать детали" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "Вывод" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Заметки сборки" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Новый заказ на сборку" @@ -1912,14 +1923,10 @@ msgstr "Новый заказ на сборку" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "Незавершенные выходные данные" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1960,22 +1967,12 @@ msgstr "Выберите {name} файл для загрузки" #: common/models.py:68 msgid "Updated" -msgstr "" +msgstr "Обновлено" #: common/models.py:69 msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2039,7 +2036,7 @@ msgstr "" #: common/models.py:943 msgid "Use instance name" -msgstr "" +msgstr "Название инстанса" #: common/models.py:944 msgid "Use the instance name in the title-bar" @@ -2087,7 +2084,7 @@ msgstr "" #: common/models.py:986 msgid "Download Size Limit" -msgstr "" +msgstr "Ограничение размера загрузки" #: common/models.py:987 msgid "Maximum allowable download size for remote image" @@ -2111,7 +2108,7 @@ msgstr "" #: common/models.py:1011 msgid "Tree Depth" -msgstr "" +msgstr "Глубина дерева" #: common/models.py:1012 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." @@ -2119,21 +2116,21 @@ msgstr "" #: common/models.py:1021 msgid "Update Check Interval" -msgstr "" +msgstr "Интервал проверки обновлений" #: common/models.py:1022 msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" -msgstr "" +msgstr "дней" #: common/models.py:1032 msgid "Automatic Backup" -msgstr "" +msgstr "Автоматическое резервное копирование" #: common/models.py:1033 msgid "Enable automatic backup of database and media files" @@ -2141,7 +2138,7 @@ msgstr "" #: common/models.py:1039 msgid "Auto Backup Interval" -msgstr "" +msgstr "Интервал автосохранения" #: common/models.py:1040 msgid "Specify number of days between automated backup events" @@ -2173,15 +2170,15 @@ msgstr "" #: common/models.py:1083 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" -msgstr "" +msgstr "Поддержка штрих-кодов" #: common/models.py:1084 msgid "Enable barcode scanner support" -msgstr "" +msgstr "Включить поддержку сканера штрих-кодов" #: common/models.py:1090 msgid "Barcode Input Delay" -msgstr "" +msgstr "Задержка сканирования штрих-кода" #: common/models.py:1091 msgid "Barcode input processing delay time" @@ -2189,7 +2186,7 @@ msgstr "" #: common/models.py:1101 msgid "Barcode Webcam Support" -msgstr "" +msgstr "Поддержка веб-камер штрих-кодов" #: common/models.py:1102 msgid "Allow barcode scanning via webcam in browser" @@ -2197,7 +2194,7 @@ msgstr "" #: common/models.py:1108 msgid "Part Revisions" -msgstr "" +msgstr "Ревизия деталей" #: common/models.py:1109 msgid "Enable revision field for Part" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Шаблон" @@ -2269,10 +2266,10 @@ msgstr "Шаблон" msgid "Parts are templates by default" msgstr "По умолчанию детали являются шаблонами" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Сборка" @@ -2280,8 +2277,8 @@ msgstr "Сборка" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Компонент" @@ -2289,16 +2286,16 @@ msgstr "Компонент" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" -msgstr "" +msgstr "Можно купить" #: common/models.py:1184 msgid "Parts are purchaseable by default" -msgstr "" +msgstr "По умолчанию детали являются отслеживаемыми" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Можно продавать" @@ -2306,10 +2303,10 @@ msgstr "Можно продавать" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Отслеживание" @@ -2317,12 +2314,12 @@ msgstr "Отслеживание" msgid "Parts are trackable by default" msgstr "По умолчанию детали являются отслеживаемыми" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" -msgstr "" +msgstr "Виртуальная" #: common/models.py:1205 msgid "Parts are virtual by default" @@ -2352,9 +2349,9 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" -msgstr "" +msgstr "Исходные данные о поставщике" #: common/models.py:1233 msgid "Allow creation of initial supplier data when adding a new part" @@ -2377,525 +2374,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Режим отладки" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" -msgstr "" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" +msgstr "Редактировать завершенные заказы на покупку" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" -msgstr "Необходимо указать EMail" +msgid "Enable SSO" +msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" -msgstr "" +msgid "Email required" +msgstr "Необходимо указать EMail" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "Показывать детали, на которые включены уведомления" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "Показывать детали, на которые включены уведомления, на главной странице" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "Показывать категории, на которые включены уведомления" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "Показывать категории, на которые включены уведомления, на главной странице" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Показывать последние детали" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "Показывать последние детали на главной странице" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "Показывать непроверенные BOMы" @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "Показывать единицы хранения с недавно изменившимися складскими запасами на главной странице" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "Показывать низкие складские запасы" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "Показывать единицы хранения с низкими складскими запасами на главной странице" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "Показывать закончившиеся детали" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "Показывать закончившиеся на складе единицы хранения на главной странице" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "Показывать требуемые детали" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "Показывать требуемые для сборки единицы хранения на главной странице" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "Показывать просрочку" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "Показывать единицы хранения с истёкшим сроком годности на главной странице" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "Показывать залежалые" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "Показывать залежалые единицы хранения на главной странице" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "Показывать незавершённые сборки" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "Показывать незавершённые сборки на главной странице" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "Показывать просроченные сборки" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "Показывать просроченные сборки на главной странице" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" -msgstr "" +msgstr "Поиск заказов на продажу" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" -msgstr "" +msgstr "Поиск возвращенных заказов" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" -msgstr "" +msgstr "Планирование деталей" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" -msgstr "" +msgstr "Запасы деталей" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Цена" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" -msgstr "" +msgstr "Активный" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "Изображение" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3462,7 +3452,7 @@ msgstr "Загрузить файл" #: part/templates/part/import_wizard/match_fields.html:52 part/views.py:109 #: templates/patterns/wizard/match_fields.html:51 msgid "Match Fields" -msgstr "" +msgstr "Поля Соответствия" #: common/views.py:87 msgid "Match Items" @@ -3497,7 +3487,7 @@ msgstr "Описание компании" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "Сайт" @@ -3505,303 +3495,388 @@ msgstr "Сайт" msgid "Company website URL" msgstr "Сайт компании" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Адрес" - -#: company/models.py:119 -msgid "Company address" -msgstr "Адрес компании" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Телефон" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "Контактный телефон" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "EMail" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "Контактный EMail" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "Контакт" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "Контактное лицо" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "Ссылка на описание компании" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "покупатель" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "Вы продаёте детали этой компании?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "поставщик" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "Вы закупаете детали у этой компании?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "производитель" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "Является ли компания производителем деталей?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "Для этой компании используется валюта по умолчанию" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "Компания" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "Выберите компанию" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Базовая деталь" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Выберите деталь" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Производитель" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Выберите производителя" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "Код производителя" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "Ссылка на сайт производителя" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "Деталь производителя" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Наименование параметра" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Значение" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Значение параметра" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "Ед.изм" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "Единицы измерения" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Поставщик" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Выберите поставщика" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "Код поставщика" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" -msgstr "" +msgstr "Выберите производителя части" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "Ссылка на сайт поставщика" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Заметка" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" -msgstr "" +msgstr "базовая стоимость" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "Упаковка" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" -msgstr "" +msgstr "Доступно" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "Для этого поставщика используется валюта по умолчанию" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Создать заказ на закупку" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "Редактировать информацию о компании" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "Редактировать компанию" @@ -3854,17 +3929,17 @@ msgstr "Скачать изображение по ссылке" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Покупатель" @@ -3872,6 +3947,13 @@ msgstr "Покупатель" msgid "Uses default currency" msgstr "Использовать валюту по умолчанию" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Адрес" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "Телефон" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Детали поставщиков" @@ -3914,129 +3996,121 @@ msgstr "Создать новую деталь поставщика" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Новая деталь поставщика" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "Заказать детали" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Удалить детали" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Удалить детали" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "Создать новую деталь производителя" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "Новая деталь производителя" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Склад поставщика" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Заказы на закупку" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Создать новый заказ на закупку" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Новый заказ на закупку" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "Заказы на продажу" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Создать новый заказ на продажу" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "Новый заказ на продажу" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "Заметки о компании" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "Список поставщиков" @@ -4048,17 +4122,17 @@ msgstr "Производители" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "Поставщики" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "Удалить деталь поставщика" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "Удалить" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Параметры" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "Новый параметр" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Удалить параметры" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "Добавить параметр" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "Деталь поставщика" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "Редактировать деталь поставщика" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "Создать единицу хранения" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "Новая единица хранения" @@ -4203,37 +4264,37 @@ msgstr "Новая единица хранения" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Информация о цене" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Детали на складе" @@ -4259,7 +4320,7 @@ msgstr "Покупатели" msgid "New Customer" msgstr "Новый покупатель" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Компании" @@ -4267,77 +4328,70 @@ msgstr "Компании" msgid "New Company" msgstr "Новая компания" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Ширина [мм]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Высота [мм]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Фильтры" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "Общая стоимость" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Заказ на закупку" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" -msgstr "" +msgstr "Контакт не соответствует выбранной компании" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" -msgstr "" +msgstr "Описание заказа (дополнительно)" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" -msgstr "" +msgstr "Выберите код проекта для этого заказа" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" -msgstr "" +msgstr "Пользователь или группа, ответственная за этот заказ" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "Компания, в которой детали заказываются" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "Компания, которой детали продаются" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" -msgstr "" +msgstr "Описание товара (необязательно)" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" -msgstr "" +msgstr "Контекст" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" -msgstr "" +msgstr "Дополнительный контекст для этой строки" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Закупочная цена" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "Цена продажи" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" -msgstr "" +msgstr "Информация об отслеживании доставки" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" -msgstr "" +msgstr "Выберите товар возврата от клиента" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "Курс покупки валюты" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" -msgstr "" +msgstr "Выберите место назначения для полученных товаров" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "Введите код партии для поступающих единиц хранения" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "Для отслеживаемых деталей должно быть указано целочисленное количество" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "Курс продажи валюты" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" -msgstr "" +msgstr "Описание заказа" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5039,14 +5089,14 @@ msgstr "" #: 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 "" +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 "" +msgstr "Найдены дубликаты выделений, смотрите ниже. Исправьте их и попробуйте повторить отправку." #: order/templates/order/order_wizard/match_fields.html:29 #: order/templates/order/order_wizard/match_parts.html:21 @@ -5054,7 +5104,7 @@ msgstr "" #: part/templates/part/import_wizard/match_references.html:21 #: templates/patterns/wizard/match_fields.html:28 msgid "Submit Selections" -msgstr "" +msgstr "Отправить выбранные" #: order/templates/order/order_wizard/match_fields.html:35 #: part/templates/part/import_wizard/ajax_match_fields.html:28 @@ -5075,7 +5125,7 @@ msgstr "" #: part/templates/part/import_wizard/match_fields.html:60 #: templates/patterns/wizard/match_fields.html:59 msgid "Duplicate selection" -msgstr "" +msgstr "Дублировать выбранное" #: order/templates/order/order_wizard/match_fields.html:71 #: order/templates/order/order_wizard/match_parts.html:52 @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "Удалить строку" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "Действия" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,33 +5353,34 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "Артикул" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "Наименование детали" #: part/admin.py:35 part/tasks.py:290 msgid "Part Description" -msgstr "" +msgstr "Описание детали" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "Версия" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "Ключевые слова" @@ -5346,7 +5391,7 @@ msgstr "Код категории" #: part/admin.py:43 part/admin.py:193 part/tasks.py:292 msgid "Category Name" -msgstr "" +msgstr "Название категории" #: part/admin.py:44 part/admin.py:197 msgid "Default Location ID" @@ -5356,48 +5401,41 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "Разновидность" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "Минимальный запас" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "На складе" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" -msgstr "" +msgstr "В заказе" #: part/admin.py:63 part/templates/part/part_sidebar.html:27 msgid "Used In" msgstr "Сборки" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "Путь к категории" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Детали" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "IPN" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" -msgstr "" +msgstr "Необходимо выбрать эту опцию" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "Место хранения по умолчанию" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "Доступный запас" @@ -5497,917 +5535,913 @@ msgstr "Доступный запас" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Категория детали" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" -msgstr "" +msgstr "Категория детали" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "Место хранения по умолчанию для деталей этой категории" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" -msgstr "" +msgstr "Структура" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." -msgstr "" +msgstr "Детали не могут быть непосредственно отнесены к структурной категории, но могут быть отнесены к дочерним категориям." -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "Ключевые слова по умолчанию" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "Ключевые слова по умолчанию для деталей этой категории" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" -msgstr "" +msgstr "Иконка" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" -msgstr "" +msgstr "Иконка (необязательно)" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN должен совпадать с регулярным выражением {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "Наименование детали" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "Шаблон" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "Эта деталь является шаблоном для других деталей?" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "Эта деталь является разновидностью другой детали?" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" -msgstr "" +msgstr "Описание детали (необязательно)" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "Ключевые слова для улучшения видимости в результатах поиска" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "Категория" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "Категория" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "Внутренний код детали" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "Версия детали" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "Где обычно хранится эта деталь?" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" -msgstr "" +msgstr "Срок действия по умолчанию" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" -msgstr "" +msgstr "Срок годности (в днях) для товаров на складе этой позиции" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "Минимально допустимый складской запас" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" -msgstr "" +msgstr "Единицы измерения этой детали" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "Может ли эта деталь быть создана из других деталей?" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "Может ли эта деталь использоваться для создания других деталей?" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "Является ли каждый экземпляр этой детали уникальным, обладающим серийным номером?" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "Может ли эта деталь быть закуплена у внешних поставщиков?" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "Может ли эта деталь быть продана покупателям?" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "Эта деталь актуальна?" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "Эта деталь виртуальная, как программный продукт или лицензия?" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" -msgstr "" +msgstr "Пользователь, ответственный за эту деталь" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" -msgstr "" +msgstr "Тестовые шаблоны могут быть созданы только для отслеживаемых деталей" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" -msgstr "" +msgstr "Название теста" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "Родительская деталь" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "Шаблон параметра" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "Артикул или наименование детали" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "Значение IPN" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "BOM Компонент" + +#: part/models.py:3812 msgid "Select parent part" msgstr "Выберите родительскую деталь" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "Выбрать деталь для использования в BOM" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "Разрешить разновидности" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "Для отслеживаемых деталей количество должно быть целым числом" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "Часть 1" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "Часть 2" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" -msgstr "" +msgstr "Выберите связанную часть" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "Валюта покупки этой единицы хранения" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "Не выбран ни один элемент" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "Выберите категорию" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" -msgstr "" +msgstr "Выберите поставщика (или оставьте поле пустым, чтобы пропустить)" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" -msgstr "" +msgstr "Выберите поставщика (или оставьте поле пустым, чтобы пропустить)" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" -msgstr "" +msgstr "Код производителя" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "Дублировать деталь" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "Копировать параметры категории" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" -msgstr "" +msgstr "Копировать шаблоны параметров из выбранной категории деталей" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "Подходящая деталь не найдена" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" -msgstr "" +msgstr "Некорректное количество" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,17 +6494,9 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "Действия с BOM" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "Удалить элементы" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" -msgstr "" +msgstr "Выполнить инвентаризацию для этой части категории" #: part/templates/part/category.html:40 part/templates/part/category.html:44 msgid "You are subscribed to notifications for this category" @@ -6502,9 +6528,9 @@ msgstr "Удалить категорию" #: part/templates/part/category.html:101 msgid "Top level part category" -msgstr "" +msgstr "Категория детали верхнего уровня" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Подкатегории" @@ -6517,33 +6543,21 @@ msgstr "Детали (включая подкатегории)" msgid "Create new part" msgstr "Создать новую деталь" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "Новая деталь" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "Настройки" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "Укажите категорию" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "Укажите категорию" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "Параметры детали" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "Создать новую категорию деталей" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "Новая категория" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "Обновить" @@ -6591,115 +6605,115 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" #: part/templates/part/detail.html:83 msgid "Part Test Templates" -msgstr "" +msgstr "Тестовые шаблоны детали" #: part/templates/part/detail.html:88 msgid "Add Test Template" -msgstr "" +msgstr "Добавить тестовый шаблон" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "Разновидности детали" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "Создать новую разновидность" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "Новая разновидность" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "Экспорт" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "Экспорт BOM" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: part/templates/part/detail.html:272 +msgid "BOM actions" +msgstr "Действия с BOM" + +#: part/templates/part/detail.html:276 msgid "Upload BOM" msgstr "" -#: part/templates/part/detail.html:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "Сборки" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "Поставщики" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" -msgstr "" +msgstr "Добавить шаблон результата теста" #: part/templates/part/import_wizard/ajax_part_upload.html:29 #: part/templates/part/import_wizard/part_upload.html:14 @@ -6731,16 +6745,16 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" -msgstr "" +msgstr "Выбрать формат файла" #: part/templates/part/part_app_base.html:12 msgid "Part List" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "Действия со складом" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "Действия с деталью" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "Минимальный складской запас" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6866,7 +6880,7 @@ msgstr "" #: part/templates/part/part_base.html:354 msgid "Latest Serial Number" -msgstr "" +msgstr "Последний Серийный Номер" #: part/templates/part/part_base.html:358 #: stock/templates/stock/item_base.html:323 @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "Разновидности" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Склад" @@ -6972,11 +6986,11 @@ msgstr "" #: part/templates/part/part_sidebar.html:54 msgid "Test Templates" -msgstr "" +msgstr "Протестировать шаблон" #: part/templates/part/part_thumb.html:11 msgid "Select from existing images" -msgstr "" +msgstr "Выбрать из существующих изображений" #: part/templates/part/prices.html:11 msgid "Pricing Overview" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "Изображение детали не найдено" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Действие не указано" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "Найдено совпадение по штрих-коду" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "Автор не найден" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "Дата не найдена" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "Исходная ссылка" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "Название шаблона" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "Файл шаблона отчёта" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,41 +7505,45 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Серийный номер" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" -msgstr "" +msgstr "Тестовый отчет по единице хранения на складе" #: report/templates/report/inventree_test_report_base.html:97 msgid "Test Results" -msgstr "" +msgstr "Результаты проверки" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" -msgstr "" +msgstr "Проверка" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "Код места хранения" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" -msgstr "" +msgstr "Необходимо указать количество" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "Место хранения" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "Места хранения" @@ -7667,14 +7685,14 @@ msgstr "" #: stock/models.py:119 stock/models.py:829 msgid "Select Owner" -msgstr "" +msgstr "Выберите владельца" #: stock/models.py:126 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7729,7 +7747,7 @@ msgstr "Базовая деталь" #: stock/models.py:685 msgid "Select a matching supplier part for this stock item" -msgstr "" +msgstr "Выберите соответствующего поставщика части для этого товара на складе" #: stock/models.py:695 msgid "Where is this stock item located?" @@ -7753,7 +7771,7 @@ msgstr "Код партии для этой единицы хранения" #: stock/models.py:746 msgid "Stock Quantity" -msgstr "" +msgstr "Количество на складе" #: stock/models.py:753 msgid "Source Build" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "Деталь не является отслеживаемой" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "Серийные номера уже существуют" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" -msgstr "" +msgstr "Выберите товар на складе для установки" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "Выбранная деталь отсутствует в спецификации" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "Выбранная деталь отсутствует в спецификации" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "Выберите товары на складе для изменения статуса" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "Не выбрано ни одного товара на складе" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "Выбранная компания не является покупателем" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "Дочерние единицы хранения" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "Эта единица хранения не имеет дочерних элементов" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" -msgstr "" +msgstr "Данные испытаний" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" -msgstr "" +msgstr "Отчет тестирования" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "Заметки о единице хранения" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "Установленные единицы хранения" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "Установить единицу хранения" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "Редактировать единицу хранения" msgid "Delete stock item" msgstr "Удалить единицу хранения" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Сборка" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "Родительский элемент" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "Действия с местом хранения" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "Редактировать место хранения" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "Удалить место хранения" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" -msgstr "" +msgstr "Склад верхнего уровня" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "Ответственный за место хранения" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Места хранения" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "Создать новое место хранения" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "Новое место хранения" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "Последние детали" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "BOM для проверки" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "Шаблон параметра детали" @@ -8675,63 +8714,42 @@ msgstr "Настройки плагинов" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "Настройки заказа на закупку" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "Шаблоны параметров категории не найдены" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "Редактировать шаблон" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "Удалить шаблон" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "Главная страница" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9124,7 +9140,7 @@ msgstr "Настройки темы" #: templates/InvenTree/settings/user_display.html:39 msgid "Select theme" -msgstr "" +msgstr "Выберите тему" #: templates/InvenTree/settings/user_display.html:50 msgid "Set Theme" @@ -9136,7 +9152,7 @@ msgstr "Настройки языка" #: templates/InvenTree/settings/user_display.html:67 msgid "Select language" -msgstr "" +msgstr "Выберите язык" #: templates/InvenTree/settings/user_display.html:83 #, python-format @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "Посмотреть код на GitHub" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "Минимальное количество" @@ -9590,25 +9602,37 @@ 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:255 +#: templates/js/translated/attachment.js:205 +msgid "Delete attachments" +msgstr "" + +#: templates/js/translated/attachment.js:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "Вложение не найдено" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "Скачать шаблон BOM" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "Редактировать элемент BOM" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "Удалить элемент BOM" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "Элементы BOM не найдены" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "Унаследовано от родительского BOM" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "Редактировать заказ на сборку" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "Создать заказ на сборку" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "Вы уверены, что хотите отменить эту сборку?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "Спецификация содержит отслеживаемые детали" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "Отслеживаемые детали могут иметь серийные номера" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "Отслеживаемая деталь" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "Добавить производителя" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "Добавить деталь производителя" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "Редактировать деталь производителя" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "Добавить поставщика" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "Добавить деталь поставщика" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "Все выбранные детали поставщика будут удалены" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "Добавить новую компанию" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "Информация о компании не найдена" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "Удалить параметры" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "Заказать детали" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "Информация о детали производителя не найдена" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "Деталь-шаблон" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "Параметры не найдены" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "Редактировать параметр" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "Удалить параметр" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "Редактировать параметр" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "Удалить параметр" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "Удалить деталь поставщика" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "Информация о детали поставщика не найдена" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "Редактировать деталь поставщика" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "Удалить деталь поставщика" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "Последнее обновление" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "Операция удаления не разрешена" msgid "View operation not allowed" msgstr "Операция просмотра не разрешена" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "Удалить" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "Форма содержит ошибки" msgid "No results found" msgstr "Не найдено" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "Идентификатор" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "Атрибуты детали" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "Настройки создания детали" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "Настройки дублирования детали" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "Добавить категорию" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "Родительская категория" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" -msgstr "" +msgstr "Значок (необязательно) — просмотрите все доступные значки на" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "Создать категорию деталей" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" -msgstr "" +msgstr "Создать новую категорию после этой" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "Редактировать категорию" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "Вы уверены, что хотите удалить эту категорию?" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "Удалить категорию" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "Создать деталь" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "Создать ещё одну деталь после этой" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "Деталь создана успешно" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "Создать разновидность детали" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "Вы подписаны на уведомления для данного элемента" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "Вы подписались на уведомления для данного элемента" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "Включить уведомления для данного элемента" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "Вы отписались от уведомлений для данного элемента" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "Отслеживаемая деталь" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "Разновидности не найдены" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "Шаблоны параметров детали не найдены" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "Заказов на закупку не найдено" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "Детали не найдены" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "Нет категории" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "Список" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "Таблица" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "Укажите категорию" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "Укажите категорию" + +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" -msgstr "" +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "Нет категории" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "Список" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "Таблица" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "Дерево" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" -msgstr "" +msgstr "Нет тестовых шаблонов, соответствующих запросу" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "Редактировать заказ на закупку" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" -msgstr "" +msgstr "Должна быть выбрана хотя бы одна приобретаемая деталь." -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "Добавить код партии" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "Отмена этого заказа означает, что заказ нельзя будет редактировать." -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "Заказы на продажу не найдены" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "Подтвердите выделение запасов" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "Вы уверены, что хотите удалить место хранения?" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "Создано несколько единиц хранения" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "Предупреждение: Операция объединения не может быть отменена" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "Следующие данные будут потеряны в процессе объединения" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "История складских перемещений будет удалена для объединённых элементов" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "Информация о деталях поставщика будет удалена для объединённых элементов" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "Отслеживаемая деталь" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "Код партии" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "Статус сборки" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "Загрузка данных" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "строк на странице" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "Показываются все строки" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "Показано от" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "до" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "из" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "строк" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "Ничего не найдено" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "Настройки электронной почты" msgid "Email settings not configured" msgstr "Электронная почта не настроена" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "Действия со штрих-кодом" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "Настройки склада" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "Права доступа" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "Права доступа" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "Вид" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "Разрешение на просмотр элементов" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "Разрешение на добавление элементов" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "Разрешение на редактирование элементов" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "Разрешение на удаление элементов" diff --git a/InvenTree/locale/sl/LC_MESSAGES/django.po b/InvenTree/locale/sl/LC_MESSAGES/django.po index 8bbf432a26..adc759d625 100644 --- a/InvenTree/locale/sl/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -25,19 +25,19 @@ msgstr "API vmesnik ni najden" msgid "User does not have permission to view this model" msgstr "" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "Napaka, podrobnosti vidne v pogledu administratorja" msgid "Enter date" msgstr "Vnesi datum" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Zapiski" @@ -81,47 +81,51 @@ msgstr "Vrednost '{name}' ni v predpisanem formatu" msgid "Provided value does not match required pattern: " msgstr "Podana vrednost se ujema s predpisanim vzorcem: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Vnesite geslo" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Vnesite novo geslo" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Potrdite geslo" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Potrdite novo geslo" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Staro geslo" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Ponovnite e-pošto" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Potrdite e-pošto" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "E-pošti se morata ujemati" -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Podana epošta ni veljavna." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Domena epošte ni podprta." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Podana napačna količina" @@ -237,9 +241,9 @@ msgstr "Manjka datoteka" msgid "Missing external link" msgstr "Manjka zunanja povezava" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Priloga" @@ -247,29 +251,30 @@ msgstr "Priloga" msgid "Select file to attach" msgstr "Izberite prilogo" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Povezava" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Zunanja povezava" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Komentar" @@ -277,13 +282,13 @@ msgstr "Komentar" msgid "File comment" msgstr "Komentar datoteke" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Uporabnik" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "Nedovoljena izbira" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Ime" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Opis" @@ -384,7 +389,7 @@ msgid "parent" msgstr "nadrejen" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Pot" @@ -420,12 +425,12 @@ msgstr "Napaka strežnika" msgid "An error has been logged by the server." msgstr "Zaznana napaka na strežniku." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Mora biti veljavna številka" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "Povezava do oddaljene slike" msgid "Downloading images from remote URL is not enabled" msgstr "Prenos slik iz oddaljene povezave ni omogočen" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Češko" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "Danščina" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Nemščina" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Grščina" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Angleščina" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Španščina" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Španščina (Mehiško)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Farsi / Perzijsko" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Francoščina" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hebrejščina" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Madžarščina" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italijanščina" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japonščina" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Korejščina" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Nizozemščina" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norveščina" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Poljščina" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugalščina" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugalščina (Brazilsko)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Ruščina" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Slovenščina" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Švedščina" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Tajščina" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Turščina" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamščina" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Kitajščina" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Nadzor dela v ozadju neuspel" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "Zaledje e-pošte ni nastavljeno" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "Preverjanje zdravja sistema InvenTree neuspelo" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "V teku" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Postavljeno" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Končano" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Preklicano" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Izgubljeno" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Vrnjeno" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Poslano" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Potrebna pozornost" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Poškodovano" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Uničeno" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Zavrnjeno" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "Dano v karanteno" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Vnos zaloge postavke" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Postavka zaloge ustvarjena" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Urejena postavka zaloge" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Dodeljena serijska številka" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Zaloga prešteta" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Zaloga ročno dodana" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Zaloga ročno odstranjena" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Lokacija spremenjena" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Vstavljeno v sestavo" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Odstranjeno iz sestave" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Vstavljena postavka komponente" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Odstranjena postavka komponente" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Razdeljena od nadrejene postavke" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Razdeljena podrejena postavka" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Združena zaloga postavk" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Spremenjeno v varianto" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Posalno stranki" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Vrnjeno od stranke" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Nalog za izgradnjo ustvarjen" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Nalog za izgradnjo končan" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Porabljeno v nalogu za izgradnjo" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Posalno stranki" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Vrnjeno od stranke" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Proizvodnja" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "Prestarost ne sme presegati 100%" msgid "Invalid value for overage" msgstr "Neveljavna vrednost za prestarost" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Uredite informacije o uporabniku" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Nastavite geslo" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Polja z geslom se morajo ujemati" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Vnešeno nepravilno geslo" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Sistemske informacije" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "O InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Izgradnja mora biti najprej preklicana, nato je lahko izbrisana" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Nalog izgradnje" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Nalogi izgradnje" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Neveljavna izbira za nadrejeno izgradnjo" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Referenca naloga izgradnje" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Referenca" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Nadrejena izgradnja" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Nalog izgradnje na katerega se ta izgradnaj nanaša" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Nalog izgradnje na katerega se ta izgradnaj nanaša" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Del" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Izberite del za izgradnjo" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Referenca dobavnica" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Dobavnica na katero se navezuje ta izgradnja" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Lokacija vira" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Ciljna lokacija" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Izberite lokacijo, kjer bodo končne postavke shranjene" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Količina izgradenj" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Število postavk za izgradnjo" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Končane postavke" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Število postavk zaloge, ki so bile končane" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Status izgradnje" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Koda statusa izgradnje" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Številka serije" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Številka serije za to izgradnjo" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Datum ustvarjenja" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Rok dokončanja" -#: build/models.py:258 +#: build/models.py:262 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:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Datom končanja" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "dokončal" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Izdal" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Uporabnik, ki je izdal nalog za izgradnjo" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Odgovoren" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Zunanja povezava" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Nalog izgradnje {build} je dokončan" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "Nalog izgradnej dokončan" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Ni določena izgradnja" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Igradnja je že dokončana" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Izgradnja se ne ujema s nalogom izdelave" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -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:1265 +msgid "Build object" +msgstr "" -#: build/models.py:1281 -#, 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:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Preveč zaloge je prestavljene" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Prestavljena količina mora biti večja od 0" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Količina za zalogo s serijsko številko mora biti 1" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Izbrana postavka ni najdena v BOM" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Izdelava" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Izdelaj da prestaviš dele" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Postavka zaloge" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Izvorna postavka zaloge" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Količina" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +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:1371 +#, 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:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Preveč zaloge je prestavljene" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Prestavljena količina mora biti večja od 0" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Količina za zalogo s serijsko številko mora biti 1" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Postavka zaloge" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Izvorna postavka zaloge" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Količina zaloge za prestavljanje za izgradnjo" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Inštaliraj v" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Destinacija postavke zaloge" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Izgradnja" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "Izgradnja se ne ujema z nadrejeno izgradnjo" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "Izhodni del se ne ujema s naročilom sestava" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "Ta sestava je že zaključena" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2297,8 +2294,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,10 +2303,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2317,10 +2314,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3872,6 +3947,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "Notranja številka dela se mora ujemati z vzorcem {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Izdelava" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/sv/LC_MESSAGES/django.po b/InvenTree/locale/sv/LC_MESSAGES/django.po index 0f58ec4053..549d0e512f 100644 --- a/InvenTree/locale/sv/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -25,19 +25,19 @@ msgstr "API-slutpunkt hittades inte" msgid "User does not have permission to view this model" msgstr "Användaren har inte behörighet att se denna modell" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "Information om felet finns under Error i adminpanelen" msgid "Enter date" msgstr "Ange datum" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Anteeckningar" @@ -81,47 +81,51 @@ msgstr "Värdet '{name}' visas inte i mönsterformat" msgid "Provided value does not match required pattern: " msgstr "Det angivna värdet matchar inte det obligatoriska mönstret: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Ange lösenord" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Ange nytt lösenord" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Bekräfta lösenord" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Bekräfta nytt lösenord" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Tidigare lösenord" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "E-post (igen)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Bekräfta e-postadress" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Du måste ange samma e-post varje gång." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Den angivna primära e-postadressen är inte giltig." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Den angivna e-postdomänen är inte godkänd." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Ogiltigt antal angivet" @@ -237,9 +241,9 @@ msgstr "Saknad fil" msgid "Missing external link" msgstr "Extern länk saknas" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Bilaga" @@ -247,29 +251,30 @@ msgstr "Bilaga" msgid "Select file to attach" msgstr "Välj fil att bifoga" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Länk" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Länk till extern URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Kommentar" @@ -277,13 +282,13 @@ msgstr "Kommentar" msgid "File comment" msgstr "Fil kommentar" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Användare" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "Ogiltigt val" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Namn" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Beskrivning" @@ -384,7 +389,7 @@ msgid "parent" msgstr "överordnad" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "Sökväg" @@ -420,12 +425,12 @@ msgstr "Serverfel" msgid "An error has been logged by the server." msgstr "Ett fel har loggats av servern." -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Måste vara ett giltigt nummer" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "URL för fjärrbildsfil" msgid "Downloading images from remote URL is not enabled" msgstr "Nedladdning av bilder från fjärr-URL är inte aktiverad" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "Tjeckiska" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Tyska" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Grekiska" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "Engelska" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "Spanska" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "Spanska (Mexikanska)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "Farsi / Persiska" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Franska" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Hebreiska" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Ungerska" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Italienska" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japanska" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Koreanska" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Nederländska" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norska" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polska" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Portugisiska" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Portugisiska (brasiliansk)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Ryska" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Svenska" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Thailändska" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Turkiska" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamesiska" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Kinesiska" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Kontroll av bakgrundsarbetare misslyckades" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "Backend för e-post är inte konfigurerad" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "InvenTree systemhälsokontroll misslyckades" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Väntar" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Placerad" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Slutför" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "Avbruten" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Förlorad" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "Återlämnad" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Skickad" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "OBS!" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Skadad" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Förstörd" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Avvisad" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "I karantän" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Spårningspost för äldre lager" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Lagerpost skapad" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Redigerade lagerpost" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Tilldelade serienummer" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Lagersaldo beräknat" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Lagerpost manuellt tillagd" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Lagerpost manuellt borttagen" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Platsen har ändrats" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Installerad i montering" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Borttagen från montering" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Installerat komponentobjekt" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Tog bort komponentobjekt" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Dela från överordnat objekt" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Dela underordnat objekt" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Sammanfogade lagerposter" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "Konverterad till variant" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Skickat till kund" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Returnerad från kund" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Bygg orderutgång skapad" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Bygg orderutgång slutförd" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "Konsumeras av byggorder" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Skickat till kund" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Returnerad från kund" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Produktion" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "Överskott får inte överstiga 100%" msgid "Invalid value for overage" msgstr "Ogiltigt värde för överskott" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Redigera användarinformation" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Ställ in lösenord" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Lösenorden måste matcha" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "Felaktigt lösenord angivet" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Systeminformation" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Om InvenTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "Byggnationen måste avbrytas innan den kan tas bort" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Byggorder" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Byggordrar" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "Ogiltigt val för överordnad bygge" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Byggorderreferens" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Referens" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Överordnat Bygge" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "Byggorder till vilken detta bygge är tilldelad" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Byggorder till vilken detta bygge är tilldelad" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Del" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Välj del att bygga" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Försäljningsorderreferens" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Försäljningsorder till vilken detta bygge allokeras" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Källa Plats" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Destinationsplats" -#: build/models.py:216 +#: build/models.py:220 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:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Bygg kvantitet" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Antal lagerobjekt att bygga" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Slutförda objekt" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Antal lagerposter som har slutförts" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Byggstatus" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Bygg statuskod" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Batchkod" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Batch-kod för denna byggutdata" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Skapad" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Datum för slutförande" -#: build/models.py:258 +#: build/models.py:262 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:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Slutförandedatum" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "slutfört av" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Utfärdad av" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Användare som utfärdade denna byggorder" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Ansvarig" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Extern länk" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Byggorder {build} har slutförts" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "En byggorder har slutförts" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Ingen byggutgång angiven" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Byggutgång är redan slutförd" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "Byggutgång matchar inte bygg order" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -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:1265 +msgid "Build object" +msgstr "" -#: build/models.py:1281 -#, 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:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Lagerposten är överallokerad" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Allokeringsmängden måste vara större än noll" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Antal måste vara 1 för serialiserat lager" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "Vald lagervara hittades inte i BOM" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Bygg" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Bygg för att allokera delar" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Artikel i lager" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Källa lagervara" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Antal" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +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:1371 +#, 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:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Lagerposten är överallokerad" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Allokeringsmängden måste vara större än noll" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Antal måste vara 1 för serialiserat lager" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Artikel i lager" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Källa lagervara" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Lagersaldo att allokera för att bygga" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Installera till" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Destination lagervara" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "Bygg utdata" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "Byggutdata matchar inte överordnad version" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Serienummer" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Plats" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Status" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "Acceptera ofullständig" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "Färdigställ bygget" msgid "Build Description" msgstr "Byggbeskrivning" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Måldatum" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "Försenad" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Slutförd" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "Slutförd" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Försäljningsorder" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Utfärdad av" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Mål" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Skapad" @@ -1764,147 +1816,106 @@ msgstr "Skapad" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Slutförd" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Beställ obligatoriska delar" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Beställ delar" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Bilagor" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Bygganteckningar" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Ny byggorder" @@ -1912,14 +1923,10 @@ msgstr "Ny byggorder" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2297,8 +2294,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,10 +2303,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2317,10 +2314,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Virtuell" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "Interna priser" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "Aktivera etikettutskrift" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "Aktivera etikettutskrift från webbgränssnittet" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "Etikettbild DPI" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "Aktivera rapporter" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "Aktivera generering av rapporter" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Debugläge" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Sidstorlek" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "Standard sidstorlek för PDF-rapporter" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "Aktivera testrapporter" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "Sök efter artiklar" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "Sök efter leverantörsartikel" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "Sök efter tillverkarartikel" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3872,6 +3947,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Artiklar" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN måste matcha regex mönster {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "Ingen åtgärd specificerad" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Bygg" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "Välj artiklar" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/th/LC_MESSAGES/django.po b/InvenTree/locale/th/LC_MESSAGES/django.po index ce17452597..68ddfa3ab5 100644 --- a/InvenTree/locale/th/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:53\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -25,19 +25,19 @@ msgstr "" msgid "User does not have permission to view this model" msgstr "" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "" msgid "Enter date" msgstr "ป้อนวันที่" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "หมายเหตุ" @@ -81,47 +81,51 @@ msgstr "" msgid "Provided value does not match required pattern: " msgstr "" -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "ป้อนรหัสผ่าน" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "ป้อนรหัสผ่านใหม่" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "ยืนยันรหัสผ่าน" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "ยืนยันรหัสผ่านใหม่" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "รหัสผ่านเดิม" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "อีเมล (อีกครั้ง)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "การยืนยันอีเมล" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "" -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "" -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "ปริมาณสินค้าไม่ถูกต้อง" @@ -237,9 +241,9 @@ msgstr "" msgid "Missing external link" msgstr "" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "ไฟล์แนบ" @@ -247,29 +251,30 @@ msgstr "ไฟล์แนบ" msgid "Select file to attach" msgstr "เลือกไฟล์ที่ต้องการแนบ" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "ลิงก์" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "ความคิดเห็น" @@ -277,13 +282,13 @@ msgstr "ความคิดเห็น" msgid "File comment" msgstr "ความเห็นของไฟล์" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "ผู้ใช้งาน" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "ชื่อ" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "คำอธิบาย" @@ -384,7 +389,7 @@ msgid "parent" msgstr "" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "" @@ -420,12 +425,12 @@ msgstr "เกิดข้อผิดพลาดที่เซิร์ฟเ msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "ต้องเป็นตัวเลข" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "" msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "ภาษาโปรตุเกส" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "ภาษารัสเซีย" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "ภาษาสวีเดน" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "ภาษาไทย" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "ภาษาเวียดนาม" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "ภาษาจีน" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "สำเร็จแล้ว" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "ยกเลิกแล้ว" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "สูญหาย" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "ส่งคืนแล้ว" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "จัดส่งแล้ว" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "ตกลง" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "ได้รับความเสียหาย" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "ทำลายแล้ว" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "ถูกปฏิเสธ" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "จัดส่งให้ลูกค้าแล้ว" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "จัดส่งให้ลูกค้าแล้ว" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "แก้ไขข้อมูลสมาชิก" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "ตั้งรหัสผ่าน" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "รหัสผ่านต้องตรงกัน" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "ป้อนรหัสผ่านไม่ถูกต้อง" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "ข้อมูลระบบ" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "เกี่ยวกับ Inventree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "สถานะ" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2297,8 +2294,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,10 +2303,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2317,10 +2314,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3872,6 +3947,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/tr/LC_MESSAGES/django.po b/InvenTree/locale/tr/LC_MESSAGES/django.po index f702235f1a..a187ac516a 100644 --- a/InvenTree/locale/tr/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -25,19 +25,19 @@ msgstr "API uç noktası bulunamadı" msgid "User does not have permission to view this model" msgstr "Kullanıcının bu modeli görüntüleme izni yok" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "Hata detaylarını admin panelinde bulabilirsiniz" msgid "Enter date" msgstr "Tarih giriniz" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Notlar" @@ -81,47 +81,51 @@ msgstr "" msgid "Provided value does not match required pattern: " msgstr "Sağlanan değer gerekli kalıpla eşleşmiyor: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Şifrenizi girin" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Lütfen Yeni Parolayı Girin" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Parolayı doğrulayın" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Yeni parolayı doğrulayın" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Eski parola" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "E-posta (tekrar)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "E-posta adresi onayı" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Her seferind eaynı e-posta adresini yazmalısınız." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Sağlanan e-posta adresi geçerli değil." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Sağlanan e-posta alanı onaylanmadı." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Geçersiz veri sağlandı" @@ -237,9 +241,9 @@ msgstr "Eksik dosya" msgid "Missing external link" msgstr "Bozuk dış bağlantı" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Ek" @@ -247,29 +251,30 @@ msgstr "Ek" msgid "Select file to attach" msgstr "Eklenecek dosyayı seç" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Bağlantı" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Harici URL'ye bağlantı" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Yorum" @@ -277,13 +282,13 @@ msgstr "Yorum" msgid "File comment" msgstr "Dosya yorumu" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Kullanıcı" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "Geçersiz seçim" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "Adı" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Açıklama" @@ -384,7 +389,7 @@ msgid "parent" msgstr "üst" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "" @@ -420,12 +425,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "Geçerli bir numara olmalı" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "" msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "Almanca" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "Yunanca" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "İngilizce" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "İspanyolca" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "İspanyolca(Meksika)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Fransızca" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "İbranice" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Macarca" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "İtalyanca" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Japonca" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Korece" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Flemenkçe" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Norveççe" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Polonyaca" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Rusça" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "İsveççe" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Tay dili" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Türkçe" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Vietnamca" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Çince" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "Arka plan çalışanı kontrolü başarısız oldu" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "E-posta arka ucu yapılandırılmadı" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "InvenTree sistem sağlık kontrolü başarısız" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "Bekliyor" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "Sipariş verildi" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "Tamamlandı" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "İptal edildi" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "Kayıp" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "İade" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "Sevk edildi" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "TAMAM" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "Dikkat gerekli" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "Hasarlı" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "Kullanılamaz durumda" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "Reddedildi" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "Eski stok izleme girişi" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "Stok kalemi oluşturuldu" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "Düzenlenen stok kalemi" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "Atanan seri numarası" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "Stok sayıldı" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "Stok manuel olarak eklendi" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "Stok manuel olarak çıkarıldı" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "Konum değişti" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "Montajda kullanıldı" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "Montajdan çıkarıldı" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "Bileşen ögesinde kullanıldı" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "Bileşen ögesinden çıkarıldı" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "Üst ögeden ayır" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "Alt ögeyi ayır" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "Stok parçalarını birleştir" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "Müşteriye gönderildi" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "Müşteriden geri döndü" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "Yapım emri çıktısı oluşturuldu" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "Yapım emri çıktısı tamamlandı" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "Müşteriye gönderildi" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "Müşteriden geri döndü" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "Üretim" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "Fazlalık %100'ü geçmemelidir" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Kullanıcı Bilgisini Düzenle" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Şifre Belirle" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Parola alanları eşleşmelidir" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Sistem Bilgisi" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "InvenTree Hakkında" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Yapım İşi Emri" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Yapım İşi Emirleri" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "Yapım İşi Emri Referansı" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Referans" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Üst Yapım İşi" -#: build/models.py:176 +#: build/models.py:180 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:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "Bu yapım işinin tahsis edildiği yapım işi emri" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Parça" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "Yapım işi için parça seçin" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "Satış Emri Referansı" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "Bu yapım işinin tahsis edildiği satış emri" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "Kaynak Konum" -#: build/models.py:207 +#: build/models.py:211 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:212 +#: build/models.py:216 msgid "Destination Location" msgstr "Hedef Konum" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "Tamamlanmış ögelerin saklanacağı konumu seçiniz" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "Yapım İşi Miktarı" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "Yapım işi stok kalemlerinin sayısı" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "Tamamlanmış ögeler" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "Tamamlanan stok kalemlerinin sayısı" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "Yapım İşi Durumu" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "Yapım işi durum kodu" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "Sıra numarası" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "Yapım işi çıktısı için sıra numarası" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Oluşturulma tarihi" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "Hedef tamamlama tarihi" -#: build/models.py:258 +#: build/models.py:262 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:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Tamamlama tarihi" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "tamamlayan" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "Veren" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "Bu yapım işi emrini veren kullanıcı" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "Sorumlu" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "Harici Bağlantı" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "Yapım işi çıktısı belirtilmedi" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "Yapım işi çıktısı zaten tamamlanmış" -#: build/models.py:750 +#: build/models.py:764 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:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -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:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "Stok kalemi fazladan tahsis edilmiş" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "Tahsis edilen miktar sıfırdan büyük olmalıdır" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "Seri numaralı stok için miktar bir olmalı" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "Yapım İşi" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "Yapım işi için tahsis edilen parçalar" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "Stok Kalemi" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "Kaynak stok kalemi" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "Miktar" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +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:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "Stok kalemi fazladan tahsis edilmiş" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "Tahsis edilen miktar sıfırdan büyük olmalıdır" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "Seri numaralı stok için miktar bir olmalı" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "Stok Kalemi" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "Kaynak stok kalemi" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "Yapım işi için tahsis edilen stok miktarı" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "Kurulduğu yer" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "Hedef stok kalemi" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "Yapım işi çıktısı için miktarını girin" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "Seri Numaraları" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "Yapım işi çıktısı için seri numaraları girin" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "Konum" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Durum" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "Gerekli stok tamamen tahsis edilemedi" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "Gerekli yapım işi miktarı tamamlanmadı" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "Barkod işlemleri" @@ -1616,69 +1670,67 @@ msgstr "Tamamlanmış Yapım İşi" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "Yapım işi tamamlandı olarak işaretlenmeye hazır" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "Bekleyen çıktılar kaldığı için yapım işi emri tamamlanamıyor" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "Gerekli yapım işi miktarı henüz tamamlanmadı" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 msgid "Stock has not been fully allocated to this Build Order" 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "Hedeflenen tarih" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "Bu yapım işinin %(target)s tarihinde süresi doluyor" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "Vadesi geçmiş" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Tamamlandı" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "Tamamlandı" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "Sipariş Emri" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "Veren" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "Yapım İşi Emrini Sil" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ 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:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "Hedef" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "Toplu" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "Oluşturuldu" @@ -1764,147 +1816,106 @@ msgstr "Oluşturuldu" msgid "No target date set" msgstr "Hedef tarih ayarlanmadı" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Tamamlandı" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "Yapım İşi tamamlanmadı" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "Alt Yapım İşi Emrileri" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "Yapım İşi için Stok Tahsis Et" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" -msgstr "Stok tahsisini kaldır" +#: 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 "Unallocate Stock" -msgstr "Stok Tahsisini Kaldır" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "Stok Tahsis Et" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "Gerekli parçaları sipariş edin" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "Parça Siparişi" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "Takip edilmeyen stok yapım işi emri için tamamen tahsis edildi" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "Takip edilmeyen stok yapım işi emri için tamamen tahsis edilemedi" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "Bu yapım işi emri, herhangi bir takip edilmeyen malzeme listesi öğesine sahip değil" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "Tamamlanmamış Yapım İşi Çıktıları" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "Yeni yapım işi çıktısı oluştur" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "Tamamlanmış Yapım İşi Çıktıları" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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 "Ekler" -#: build/templates/build/detail.html:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "Yapım İşi Notları" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "Yeni Yapım İşi Emri" @@ -1912,14 +1923,10 @@ msgstr "Yeni Yapım İşi Emri" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "Tamamlanmamış Çıktılar" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "günler" @@ -2259,9 +2256,9 @@ msgstr "Kategori Paremetre Sablonu Kopyala" msgid "Copy category parameter templates when creating a part" msgstr "Parça oluştururken kategori parametre şablonlarını kopyala" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "Şablon" @@ -2269,10 +2266,10 @@ msgstr "Şablon" msgid "Parts are templates by default" msgstr "Parçaları varsayılan olan şablondur" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "Montaj" @@ -2280,8 +2277,8 @@ msgstr "Montaj" 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:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "Bileşen" @@ -2289,7 +2286,7 @@ msgstr "Bileşen" msgid "Parts can be used as sub-components by default" msgstr "Parçalar varsayılan olarak alt bileşen olarak kullanılabilir" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "Satın Alınabilir" @@ -2297,8 +2294,8 @@ msgstr "Satın Alınabilir" msgid "Parts are purchaseable by default" msgstr "Parçalar varsayılan olarak satın alınabilir" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "Satılabilir" @@ -2306,10 +2303,10 @@ msgstr "Satılabilir" msgid "Parts are salable by default" msgstr "Parçalar varsayılan olarak satılabilir" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "Takip Edilebilir" @@ -2317,10 +2314,10 @@ msgstr "Takip Edilebilir" msgid "Parts are trackable by default" msgstr "Parçalar varsayılan olarak takip edilebilir" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "Sanal" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,523 +2374,523 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "Hata Ayıklama Modu" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "Raporları hata ayıklama modunda üret (HTML çıktısı)" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "Sayfa Boyutu" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "PDF raporlar için varsayılan sayfa boyutu" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "Stok konumu ve ögeler üzerinde sahiplik kontrolünü etkinleştirin" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "" -#: common/models.py:1773 -msgid "Show latest parts on the homepage" -msgstr "" - -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - #: common/models.py:1780 -msgid "Number of recent parts to display on index page" +msgid "Show latest parts on the homepage" msgstr "" #: common/models.py:1786 @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "Formlarda Miktarı Göster" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "Fiyat" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "Aktif" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "Resim" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "Şirket web sitesi" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "Adres" - -#: company/models.py:119 -msgid "Company address" -msgstr "Şirket adresi" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "Telefon numarası" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "İletişim telefon numarası" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "E-posta" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "İletişim e-posta adresi" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "İletişim" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "müşteri mi" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "Bu şirkete ürün satıyor musunuz?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "tedarikçi mi" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "Bu şirketten ürün satın alıyor musunuz?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "üretici mi" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "Bu şirket üretim yapıyor mu?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "Bu şirket için varsayılan para birimi" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Temel Parça" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "Parça seçin" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Üretici" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "Üretici seçin" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "ÜPN" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "Üretici Parça Numarası" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "Parametre adı" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "Değer" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "Parametre değeri" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Tedarikçi" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "Tedarikçi seçin" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "Not" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "temel maliyet" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "Paketleme" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "çoklu" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "Mevcut" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "Satın Alma Emri Oluştur" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "Müşteri" @@ -3872,6 +3947,13 @@ msgstr "Müşteri" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "Adres" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ msgstr "Resmi İndirin" #: company/templates/company/detail.html:15 #: company/templates/company/manufacturer_part_sidebar.html:7 -#: templates/InvenTree/search.html:120 templates/js/translated/search.js:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "Tedarikçi Parçaları" @@ -3914,129 +3996,121 @@ msgstr "Yeni tedarikçi parçası oluştur" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "Yeni Tedarikçi Parçası" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "Parçaları sil" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "Parçaları Sil" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "Tedarikçi Stoku" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "Satın Alma Emirleri" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "Yeni satın alma emri oluştur" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "Yeni Satın Alma Emri" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "Satış Emirleri" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "Yeni satış emri oluştur" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "Yeni Satış Emri" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "Atanan Stok" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "Üreticiler" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "Parça siparişi" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "Tedarikçi parçalarını sil" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "Tedarikçi Parçası" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "Tedarikçi Parça Stoku" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "Tedarikçi Parçası Emirleri" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "Fiyat Bilgisi" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "Stok Kalemleri" @@ -4259,7 +4320,7 @@ msgstr "Müşteriler" msgid "New Customer" msgstr "Yeni Müşteri" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "Şirketler" @@ -4267,77 +4328,70 @@ msgstr "Şirketler" msgid "New Company" msgstr "Yeni Şirket" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "Etiket adı" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "Etiket tanımı" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "Etiket" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "Etiket şablon listesi" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "Etkin" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "Etiket sablonu etkinleştirildi" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "Genişlik [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "Etiket genişliği mm olarak belirtilmeli" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "Yükseklik [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "Etiket yüksekliği mm olarak belirtilmeli" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "Dosya Adı Deseni" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "Etiket dosya adları oluşturma için desen" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "Filtreler" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "Harici sayfaya bağlantı" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "Oluşturan" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "Sipariş referansı" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Tahsis miktarı stok miktarını aşamaz" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "Seri numaralı stok kalemi için miktar bir olmalı" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "Stok tahsis miktarını girin" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "Siparişi tamamlandı olarak işaretle" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "Sipariş Notları" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "Toplam Maliyet" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "İşlemler" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "DPN" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "Revizyon" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "Anahtar kelimeler" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "Çeşidi" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "Minimum Stok" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Parçalar" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "Varsayılan Konum" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "Parça Kategorileri" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "Bu kategori içindeki parçalar için varsayılan konum" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN regex kalıbıyla eşleşmelidir {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "Yinelenen DPN'ye parça ayarlarında izin verilmiyor" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "Parça adı" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "Şablon Mu" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "Bu parça bir şablon parçası mı?" -#: part/models.py:862 +#: part/models.py:867 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:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "Parça revizyon veya versiyon numarası" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "Varsayılan Tedarikçi" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "Varsayılan tedarikçi parçası" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "Bu parça diğer parçalardan yapılabilir mi?" -#: part/models.py:1002 +#: part/models.py:1007 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:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "Bu parça dış tedarikçilerden satın alınabilir mi?" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "Bu parça müşterilere satılabilir mi?" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "Bu parça aktif mi?" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "Oluşturan Kullanıcı" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 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:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "Test Adı" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "Test Açıklaması" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "Gerekli" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "Testi geçmesi için bu gerekli mi?" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "Parametre şablon adı benzersiz olmalıdır" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "Parametre Şablonu" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 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:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "Çeşide İzin Ver" -#: part/models.py:3817 +#: part/models.py:3871 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:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Alt kategoriler" @@ -6517,33 +6543,21 @@ msgstr "Parçalar (Alt kategoriler dahil)" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "Kategori ayarla" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "Kategori Ayarla" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "Yenile" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "Parça Test Şablonları" msgid "Add Test Template" msgstr "Test Şablonu Ekle" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "Parça Çeşitleri" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "Yeni çeşit oluştur" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "Yeni Çeşit" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "Parça Tedarikçileri" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "Stok işlemleri" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "Parça işlemleri" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "Pasif" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Stok" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "Stok Yok" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "Düşük Stok" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "İşlem belirtilmedi" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "Barkod verisi için eşleşme bulundu" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "Şablon için geçerli bir nesne sağlanmadı" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "Şablon adı" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "Rapor şablon dosyası" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "Rapor şablon tanımı" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "Revizyon numarası raporla (otomatik artış)" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "Rapor şablonu etkin" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "Stok kalemi sorgu filtreleri (anahter=değer [key=value] olarak virgülle ayrılmış liste)" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "Seri Numara" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "Seri No" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "Stok Konumu" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "Stok Konumları" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "Seri numaraları tam sayı listesi olmalı" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "Miktar seri numaları ile eşleşmiyor" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "Seri numaraları zaten mevcut" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "Stok kalemi stokta olmadığı için taşınamaz" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "İşlem notu ekle (isteğe bağlı)" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "Konuma Tara" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "Yazdırma işlemleri" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "Stok ayarlama işlemleri" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "Stoku seri numarala" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "Yapım İşi" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "Konum ayarlanmadı" @@ -8242,7 +8277,7 @@ 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:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "Bu stok kaleminin süresi %(item.expiry_date)s tarihinde sona erecek" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "Konum işlemleri" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "Konumu düzenle" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "Konumu sil" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "Bu konumun sahipleri listesinde değilsiniz. Bu stok konumu düzenlenemez." -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Alt konumlar" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "Yeni stok konumu oluştur" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "Yeni Konum" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "Yapım İşi Emirleri için Gerekli" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "Parça Parametre Şablonu" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "Commit Hash Değeri" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "Kategori parametre şablonu bulunamadı" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "Şablonu Düzenle" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "Şablonu Sil" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "Güncel" msgid "Update Available" msgstr "Güncelleme Mevcut" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "API Sürümü" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "Python Sürümü" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "Django Sürümü" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "Katkıda Bulunanlar" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "Mobil Uygulama" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "Hata Raporu Gönder" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "panoya kopyala" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "sürüm bilgisini kopyala" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "Dosya Ekle" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "Ek Düzenle" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "Konuma Kaydet" msgid "Barcode does not match a valid location" msgstr "Barkod geçerli bir konumla eşleşmiyor" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "Kapat" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "Seviyeler" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "Dışa aktarılan malzeme listesine parça tedarikçisi verilerini dahil edin" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "Gerekli Parça" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "Yapım işi emri eksik" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "Tamamlanmış Yapım İşi Emri" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "Bu Malzeme Listesi takip edilebilir parçalar içeriyor" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "Takip edilebilir parçaların seri numaraları belirtilmiş olmalı" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "Birden çok tek yapım işi çıktısı oluşturmak için seri numaraları girin" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "Yapım İşi Çıktısı Oluştur" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "Stok tahsisini düzenle" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "Stok tahsisini sil" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "Parçaları Seçin" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" +msgstr "Stok tahsisini düzenle" + +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "Stok tahsisini sil" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "Şablon Parça" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "Tedarikçi parçalarını sil" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "Tedarikçi parçasını düzenle" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "Tedarikçi parçasını sil" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "doğru" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "yanlış" @@ -10467,31 +10585,31 @@ msgstr "yanlış" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "Çeşit bulunamadı" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "Parça parametre şablonu bulunamadı" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "Parça Parametre Şablonu Düzenle" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "Parça Parametre Şablonu Sil" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "Katagori Yok" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "Kategori ayarla" + +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "Katagori Yok" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "Sorgu ile eşleşen test şablonu bulunamadı" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "Ürünler" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "Stok tahsisini onayla" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "Silme İşlemini Onayla" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "Seri numaralarını tahsis et" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "Seri Numaralarını Tahsis Et" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "Stok konumunu düzenle" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "Bu stok konumunu silmek istediğinizden emin misiniz?" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "Stok Konumunu Sil" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "Stok ayarlamasını onayla" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "Stok konumu ayarlanmadı" -#: templates/js/translated/stock.js:1746 +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" +msgstr "" + +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" +msgstr "Stok birlşetirme" + +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" +msgstr "Parça sil" + +#: templates/js/translated/stock.js:1885 msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1850 +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 msgid "Stock item is in production" msgstr "" -#: templates/js/translated/stock.js:1855 +#: templates/js/translated/stock.js:2028 msgid "Stock item assigned to sales order" msgstr "" -#: templates/js/translated/stock.js:1858 +#: templates/js/translated/stock.js:2031 msgid "Stock item assigned to customer" msgstr "" -#: templates/js/translated/stock.js:1861 +#: templates/js/translated/stock.js:2034 msgid "Serialized stock item has been allocated" msgstr "" -#: templates/js/translated/stock.js:1863 +#: templates/js/translated/stock.js:2036 msgid "Stock item has been fully allocated" msgstr "" -#: templates/js/translated/stock.js:1865 +#: templates/js/translated/stock.js:2038 msgid "Stock item has been partially allocated" msgstr "" -#: templates/js/translated/stock.js:1868 +#: templates/js/translated/stock.js:2041 msgid "Stock item has been installed in another item" msgstr "" -#: templates/js/translated/stock.js:1870 +#: templates/js/translated/stock.js:2043 msgid "Stock item has been consumed by a build order" msgstr "" -#: templates/js/translated/stock.js:1874 +#: templates/js/translated/stock.js:2047 msgid "Stock item has expired" msgstr "" -#: templates/js/translated/stock.js:1876 +#: templates/js/translated/stock.js:2049 msgid "Stock item will expire soon" msgstr "" -#: templates/js/translated/stock.js:1881 +#: templates/js/translated/stock.js:2054 msgid "Stock item has been rejected" msgstr "" -#: templates/js/translated/stock.js:1883 +#: templates/js/translated/stock.js:2056 msgid "Stock item is lost" msgstr "" -#: templates/js/translated/stock.js:1885 +#: templates/js/translated/stock.js:2058 msgid "Stock item is destroyed" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 msgid "Depleted" msgstr "" -#: templates/js/translated/stock.js:2031 +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "Detaylar" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "Konum artık yok" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "Çeşit Stokuna İzin Ver" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "Alt konumları dahil et" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "Konumları dahil et" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "Seri Numaralı" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "Seri numarası BvE" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "Seri numarası büyük veya eşit" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "Seri numarası KvE" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "Seri numarası küçük veya eşit" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "Seri numarası" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "Alt konumlardaki stoku dahil et" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "Çeşitleri Dahil Et" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "Çeşit parçaların stok kalemlerini dahil et" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "Alt kategorilerdeki parçaları dahil et" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "DPN Var" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "Gösteriliyor" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "için" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "yüzünden" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "satırlar" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "Sonuç bulunamadı" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "Sayfalandırmayı Göster" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "Değiştir" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "Sütunlar" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "Tümü" @@ -12587,50 +12791,6 @@ msgstr "E-posta Ayarları" msgid "Email settings not configured" msgstr "E-posta ayarları yapılandırılmadı" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "Barkod İşlemleri" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "Stok Seçenekleri" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "Seçili stok parçalarını ekle" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "Seçili stok parçalarını kaldır" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "Seçili stok parçalarını değerlendir" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "Stok parçalarını taşı" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "Seçili stok parçalarını birleştir" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "Stok birlşetirme" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "Seçili parçaları sırala" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "Seçili parçaları sil" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "Parça sil" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "Evet" @@ -12663,35 +12823,35 @@ msgstr "Yetkiler" msgid "Important dates" msgstr "Önemli tarihler" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "İzinleri ayarla" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "Grup" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "Görünüm" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "Parçayı görüntüleme izni" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "Parça ekleme izni" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "Değiştir" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "Parçaları düzenleme izni" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "Parçaları silme izni" diff --git a/InvenTree/locale/vi/LC_MESSAGES/django.po b/InvenTree/locale/vi/LC_MESSAGES/django.po index d9cdd60a00..900ca8971d 100644 --- a/InvenTree/locale/vi/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:53\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -25,19 +25,19 @@ msgstr "API endpoint không tồn tại" 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" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" -msgstr "" +msgstr "Chưa cung cấp giá trị" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ 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:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "Ghi chú" @@ -81,47 +81,51 @@ msgstr "Giá trị '{name}' không xuất hiện ở định dạng mẫu" msgid "Provided value does not match required pattern: " msgstr "Giá trị được cung cấp không khớp với mẫu bắt buộc: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "Nhập mật khẩu" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "Nhập mật khẩu mới" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "Xác nhận mật khẩu" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "Xác nhận mật khẩu mới" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "Mật khẩu cũ" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Email (nhắc lại)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Xác nhận địa chỉ email" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "Bạn phải nhập cùng một email mỗi lần." -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "Địa chỉ email chính đã cung cấp không hợp lệ." -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "Miền email được cung cấp không được phê duyệt." -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "Số lượng cung cấp không hợp lệ" @@ -237,9 +241,9 @@ msgstr "" msgid "Missing external link" msgstr "" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "Đính kèm" @@ -247,29 +251,30 @@ msgstr "Đính kèm" msgid "Select file to attach" msgstr "Chọn file đính kèm" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "Liên kết" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "Liên kết đến URL bên ngoài" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "Bình luận" @@ -277,13 +282,13 @@ msgstr "Bình luận" msgid "File comment" msgstr "Bình luận tệp tin" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "Người dùng" @@ -324,54 +329,54 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "Mô tả" @@ -384,7 +389,7 @@ msgid "parent" msgstr "" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "" @@ -420,12 +425,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "" msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" -msgstr "" +msgstr "Tiếng Séc" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" -msgstr "" +msgstr "Tiếng Đan Mạch" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" -msgstr "" +msgstr "Tiếng Đức" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "Tiếng Pháp" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "Tiếng Do Thái" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "Tiếng Hung-ga-ri" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "Tiếng Ý" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "Tiếng Nhật" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "Tiếng Hàn" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "Tiếng Hà Lan" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "Tiếng Na Uy" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "Tiếng Ba Lan" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "Tiếng Bồ Đào Nha" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "Tiếng Bồ Đào Nha (Brazil)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "Tiếng Nga" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "Tiếng Slô-ven-ni-a" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "Tiếng Thụy Điển" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "Tiếng Thái" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "Tiếng Thổ Nhĩ Kỳ" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "Tiếng Việt" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "Tiếng Trung" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "" + +#: InvenTree/status_codes.py:149 msgid "Production" -msgstr "" +msgstr "Sản xuất" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" -msgstr "" +msgstr "Trả lại" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" -msgstr "" +msgstr "Sửa chữa" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" -msgstr "" +msgstr "Thay thế" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "Hoàn tiền" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "" msgid "Invalid value for overage" msgstr "" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "Sửa thông tin người dùng" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "Đặt Mật khẩu" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "Mật khẩu phải trùng khớp" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "Thông tin hệ thống" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "Giới thiệu" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "Tạo đơn hàng" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "Tạo đơn hàng" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "Tham chiếu" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "Nguyên liệu" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "Ngày tạo" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "Ngày hoàn thành" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "hoàn thành bởi" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" +#: build/models.py:1265 +msgid "Build object" msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" +msgstr "Số lượng" + +#: build/models.py:1280 +msgid "Required quantity for build order" msgstr "" -#: build/models.py:1469 +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "Trạng thái" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "" - -#: build/serializers.py:724 -msgid "Build output" +#: build/serializers.py:722 +msgid "Build Line" msgstr "" #: build/serializers.py:732 +msgid "Build output" +msgstr "" + +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "" msgid "Build Description" msgstr "" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, 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:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "Đã hoàn thành" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "Đã hoàn thành" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "" @@ -1742,21 +1794,21 @@ msgstr "" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "" @@ -1764,147 +1816,106 @@ msgstr "" msgid "No target date set" msgstr "" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +msgid "Completed" +msgstr "Đã hoàn thành" + #: build/templates/build/detail.html:153 msgid "Build not complete" msgstr "" -#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: 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 "Unallocate Stock" -msgstr "" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "" @@ -1912,14 +1923,10 @@ msgstr "" msgid "Build Order Details" msgstr "" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "" msgid "Timestamp of last update" msgstr "" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -1990,7 +1987,7 @@ msgstr "" #: common/models.py:541 msgid "Settings value" -msgstr "" +msgstr "Giá trị cài đặt" #: common/models.py:582 msgid "Chosen value is not a valid option" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "" @@ -2259,9 +2256,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "" @@ -2269,10 +2266,10 @@ msgstr "" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "" @@ -2280,8 +2277,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "" @@ -2289,7 +2286,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "" @@ -2297,8 +2294,8 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "" @@ -2306,10 +2303,10 @@ msgstr "" msgid "Parts are salable by default" msgstr "" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "" @@ -2317,10 +2314,10 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "" @@ -2352,7 +2349,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2377,525 +2374,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" +msgid "Edit Completed Sales Orders" msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 -msgid "Enable password forgot" +msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1536 -msgid "Enable password forgot function on the login pages" +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" msgstr "" #: common/models.py:1542 -msgid "Enable registration" -msgstr "" - -#: common/models.py:1543 -msgid "Enable self-registration for users on the login pages" +msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" #: common/models.py:1549 -msgid "Enable SSO" +msgid "Enable password forgot" msgstr "" #: common/models.py:1550 -msgid "Enable SSO on the login pages" +msgid "Enable password forgot function on the login pages" msgstr "" #: common/models.py:1556 -msgid "Enable SSO registration" +msgid "Enable registration" msgstr "" #: common/models.py:1557 -msgid "Enable self-registration via SSO for users on the login pages" +msgid "Enable self-registration for users on the login pages" msgstr "" #: common/models.py:1563 -msgid "Email required" +msgid "Enable SSO" msgstr "" #: common/models.py:1564 -msgid "Require user to supply mail on signup" +msgid "Enable SSO on the login pages" msgstr "" #: common/models.py:1570 -msgid "Auto-fill SSO users" +msgid "Enable SSO registration" msgstr "" #: common/models.py:1571 -msgid "Automatically fill out user-details from SSO account-data" +msgid "Enable self-registration via SSO for users on the login pages" msgstr "" #: common/models.py:1577 -msgid "Mail twice" +msgid "Email required" msgstr "" #: common/models.py:1578 -msgid "On signup ask users twice for their mail" +msgid "Require user to supply mail on signup" msgstr "" #: common/models.py:1584 -msgid "Password twice" +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1585 -msgid "On signup ask users twice for their password" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1591 -msgid "Allowed domains" +msgid "Mail twice" msgstr "" #: common/models.py:1592 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgid "On signup ask users twice for their mail" msgstr "" #: common/models.py:1598 -msgid "Group on signup" +msgid "Password twice" msgstr "" #: common/models.py:1599 -msgid "Group to which new users are assigned on registration" +msgid "On signup ask users twice for their password" msgstr "" #: common/models.py:1605 -msgid "Enforce MFA" +msgid "Allowed domains" msgstr "" #: common/models.py:1606 -msgid "Users must use multifactor security." +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" #: common/models.py:1612 -msgid "Check plugins on startup" +msgid "Group on signup" msgstr "" #: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "Group to which new users are assigned on registration" +msgstr "" + +#: common/models.py:1619 +msgid "Enforce MFA" msgstr "" #: common/models.py:1620 -msgid "Check plugin signatures" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +#: common/models.py:1626 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:1628 +#: common/models.py:1627 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:1635 msgid "Enable URL integration" msgstr "" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "Hiển thị nguyên liệu mới nhất" -#: common/models.py:1773 +#: common/models.py:1780 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:1779 -msgid "Recent Part Count" -msgstr "" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "" @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "" @@ -3505,303 +3495,388 @@ msgstr "" msgid "Company website URL" msgstr "" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "" - -#: company/models.py:119 -msgid "Company address" -msgstr "" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "Nhà sản xuất" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "Nhà cung cấp" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "" @@ -3854,17 +3929,17 @@ msgstr "" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "" @@ -3872,6 +3947,13 @@ msgstr "" msgid "Uses default currency" msgstr "" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "" @@ -3914,129 +3996,121 @@ msgstr "" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "" @@ -4048,17 +4122,17 @@ msgstr "" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "Thông số" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "Xóa các thông số" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "" @@ -4162,13 +4223,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4203,37 +4264,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "" @@ -4259,7 +4320,7 @@ msgstr "" msgid "New Customer" msgstr "" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "" @@ -4267,77 +4328,70 @@ msgstr "" msgid "New Company" msgstr "" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "Đơn hàng" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "Giá mua" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5323,19 +5367,20 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5381,23 +5426,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "Nguyên liệu" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "" @@ -5497,917 +5535,913 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "Sao chép thông số" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "Sao chép thông số nhóm hàng" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" @@ -6517,33 +6543,21 @@ msgstr "" msgid "Create new part" msgstr "" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "Thông số phụ tùng" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "Kiện hàng" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "Hàng còn ít" @@ -7141,10 +7155,6 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "Kho hàng" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "Nguyên liệu mới nhất" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "" msgid "Import Part" msgstr "" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "Số seri mới nhất" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "Tất cả những thống số được chọn sẽ bị xoá" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "Xóa các thông số" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "Không có thông số được tìm thấy" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "Những thông số thuộc mẫu này cũng sẽ bị xóa" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" -msgstr "" - -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "" msgid "Email settings not configured" msgstr "" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "" @@ -12663,35 +12823,35 @@ msgstr "" msgid "Important dates" msgstr "" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "" diff --git a/InvenTree/locale/zh/LC_MESSAGES/django.po b/InvenTree/locale/zh/LC_MESSAGES/django.po index 9b3b15be5d..6343acb225 100644 --- a/InvenTree/locale/zh/LC_MESSAGES/django.po +++ b/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: 2023-06-03 14:06+0000\n" -"PO-Revision-Date: 2023-06-03 23:52\n" +"POT-Creation-Date: 2023-07-05 01:12+0000\n" +"PO-Revision-Date: 2023-07-05 21:44\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -25,19 +25,19 @@ msgstr "未找到 API 端点" msgid "User does not have permission to view this model" msgstr "用户无权查看该模型" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 msgid "Provided value is not a valid number" msgstr "" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -49,26 +49,26 @@ msgstr "在管理面板中可以找到错误详细信息" msgid "Enter date" msgstr "输入日期" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "备注" @@ -81,47 +81,51 @@ msgstr "值 '{name}' 没有以模式格式显示" msgid "Provided value does not match required pattern: " msgstr "提供的值与所需模式不匹配: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "输入密码" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "输入新密码" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "确认密码" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "确认新密码" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "旧密码" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Email (再次)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Email 地址确认" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "您必须输入相同的 Email 。" -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "所提供的主要电子邮件地址无效。" -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "提供的电子邮件域未被核准。" -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "提供的数量无效" @@ -237,9 +241,9 @@ msgstr "缺少文件" msgid "Missing external link" msgstr "缺少外部链接" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "附件" @@ -247,29 +251,30 @@ msgstr "附件" msgid "Select file to attach" msgstr "选择附件" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2688 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "链接" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "链接到外部 URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "注释" @@ -277,13 +282,13 @@ msgstr "注释" msgid "File comment" msgstr "文件注释" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2147 +#: common/models.py:2148 common/models.py:2361 common/models.py:2362 +#: common/models.py:2618 common/models.py:2619 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "用户" @@ -324,54 +329,54 @@ msgstr "同一个主体下不能有相同名字" msgid "Invalid choice" msgstr "选择无效" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2347 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:164 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "名称" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:177 +#: report/models.py:580 report/models.py:624 #: report/templates/report/inventree_build_order_base.html:117 -#: stock/admin.py:41 stock/templates/stock/location.html:123 +#: stock/admin.py:41 stock/templates/stock/location.html:124 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "描述信息" @@ -384,7 +389,7 @@ msgid "parent" msgstr "上级项" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "路径" @@ -420,12 +425,12 @@ msgstr "服务器错误" msgid "An error has been logged by the server." msgstr "服务器记录了一个错误。" -#: InvenTree/serializers.py:60 part/models.py:3891 +#: InvenTree/serializers.py:60 part/models.py:3945 msgid "Must be a valid number" msgstr "必须是有效数字" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -498,316 +503,319 @@ msgstr "远程图像文件的 URL" msgid "Downloading images from remote URL is not enabled" msgstr "未启用从远程 URL下载图像" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "捷克语" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "丹麦语" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "德语" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "希腊语" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "英语" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "西班牙语" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "西班牙语(墨西哥)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "波斯语" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 msgid "Finnish" msgstr "" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "法语" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "希伯来语" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "匈牙利语" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "意大利语" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "日语" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "韩语" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "荷兰语" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "挪威语" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "波兰语" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "葡萄牙语" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "葡萄牙语 (巴西)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "俄语" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "斯洛文尼亚" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "瑞典语" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "泰语" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "土耳其语" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "越南语" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "中文(简体)" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "后台工作人员检查失败" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "未配置电子邮件后端" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "InventTree系统健康检查失败" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "待定" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "已添加" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "完成" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "已取消" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "丢失" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "已退回" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "已发货" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "需要关注" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "破损" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "已销毁" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "已拒绝" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "隔离" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "旧库存跟踪条目" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "库存项已创建" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "已编辑库存项" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "已分配序列号" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "库存计数" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "已手动添加库存" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "库存手动删除" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "仓储地点已更改" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 msgid "Stock updated" msgstr "" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "安装到组装中" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "已从组装中删除" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "已安装组件项" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "已删除组件项" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "从父项拆分" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "拆分子项" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "合并的库存项目" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "转换为变量" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "发送给客户" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "从客户退货" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "已创建生产订单输出" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "生产订单输出已完成" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 msgid "Build order output rejected" msgstr "" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "被生产订单消耗" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 msgid "Shipped against Sales Order" msgstr "" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 msgid "Received against Purchase Order" msgstr "" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 msgid "Returned against Return Order" msgstr "" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "发送给客户" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "从客户退货" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "生产中" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 msgid "Return" msgstr "" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 msgid "Replace" msgstr "" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 msgid "Reject" msgstr "" @@ -831,99 +839,127 @@ msgstr "备损不能超过 100%" msgid "Invalid value for overage" msgstr "无效的备损值" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "编辑用户信息" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "设置密码" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "密码字段必须相匹配。" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "密码错误" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "系统信息" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "关于 InventTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "在删除前必须取消生产" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3837 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3831 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "可选项" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "已分配" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "生产订单" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "生产订单" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "上级生产选项无效" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "相关生产订单" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3792 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3846 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "引用" -#: build/models.py:167 +#: build/models.py:171 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "上级生产" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "此次生产匹配的订单" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3549 -#: part/models.py:3657 part/models.py:3757 part/models.py:4071 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3593 +#: part/models.py:3716 part/models.py:3811 part/models.py:4125 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -932,584 +968,601 @@ msgstr "此次生产匹配的订单" #: report/templates/report/inventree_build_order_base.html:109 #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 +#: report/templates/report/inventree_slr_report.html:102 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "商品" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "选择要生产的商品" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "相关销售订单" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "此次生产匹配的销售订单" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "来源地点" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "此次生产从哪个仓储位置获取库存(留空即可从任何仓储位置取出)" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "目标地点" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "选择已完成项目仓储地点" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "生产数量" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "要生产的项目数量" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "已完成项目" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "已完成的库存项目数量" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "生产状态" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "生产状态代码" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "批量代码" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "此生产产出的批量代码" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "创建日期" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "预计完成日期" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "生产完成的目标日期。生产将在此日期之后逾期。" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "完成日期:" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "完成人" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "发布者" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "发布此生产订单的用户" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "责任人" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "构建此订单的用户或组" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "外部链接" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "创建优先级" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "此构建订单的优先级" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:310 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "生产订单 {build} 已完成" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "生产订单已完成" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "未指定生产产出" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "生产产出已完成" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "生产产出与订单不匹配" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "数量必须大于0" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" -msgstr "生产项必须指定生产产出,因为主部件已经被标记为可追踪的" +#: build/models.py:1265 +msgid "Build object" +msgstr "" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "分配数量 ({q}) 不得超过可用库存数量 ({a})" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "库存物品分配过度!" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "分配数量必须大于0" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "序列化库存的数量必须是 1" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "在BOM中找不到选定的库存项" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "生产" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "生产以分配部件" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "库存项" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "源库存项" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2169 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3773 +#: part/forms.py:47 part/models.py:3029 part/models.py:3827 #: 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_base.html:113 #: report/templates/report/inventree_po_report_base.html:29 +#: report/templates/report/inventree_slr_report.html:104 #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "数量" -#: build/models.py:1469 +#: build/models.py:1280 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "生产项必须指定生产产出,因为主部件已经被标记为可追踪的" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "分配数量 ({q}) 不得超过可用库存数量 ({a})" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "库存物品分配过度!" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "分配数量必须大于0" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "序列化库存的数量必须是 1" + +#: build/models.py:1454 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "库存项" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "源库存项" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "分配到生产的数量" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "安装到" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "目标库存项" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "生产产出" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "生产产出与对应生产不匹配" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "产出部件与生产订单部件不匹配" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "此生产产出已经完成" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "生产产出未被完成分配" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "输入生产产出数量" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "对于可追踪的部件,需要整数型数值" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "需要整数型数值,因为BOM包含可追踪的部件" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "序列号" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "输入生产产出的序列号" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "自动分配序列号" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "自动为所需项分配对应的序列号" -#: build/serializers.py:326 stock/api.py:669 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "以下序列号已存在或无效" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "必须提供生产产出列表" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "地点" -#: build/serializers.py:416 +#: build/serializers.py:424 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:422 +#: build/serializers.py:430 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "已完成生产产出的仓储地点" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "状态" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "接受不完整的分配" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "如果库存尚未完成分配,完成产出" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "移除已分配的库存" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "减去已经分配至此生产的库存" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "移除未完成的产出" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "删除所有未完成的生产产出" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "接受此构建订单所消耗的内容" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "在完成此构建订单前取消分配" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "超出分配的库存" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "你想如何处理分配给构建订单的额外库存物品" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "一些库存项已被过度分配" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "接受未分配的" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "接受库存项未被完成分配至此生产订单" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "所需库存尚未完全分配" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "接受未完成" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "接受所需的生产产出未完成" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "所需生产数量尚未完成" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "生产订单有未完成的产出" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3680 -#: part/models.py:4063 -msgid "BOM Item" -msgstr "BOM项" +#: build/serializers.py:722 +msgid "Build Line" +msgstr "" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "生产产出" -#: build/serializers.py:732 +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "生产产出必须指向相同的生产" -#: build/serializers.py:782 +#: build/serializers.py:776 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part 必须与生产订单指向相同的部件" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "项目必须在库存中" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "可用量 ({q}) 超出了限制" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "对于被追踪的部件的分配,必须指定生产产出" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "对于未被追踪的部件,无法指定生产产出" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "此库存项已被分配至此生产产出" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "必须提供分配的项" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "部件来源的仓储地点(留空则可来源于任何仓储地点)" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "排除地点" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "从该选定的仓储地点排除库存项" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "可互换的库存" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "多处地点的库存项可以互换使用" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "可替换的库存" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "允许分配可替换的部件" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "可选项目" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "分配可选的BOM项目来建立订单" @@ -1538,6 +1591,7 @@ msgstr "" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1616,69 +1670,67 @@ msgstr "生产完成" msgid "Build Description" msgstr "构建描述" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "针对此生产订单,尚未创建生产产出" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "构建订单已准备好标记为已完成" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "创建订单无法完成,因为未完成的输出" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "所需生产数量尚未完成" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "预计日期" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "此次生产的截止日期为 %(target)s" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "逾期" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "已完成" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1686,32 +1738,32 @@ msgstr "已完成" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "销售订单" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "发布者" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "优先级" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "删除生产订单" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 msgid "Build Order QR Code" msgstr "" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 msgid "Link Barcode to Build Order" msgstr "" @@ -1727,8 +1779,8 @@ msgstr "库存来源" msgid "Stock can be taken from any available location." msgstr "库存可以从任何可用的地点获得。" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "目的地" @@ -1742,21 +1794,21 @@ msgstr "已分配的部件" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "批量" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "已创建" @@ -1764,147 +1816,106 @@ msgstr "已创建" msgid "No target date set" msgstr "无预计日期" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "子生产订单" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "为生产分配库存" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" -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 "Unallocate Stock" -msgstr "未分配库存" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "自动分配存货进行生成" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "自动分配" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "手动分配存货进行生成" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "分配库存" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "订单所需部件" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "订购商品" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "未跟踪的库存已完全分配给此生产订单" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "未跟踪的库存尚未完全分配给此生产订单" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "分配选定项目" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "此构建订单没有任何关联的 BOM 项目" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "未完成的生产产出" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "创建新构建输出" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "新建构建输出" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "输出操作" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "完成选定的构建输出" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "已完成输出" - -#: build/templates/build/detail.html:265 -msgid "Scrap selected build outputs" -msgstr "" - -#: build/templates/build/detail.html:266 -msgid "Scrap outputs" -msgstr "" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "删除选中的构建输出" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "删除输出" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 msgid "Consumed Stock" msgstr "" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "已完成构建输出" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "生产备注" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "分配完成" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" -msgstr "所有未跟踪的库存项目都已分配" +#: build/templates/build/detail.html:423 +msgid "All lines have been fully allocated" +msgstr "" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "新建生产订单" @@ -1912,14 +1923,10 @@ msgstr "新建生产订单" msgid "Build Order Details" msgstr "生产订单详情" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "未完成输出" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "已完成输出" - #: common/files.py:63 #, python-brace-format msgid "Unsupported file format: {fmt}" @@ -1966,16 +1973,6 @@ msgstr "已更新" msgid "Timestamp of last update" msgstr "最后一次更新时间" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -msgid "Project Code" -msgstr "" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2126,8 +2123,8 @@ msgid "How often to check for updates (set to zero to disable)" msgstr "" #: common/models.py:1028 common/models.py:1046 common/models.py:1053 -#: common/models.py:1064 common/models.py:1075 common/models.py:1299 -#: common/models.py:1323 common/models.py:1446 common/models.py:1695 +#: common/models.py:1064 common/models.py:1075 common/models.py:1306 +#: common/models.py:1330 common/models.py:1453 common/models.py:1702 msgid "days" msgstr "天" @@ -2259,9 +2256,9 @@ msgstr "复制类别参数模板" msgid "Copy category parameter templates when creating a part" msgstr "创建零件时复制类别参数模板" -#: common/models.py:1162 part/admin.py:55 part/models.py:3554 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3598 +#: report/models.py:170 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "模板" @@ -2269,10 +2266,10 @@ msgstr "模板" msgid "Parts are templates by default" msgstr "零件默认为模板" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "组装" @@ -2280,8 +2277,8 @@ msgstr "组装" msgid "Parts can be assembled from other components by default" msgstr "默认情况下可以从其他组件组装部件" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "组件" @@ -2289,7 +2286,7 @@ msgstr "组件" msgid "Parts can be used as sub-components by default" msgstr "默认情况下可以从其他组件组装部件" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "可购买" @@ -2297,8 +2294,8 @@ msgstr "可购买" msgid "Parts are purchaseable by default" msgstr "商品默认可购买" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "可销售" @@ -2306,10 +2303,10 @@ msgstr "可销售" msgid "Parts are salable by default" msgstr "商品默认可销售" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "可追踪" @@ -2317,10 +2314,10 @@ msgstr "可追踪" msgid "Parts are trackable by default" msgstr "商品默认可跟踪" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "虚拟" @@ -2352,7 +2349,7 @@ msgstr "初始库存数据" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "初始供应商数据" @@ -2377,525 +2374,525 @@ msgid "Part category default icon (empty means no icon)" msgstr "零件类别默认图标(留空表示没有图标)" #: common/models.py:1253 -msgid "Minimum Pricing Decimal Places" +msgid "Enforce Parameter Units" msgstr "" #: common/models.py:1254 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1260 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1261 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1264 +#: common/models.py:1271 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1265 +#: common/models.py:1272 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1275 +#: common/models.py:1282 msgid "Use Supplier Pricing" msgstr "使用供应商价格" -#: common/models.py:1276 +#: common/models.py:1283 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1282 +#: common/models.py:1289 msgid "Purchase History Override" msgstr "覆盖购买记录" -#: common/models.py:1283 +#: common/models.py:1290 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1289 +#: common/models.py:1296 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1290 +#: common/models.py:1297 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1296 +#: common/models.py:1303 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1297 +#: common/models.py:1304 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1307 +#: common/models.py:1314 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1308 +#: common/models.py:1315 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1314 +#: common/models.py:1321 msgid "Active Variants Only" msgstr "" -#: common/models.py:1315 +#: common/models.py:1322 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1321 +#: common/models.py:1328 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1322 +#: common/models.py:1329 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1332 +#: common/models.py:1339 msgid "Internal Prices" msgstr "内部价格" -#: common/models.py:1333 +#: common/models.py:1340 msgid "Enable internal prices for parts" msgstr "启用内部商品价格" -#: common/models.py:1339 +#: common/models.py:1346 msgid "Internal Price Override" msgstr "覆盖内部价格" -#: common/models.py:1340 +#: common/models.py:1347 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1346 +#: common/models.py:1353 msgid "Enable label printing" msgstr "启用标签打印功能" -#: common/models.py:1347 +#: common/models.py:1354 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1353 +#: common/models.py:1360 msgid "Label Image DPI" msgstr "标签图像 DPI" -#: common/models.py:1354 +#: common/models.py:1361 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1363 +#: common/models.py:1370 msgid "Enable Reports" msgstr "启用报告" -#: common/models.py:1364 +#: common/models.py:1371 msgid "Enable generation of reports" msgstr "启用报告生成" -#: common/models.py:1370 templates/stats.html:25 +#: common/models.py:1377 templates/stats.html:25 msgid "Debug Mode" msgstr "调试模式" -#: common/models.py:1371 +#: common/models.py:1378 msgid "Generate reports in debug mode (HTML output)" msgstr "在调试模式生成报告(HTML输出)" -#: common/models.py:1377 +#: common/models.py:1384 msgid "Page Size" msgstr "页面大小" -#: common/models.py:1378 +#: common/models.py:1385 msgid "Default page size for PDF reports" msgstr "PDF 报表默认页面大小" -#: common/models.py:1388 +#: common/models.py:1395 msgid "Enable Test Reports" msgstr "启用测试报告" -#: common/models.py:1389 +#: common/models.py:1396 msgid "Enable generation of test reports" msgstr "启用生成测试报表" -#: common/models.py:1395 +#: common/models.py:1402 msgid "Attach Test Reports" msgstr "添加测试报告" -#: common/models.py:1396 +#: common/models.py:1403 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1402 +#: common/models.py:1409 msgid "Globally Unique Serials" msgstr "全局唯一序列号" -#: common/models.py:1403 +#: common/models.py:1410 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1409 +#: common/models.py:1416 msgid "Autofill Serial Numbers" msgstr "自动填充序列号" -#: common/models.py:1410 +#: common/models.py:1417 msgid "Autofill serial numbers in forms" msgstr "以表格形式自动填写序列号" -#: common/models.py:1416 +#: common/models.py:1423 msgid "Delete Depleted Stock" msgstr "删除已耗尽的库存" -#: common/models.py:1417 +#: common/models.py:1424 msgid "Determines default behaviour when a stock item is depleted" msgstr "" -#: common/models.py:1423 +#: common/models.py:1430 msgid "Batch Code Template" msgstr "" -#: common/models.py:1424 +#: common/models.py:1431 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1429 +#: common/models.py:1436 msgid "Stock Expiry" msgstr "库存到期" -#: common/models.py:1430 +#: common/models.py:1437 msgid "Enable stock expiry functionality" msgstr "启用库存到期功能" -#: common/models.py:1436 +#: common/models.py:1443 msgid "Sell Expired Stock" msgstr "销售过期库存" -#: common/models.py:1437 +#: common/models.py:1444 msgid "Allow sale of expired stock" msgstr "允许销售过期库存" -#: common/models.py:1443 +#: common/models.py:1450 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1444 +#: common/models.py:1451 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1451 +#: common/models.py:1458 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1452 +#: common/models.py:1459 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1458 +#: common/models.py:1465 msgid "Stock Ownership Control" msgstr "库存所有权控制" -#: common/models.py:1459 +#: common/models.py:1466 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1465 +#: common/models.py:1472 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1466 +#: common/models.py:1473 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" - -#: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" -msgstr "" - #: common/models.py:1478 -msgid "Enable Return Orders" +msgid "Show Installed Stock Items" msgstr "" #: common/models.py:1479 -msgid "Enable return order functionality in the user interface" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1485 -msgid "Return Order Reference Pattern" +msgid "Build Order Reference Pattern" msgstr "" #: common/models.py:1486 -msgid "Required pattern for generating Return Order reference field" +msgid "Required pattern for generating Build Order reference field" msgstr "" #: common/models.py:1492 -msgid "Edit Completed Return Orders" +msgid "Enable Return Orders" msgstr "" #: common/models.py:1493 -msgid "Allow editing of return orders after they have been completed" +msgid "Enable return order functionality in the user interface" msgstr "" #: common/models.py:1499 -msgid "Sales Order Reference Pattern" +msgid "Return Order Reference Pattern" msgstr "" #: common/models.py:1500 -msgid "Required pattern for generating Sales Order reference field" +msgid "Required pattern for generating Return Order reference field" msgstr "" #: common/models.py:1506 -msgid "Sales Order Default Shipment" +msgid "Edit Completed Return Orders" msgstr "" #: common/models.py:1507 -msgid "Enable creation of default shipment with sales orders" +msgid "Allow editing of return orders after they have been completed" msgstr "" #: common/models.py:1513 -msgid "Edit Completed Sales Orders" +msgid "Sales Order Reference Pattern" msgstr "" #: common/models.py:1514 -msgid "Allow editing of sales orders after they have been shipped or completed" +msgid "Required pattern for generating Sales Order reference field" msgstr "" #: common/models.py:1520 -msgid "Purchase Order Reference Pattern" +msgid "Sales Order Default Shipment" msgstr "" #: common/models.py:1521 -msgid "Required pattern for generating Purchase Order reference field" +msgid "Enable creation of default shipment with sales orders" msgstr "" #: common/models.py:1527 -msgid "Edit Completed Purchase Orders" -msgstr "编辑已完成的采购订单" +msgid "Edit Completed Sales Orders" +msgstr "" #: common/models.py:1528 -msgid "Allow editing of purchase orders after they have been shipped or completed" +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1534 +msgid "Purchase Order Reference Pattern" msgstr "" #: common/models.py:1535 +msgid "Required pattern for generating Purchase Order reference field" +msgstr "" + +#: common/models.py:1541 +msgid "Edit Completed Purchase Orders" +msgstr "编辑已完成的采购订单" + +#: common/models.py:1542 +msgid "Allow editing of purchase orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1549 msgid "Enable password forgot" msgstr "启用忘记密码" -#: common/models.py:1536 +#: common/models.py:1550 msgid "Enable password forgot function on the login pages" msgstr "在登录页面启用忘记密码功能" -#: common/models.py:1542 +#: common/models.py:1556 msgid "Enable registration" msgstr "启用注册" -#: common/models.py:1543 +#: common/models.py:1557 msgid "Enable self-registration for users on the login pages" msgstr "在登录页面启用注册功能" -#: common/models.py:1549 +#: common/models.py:1563 msgid "Enable SSO" msgstr "启用 SSO" -#: common/models.py:1550 +#: common/models.py:1564 msgid "Enable SSO on the login pages" msgstr "在登录页面启用 SSO" -#: common/models.py:1556 +#: common/models.py:1570 msgid "Enable SSO registration" msgstr "启用 SSO 注册" -#: common/models.py:1557 +#: common/models.py:1571 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1563 +#: common/models.py:1577 msgid "Email required" msgstr "需要邮箱" -#: common/models.py:1564 +#: common/models.py:1578 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1570 +#: common/models.py:1584 msgid "Auto-fill SSO users" msgstr "自动填充 SSO 用户" -#: common/models.py:1571 +#: common/models.py:1585 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1577 +#: common/models.py:1591 msgid "Mail twice" msgstr "" -#: common/models.py:1578 +#: common/models.py:1592 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1584 +#: common/models.py:1598 msgid "Password twice" msgstr "" -#: common/models.py:1585 +#: common/models.py:1599 msgid "On signup ask users twice for their password" msgstr "当注册时请用户两次输入密码" -#: common/models.py:1591 +#: common/models.py:1605 msgid "Allowed domains" msgstr "" -#: common/models.py:1592 +#: common/models.py:1606 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:1598 +#: common/models.py:1612 msgid "Group on signup" msgstr "" -#: common/models.py:1599 +#: common/models.py:1613 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1605 +#: common/models.py:1619 msgid "Enforce MFA" msgstr "强制启用 MFA" -#: common/models.py:1606 +#: common/models.py:1620 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1612 +#: common/models.py:1626 msgid "Check plugins on startup" msgstr "启动时检查插件" -#: common/models.py:1613 +#: common/models.py:1627 msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:1620 -msgid "Check plugin signatures" -msgstr "检查插件签名" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" -msgstr "检查并显示插件的签名" - -#: common/models.py:1628 +#: common/models.py:1635 msgid "Enable URL integration" msgstr "启用 URL 集成" -#: common/models.py:1629 +#: common/models.py:1636 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1636 +#: common/models.py:1643 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1637 +#: common/models.py:1644 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1644 +#: common/models.py:1651 msgid "Enable app integration" msgstr "启用应用集成" -#: common/models.py:1645 +#: common/models.py:1652 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1652 +#: common/models.py:1659 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1653 +#: common/models.py:1660 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1660 +#: common/models.py:1667 msgid "Enable event integration" msgstr "" -#: common/models.py:1661 +#: common/models.py:1668 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1668 +#: common/models.py:1675 msgid "Enable project codes" msgstr "" -#: common/models.py:1669 +#: common/models.py:1676 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:1675 +#: common/models.py:1682 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:1676 +#: common/models.py:1683 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:1682 +#: common/models.py:1689 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:1683 +#: common/models.py:1690 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:1692 +#: common/models.py:1699 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:1693 +#: common/models.py:1700 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1717 common/models.py:2140 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1729 +#: common/models.py:1736 msgid "No Printer (Export to PDF)" msgstr "" -#: common/models.py:1751 +#: common/models.py:1758 msgid "Hide inactive parts" msgstr "" -#: common/models.py:1752 +#: common/models.py:1759 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:1758 +#: common/models.py:1765 msgid "Show subscribed parts" msgstr "查看订阅中的部件" -#: common/models.py:1759 +#: common/models.py:1766 msgid "Show subscribed parts on the homepage" msgstr "在主页上显示订阅中的部件" -#: common/models.py:1765 +#: common/models.py:1772 msgid "Show subscribed categories" msgstr "查看订阅中的类别" -#: common/models.py:1766 +#: common/models.py:1773 msgid "Show subscribed part categories on the homepage" msgstr "在主页上显示订阅中的部件类别" -#: common/models.py:1772 +#: common/models.py:1779 msgid "Show latest parts" msgstr "显示最近商品" -#: common/models.py:1773 +#: common/models.py:1780 msgid "Show latest parts on the homepage" msgstr "在主页上显示最近商品" -#: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "" - #: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "显示未验证的物料清单" @@ -2913,504 +2910,497 @@ msgid "Show recently changed stock items on the homepage" msgstr "" #: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 msgid "Show low stock" msgstr "显示低库存" -#: common/models.py:1808 +#: common/models.py:1801 msgid "Show low stock items on the homepage" msgstr "在主页上显示低库存的项目" -#: common/models.py:1814 +#: common/models.py:1807 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1808 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1814 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1815 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1821 msgid "Show expired stock" msgstr "显示过期库存" -#: common/models.py:1829 +#: common/models.py:1822 msgid "Show expired stock items on the homepage" msgstr "在主页上显示过期的库存项目" -#: common/models.py:1835 +#: common/models.py:1828 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1829 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1835 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1836 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1842 msgid "Show overdue builds" msgstr "显示逾期生产" -#: common/models.py:1850 +#: common/models.py:1843 msgid "Show overdue builds on the homepage" msgstr "在主页上显示逾期的生产" -#: common/models.py:1856 +#: common/models.py:1849 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1850 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1856 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1857 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1863 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1864 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1870 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1871 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1877 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1878 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:1891 +#: common/models.py:1884 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1885 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1891 msgid "Inline label display" msgstr "内嵌标签显示" -#: common/models.py:1899 +#: common/models.py:1892 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "在浏览器中显示 PDF 标签,而不是以文件形式下载" -#: common/models.py:1905 +#: common/models.py:1898 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1899 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1905 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1906 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "在浏览器中显示 PDF 报告,而不是以文件形式下载" -#: common/models.py:1919 +#: common/models.py:1912 msgid "Search Parts" msgstr "搜索部件" -#: common/models.py:1920 +#: common/models.py:1913 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1919 msgid "Search Supplier Parts" msgstr "搜索供应商部件" -#: common/models.py:1927 +#: common/models.py:1920 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1926 msgid "Search Manufacturer Parts" msgstr "搜索制造商部件" -#: common/models.py:1934 +#: common/models.py:1927 msgid "Display manufacturer parts in search preview window" msgstr "在搜索预览窗口中显示制造商部件" -#: common/models.py:1940 +#: common/models.py:1933 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1934 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1940 msgid "Search Categories" msgstr "搜索分类" -#: common/models.py:1948 +#: common/models.py:1941 msgid "Display part categories in search preview window" msgstr "在搜索预览窗口中显示部件类别" -#: common/models.py:1954 +#: common/models.py:1947 msgid "Search Stock" msgstr "搜索库存" -#: common/models.py:1955 +#: common/models.py:1948 msgid "Display stock items in search preview window" msgstr "在搜索预览窗口中显示库存项目" -#: common/models.py:1961 +#: common/models.py:1954 msgid "Hide Unavailable Stock Items" msgstr "隐藏不可用的库存项目" -#: common/models.py:1962 +#: common/models.py:1955 msgid "Exclude stock items which are not available from the search preview window" msgstr "在搜索预览窗口中排除不可用的库存项目" -#: common/models.py:1968 +#: common/models.py:1961 msgid "Search Locations" msgstr "搜索位置" -#: common/models.py:1969 +#: common/models.py:1962 msgid "Display stock locations in search preview window" msgstr "在搜索预览窗口中显示库存位置" -#: common/models.py:1975 +#: common/models.py:1968 msgid "Search Companies" msgstr "搜索公司" -#: common/models.py:1976 +#: common/models.py:1969 msgid "Display companies in search preview window" msgstr "在搜索预览窗口中显示公司" -#: common/models.py:1982 +#: common/models.py:1975 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1976 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1982 msgid "Search Purchase Orders" msgstr "搜索采购订单" -#: common/models.py:1990 +#: common/models.py:1983 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1989 msgid "Exclude Inactive Purchase Orders" msgstr "排除不活动的采购订单" -#: common/models.py:1997 +#: common/models.py:1990 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1996 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1997 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:2003 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:2004 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2010 msgid "Search Return Orders" msgstr "" -#: common/models.py:2018 +#: common/models.py:2011 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2017 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2018 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2024 msgid "Search Preview Results" msgstr "搜索预览结果" -#: common/models.py:2032 +#: common/models.py:2025 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2031 msgid "Regex Search" msgstr "" -#: common/models.py:2039 +#: common/models.py:2032 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2038 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2039 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2045 msgid "Show Quantity in Forms" msgstr "在表格中显示数量" -#: common/models.py:2053 +#: common/models.py:2046 msgid "Display available part quantity in some forms" msgstr "在某些表格中显示可用的商品数量" -#: common/models.py:2059 +#: common/models.py:2052 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2053 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2059 msgid "Fixed Navbar" msgstr "固定导航栏" -#: common/models.py:2067 +#: common/models.py:2060 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2066 msgid "Date Format" msgstr "日期格式" -#: common/models.py:2074 +#: common/models.py:2067 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2081 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2082 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2088 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2089 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2095 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2096 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2105 msgid "Default part label template" msgstr "" -#: common/models.py:2113 +#: common/models.py:2106 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2114 msgid "Default stock item template" msgstr "" -#: common/models.py:2122 +#: common/models.py:2115 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2123 msgid "Default stock location label template" msgstr "" -#: common/models.py:2131 +#: common/models.py:2124 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2170 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2177 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "价格" -#: common/models.py:2185 +#: common/models.py:2178 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2338 common/models.py:2516 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2339 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2348 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2353 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2354 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2368 msgid "Token" msgstr "令牌" -#: common/models.py:2376 +#: common/models.py:2369 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2376 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2377 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2483 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2484 msgid "Unique identifier for this message" msgstr "该消息的唯一标识符" -#: common/models.py:2499 +#: common/models.py:2492 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2493 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2500 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2501 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2507 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2508 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2517 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2522 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2523 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2677 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2683 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "标题" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2693 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2698 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "作者" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2703 templates/js/translated/news.js:52 msgid "Summary" msgstr "概述" -#: common/models.py:2715 +#: common/models.py:2708 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2709 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2729 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3420,7 +3410,7 @@ msgstr "" msgid "Image" msgstr "图片" -#: common/models.py:2737 +#: common/models.py:2730 msgid "Image file" msgstr "" @@ -3497,7 +3487,7 @@ msgstr "公司简介" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "网站" @@ -3505,303 +3495,388 @@ msgstr "网站" msgid "Company website URL" msgstr "公司网站" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "地址" - -#: company/models.py:119 -msgid "Company address" -msgstr "公司地址" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "电话号码" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "联系电话" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "电子邮件" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "联系人电子邮件" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "联系人" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "链接到外部公司信息" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "是客户" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "您是否向该公司出售商品?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "是供应商" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "您是否从该公司采购商品?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "是制造商" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "该公司制造商品吗?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "该公司使用的默认货币" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "公司" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +msgid "Select company" +msgstr "" + +#: company/models.py:332 +msgid "Address title" +msgstr "" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +msgid "Primary address" +msgstr "" + +#: company/models.py:338 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +msgid "Address line 1" +msgstr "" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +msgid "Address line 2" +msgstr "" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +msgid "Address country" +msgstr "" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "选择商品" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "制造商" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "选择制造商" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "制造商商品编号" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "制造商商品描述" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "制造商商品" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "参数名称" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "数值" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "参数值" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "单位" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "参数单位" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "供应商" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "选择供应商" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "选择制造商商品" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "外部供货商商品链接URL" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "供应商商品描述" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3795 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3849 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 +#: report/templates/report/inventree_slr_report.html:105 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "备注" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "最低收费(例如库存费)" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "打包" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "商品打包" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "包装数量" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "订购多个" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "空闲" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "供应商的存货数量" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "该公司使用的默认货币" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "创建采购订单" @@ -3814,7 +3889,7 @@ msgid "Edit company information" msgstr "编辑公司信息" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "编辑公司信息" @@ -3854,17 +3929,17 @@ msgstr "从 URL 下载图片" msgid "Delete image" msgstr "删除图片" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "客户" @@ -3872,6 +3947,13 @@ msgstr "客户" msgid "Uses default currency" msgstr "使用默认货币" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "地址" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "电话" @@ -3904,7 +3986,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "供应商商品" @@ -3914,129 +3996,121 @@ msgstr "创建新的供应商商品" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "新建供应商商品" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "订购商品" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "删除商品" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "删除商品" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "新建制造商商品" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "新建制造商商品" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "供货商库存" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "采购订单" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "新建采购订单" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "新建采购订单" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "销售订单" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "新建销售订单" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "新建销售订单" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 msgid "Return Orders" msgstr "" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 msgid "Create new return order" msgstr "" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 msgid "New Return Order" msgstr "" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "公司备注" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 msgid "Company Contacts" msgstr "" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: 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/index.html:8 msgid "Supplier List" msgstr "供应商列表" @@ -4048,17 +4122,17 @@ msgstr "制造商" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "订购商品" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "编辑制造商商品" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "删除生产商商品" @@ -4078,40 +4152,22 @@ msgstr "" msgid "Suppliers" msgstr "供应商" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "删除供应商商品" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "删除" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "参数" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 +#: templates/InvenTree/settings/part_parameters.html:24 msgid "New Parameter" msgstr "新建参数" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "删除参数" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "添加参数" @@ -4135,23 +4191,28 @@ msgstr "" msgid "Contacts" msgstr "" +#: company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "供应商商品" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "订购商品" @@ -4162,13 +4223,13 @@ msgstr "更新可用性" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "编辑供应商商品" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "复制供应商部件" @@ -4189,13 +4250,13 @@ msgid "Supplier Part Stock" msgstr "供货商商品库存" #: company/templates/company/supplier_part.html:210 -#: part/templates/part/detail.html:24 stock/templates/stock/location.html:197 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:198 msgid "Create new stock item" msgstr "新建库存物品" #: company/templates/company/supplier_part.html:211 -#: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:199 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "新库存物品" @@ -4203,37 +4264,37 @@ msgstr "新库存物品" msgid "Supplier Part Orders" msgstr "供应商商品订单" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "价格信息" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "供应商部件二维码" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "将条码绑定至供应商部件" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "更新部件可用性" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 -#: stock/templates/stock/location.html:182 -#: stock/templates/stock/location.html:194 +#: stock/serializers.py:662 stock/templates/stock/location.html:169 +#: stock/templates/stock/location.html:183 +#: stock/templates/stock/location.html:195 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "库存项" @@ -4259,7 +4320,7 @@ msgstr "客户信息" msgid "New Customer" msgstr "新建客户" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "公司" @@ -4267,77 +4328,70 @@ msgstr "公司" msgid "New Company" msgstr "新建公司信息" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "标签名称" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "标签说明" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "标签" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "标签模板文件" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:277 msgid "Enabled" msgstr "已启用" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "标签模板已启用" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "宽度 [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "标注宽度,以毫米为单位。" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "高度 [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "标注高度,以毫米为单位。" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:270 msgid "Filename Pattern" msgstr "文件名样式" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," -msgstr "查询筛选器 (逗号分隔的键值对列表)" +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +msgid "Query filters (comma-separated list of key=value pairs)" +msgstr "" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:298 report/models.py:445 +#: report/models.py:483 report/models.py:521 report/models.py:645 msgid "Filters" msgstr "筛选器" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "查询筛选器 (逗号分隔的键值对列表" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "商品查询筛选器 (逗号分隔的键值对列表)" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 -msgid "QC Code" +msgid "QR Code" msgstr "" #: label/templates/label/part/part_label_code128.html:31 @@ -4346,569 +4400,573 @@ msgstr "" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 msgid "Return Order" msgstr "" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "未知" -#: order/models.py:71 +#: order/models.py:74 msgid "Total price for this order" msgstr "" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 msgid "Order Currency" msgstr "" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:229 +#: order/models.py:232 msgid "Order description (optional)" msgstr "" -#: order/models.py:231 +#: order/models.py:237 msgid "Select project code for this order" msgstr "" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "链接到外部页面" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "预期订单交付日期。超过该日期后订单将逾期。" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "创建者" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "负责此订单的用户或群组" -#: order/models.py:264 +#: order/models.py:271 msgid "Point of contact for this order" msgstr "" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "订购该商品的公司" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "接收方" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "签发日期" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "订单签发日期" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "订单完成日期" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "数量必须大于0" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "向其出售该商品的公司" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "发货日期" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "尚未分配部件,因此订单无法完成" -#: order/models.py:858 +#: order/models.py:874 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "物品数量" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "单价" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "供应商商品" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "采购价格" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "销售价格" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "物品" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 msgid "Return Order reference" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 msgid "Select item to return from customer" msgstr "" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "无法取消订单" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "条形码" -#: order/serializers.py:528 +#: order/serializers.py:535 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "数量必须大于0" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "输入序列号以进行分配" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1571 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 msgid "Line price currency" msgstr "" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "超时采购订单" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "采购订单 {po} 已逾期" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -4955,82 +5013,74 @@ msgid "Issue Order" msgstr "" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "标记订单为完成" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "完成订单" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 msgid "Supplier part thumbnail" msgstr "" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 msgid "Purchase Order QR Code" msgstr "" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 msgid "Link Barcode to Purchase Order" msgstr "" @@ -5083,13 +5133,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "移除行" @@ -5150,9 +5200,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5163,30 +5213,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -msgid "Delete Line Items" -msgstr "" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5206,29 +5251,29 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "总成本" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 msgid "Return Order QR Code" msgstr "" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 msgid "Link Barcode to Return Order" msgstr "" @@ -5246,7 +5291,7 @@ msgid "Ship Items" msgstr "" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5255,16 +5300,16 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 msgid "Sales Order QR Code" msgstr "" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 msgid "Link Barcode to Sales Order" msgstr "" @@ -5272,18 +5317,17 @@ msgstr "" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "操作" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5309,12 +5353,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3661 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3720 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "商品ID" -#: part/admin.py:34 part/admin.py:275 part/models.py:3665 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3724 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "部件名称" @@ -5323,19 +5367,20 @@ msgstr "部件名称" msgid "Part Description" msgstr "部件描述" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: report/templates/report/inventree_slr_report.html:103 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:183 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "版本号" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "关键词" @@ -5356,24 +5401,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "最低库存" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "有库存" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "订购中" @@ -5381,23 +5426,16 @@ msgstr "订购中" msgid "Used In" msgstr "用于" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "已分配" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5414,13 +5452,13 @@ msgstr "" msgid "Category Path" msgstr "类别路径" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "商品" @@ -5437,7 +5475,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3669 +#: part/admin.py:274 part/models.py:3728 msgid "Part IPN" msgstr "" @@ -5451,35 +5489,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "必须选择此项" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "默认仓储地点" @@ -5489,7 +5527,7 @@ msgid "Total Stock" msgstr "总库存" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "可用库存" @@ -5497,917 +5535,913 @@ msgstr "可用库存" msgid "Input quantity for price calculation" msgstr "输入数量以计算价格" -#: part/models.py:74 part/models.py:3610 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3669 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "商品类别" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "商品类别" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "此类别商品的默认仓储地点" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "此类别商品的默认关键字" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "图标" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "图标(可选)" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN 必须匹配正则表达式 {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "在商品设置中不允许重复的IPN" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3666 +#: part/models.py:850 part/models.py:3725 msgid "Part name" msgstr "商品名称" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 msgid "Part description (optional)" msgstr "" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "提高搜索结果可见性的关键字" -#: part/models.py:882 part/models.py:3192 part/models.py:3609 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3668 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "类别" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "商品类别" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "内部商品编号" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "商品版本号" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "默认供应商商品" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "允许的最小库存量" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "该部件的计量单位" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "此商品可以销售给客户吗?" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "这是一个虚拟商品,如软件产品或许可证吗?" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "新建用户" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "最低购买成本" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "最大购买成本" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "最高历史购买成本" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "最低内部价格" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "最大内部价格" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "日期" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "附加注释" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "报告" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 msgid "Choices must be unique" msgstr "" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3549 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3549 +#: part/models.py:3593 msgid "Parent Part" msgstr "" -#: part/models.py:3554 part/models.py:3615 part/models.py:3616 +#: part/models.py:3598 part/models.py:3674 part/models.py:3675 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "参数模板" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Data" msgstr "" -#: part/models.py:3559 +#: part/models.py:3603 msgid "Parameter Value" msgstr "" -#: part/models.py:3620 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3679 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "默认值" -#: part/models.py:3621 +#: part/models.py:3680 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3658 +#: part/models.py:3717 msgid "Part ID or part name" msgstr "" -#: part/models.py:3662 +#: part/models.py:3721 msgid "Unique part ID value" msgstr "" -#: part/models.py:3670 +#: part/models.py:3729 msgid "Part IPN value" msgstr "" -#: part/models.py:3673 +#: part/models.py:3732 msgid "Level" msgstr "" -#: part/models.py:3674 +#: part/models.py:3733 msgid "BOM level" msgstr "" -#: part/models.py:3758 +#: part/models.py:3739 part/models.py:4117 +msgid "BOM Item" +msgstr "BOM项" + +#: part/models.py:3812 msgid "Select parent part" msgstr "" -#: part/models.py:3766 +#: part/models.py:3820 msgid "Sub part" msgstr "子部件" -#: part/models.py:3767 +#: part/models.py:3821 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3773 +#: part/models.py:3827 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3777 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "可选项" - -#: part/models.py:3778 +#: part/models.py:3832 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3783 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3784 +#: part/models.py:3838 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3788 part/templates/part/upload_bom.html:55 +#: part/models.py:3842 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3789 +#: part/models.py:3843 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3792 +#: part/models.py:3846 msgid "BOM item reference" msgstr "" -#: part/models.py:3795 +#: part/models.py:3849 msgid "BOM item notes" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "Checksum" msgstr "" -#: part/models.py:3799 +#: part/models.py:3853 msgid "BOM line checksum" msgstr "" -#: part/models.py:3804 templates/js/translated/table_filters.js:144 +#: part/models.py:3858 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3805 +#: part/models.py:3859 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:3810 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3864 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3811 +#: part/models.py:3865 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3816 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3870 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3817 +#: part/models.py:3871 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3903 stock/models.py:577 +#: part/models.py:3957 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3912 part/models.py:3914 +#: part/models.py:3966 part/models.py:3968 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4030 +#: part/models.py:4084 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4051 +#: part/models.py:4105 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4064 +#: part/models.py:4118 msgid "Parent BOM item" msgstr "" -#: part/models.py:4072 +#: part/models.py:4126 msgid "Substitute part" msgstr "" -#: part/models.py:4087 +#: part/models.py:4141 msgid "Part 1" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Part 2" msgstr "" -#: part/models.py:4091 +#: part/models.py:4145 msgid "Select Related Part" msgstr "选择相关的部件" -#: part/models.py:4109 +#: part/models.py:4163 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4113 +#: part/models.py:4167 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:332 +msgid "Select category" +msgstr "" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "复制图像" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "从原部件复制图像" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "复制部件" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "供应商信息" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "复制类别参数" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "更新" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "移除现有数据" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "未提供数量" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6420,9 +6454,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "总数量" @@ -6460,14 +6494,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6504,7 +6530,7 @@ msgstr "删除类别" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "子类别" @@ -6517,33 +6543,21 @@ msgstr "商品 (包括子类别)" msgid "Create new part" msgstr "新建商品" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "新商品" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "选项" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "设置类别" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "设置类别" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 +#: templates/InvenTree/settings/part_parameters.html:7 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "商品参数" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "新建商品类别" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "新建分类" @@ -6580,7 +6594,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6591,7 +6605,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6603,101 +6617,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "相关部件" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "商品供应商" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "商品制造商" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "删除制造商商品" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6731,13 +6745,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6766,7 +6780,7 @@ msgstr "" #: part/templates/part/part_base.html:65 #: stock/templates/stock/item_base.html:111 -#: stock/templates/stock/location.html:81 +#: stock/templates/stock/location.html:82 msgid "Stock actions" msgstr "" @@ -6778,7 +6792,7 @@ msgstr "清点商品库存" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6823,10 +6837,10 @@ msgid "Part is not active" msgstr "" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -6849,7 +6863,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -6857,8 +6871,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -6881,7 +6895,7 @@ msgstr "商品二维码" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 msgid "part" msgstr "" @@ -6955,9 +6969,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "库存" @@ -6988,9 +7002,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "最后更新" @@ -7053,12 +7067,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "无库存" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "低库存" @@ -7141,10 +7155,6 @@ msgstr "未找到商品图像" msgid "Part Pricing" msgstr "商品价格" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "未指定操作" @@ -7166,7 +7176,7 @@ msgid "Match found for barcode data" msgstr "找到匹配条形码数据" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7229,47 +7239,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7277,21 +7283,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7328,139 +7330,151 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" -#: report/api.py:171 +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + +#: report/api.py:173 msgid "No valid objects provided to template" msgstr "没有为模板提供有效对象" -#: report/api.py:207 report/api.py:243 +#: report/api.py:209 report/api.py:245 #, python-brace-format msgid "Template file '{template}' is missing or does not exist" msgstr "" -#: report/api.py:310 +#: report/api.py:312 msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:165 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:171 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:178 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:184 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:271 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:278 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:299 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:307 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:308 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:369 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:370 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:411 msgid "Part Filters" msgstr "商品过滤器" -#: report/models.py:419 +#: report/models.py:412 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:446 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:484 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:522 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:575 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:576 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:580 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:617 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:618 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:625 msgid "Asset file description" msgstr "" +#: report/models.py:646 +msgid "stock location query filters (comma-separated list of key=value pairs)" +msgstr "" + #: report/templates/report/inventree_bill_of_materials_report.html:133 msgid "Materials needed" msgstr "" @@ -7478,8 +7492,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "单价" @@ -7491,26 +7505,30 @@ msgstr "" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "序列号" +#: report/templates/report/inventree_slr_report.html:97 +msgid "Stock location items" +msgstr "" + #: report/templates/report/inventree_test_report_base.html:21 msgid "Stock Item Test Report" msgstr "" @@ -7520,12 +7538,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7551,8 +7569,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7564,8 +7582,8 @@ msgstr "" msgid "Location Name" msgstr "" -#: stock/admin.py:44 stock/templates/stock/location.html:129 -#: stock/templates/stock/location.html:135 +#: stock/admin.py:44 stock/templates/stock/location.html:130 +#: stock/templates/stock/location.html:136 msgid "Location Path" msgstr "" @@ -7620,31 +7638,31 @@ msgstr "" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:581 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:588 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:614 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:623 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:641 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7654,8 +7672,8 @@ msgstr "" msgid "Stock Location" msgstr "仓储地点" -#: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: stock/models.py:55 stock/templates/stock/location.html:178 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "仓储地点" @@ -7673,8 +7691,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7690,7 +7708,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7803,233 +7821,242 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "序列号已存在" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "输入新项目的序列号" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "目标库存位置" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "添加交易备注 (可选)" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:670 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8037,48 +8064,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8086,13 +8113,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8101,15 +8128,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:89 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8118,11 +8147,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:95 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8162,6 +8192,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "生产" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8175,7 +8210,7 @@ msgid "You are not in the list of owners of this item. This stock item cannot be msgstr "" #: stock/templates/stock/item_base.html:253 -#: stock/templates/stock/location.html:147 +#: stock/templates/stock/location.html:148 msgid "Read only" msgstr "" @@ -8224,7 +8259,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "未设置仓储地点" @@ -8242,7 +8277,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8252,7 +8287,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8261,7 +8296,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 msgid "stock item" msgstr "" @@ -8329,58 +8364,62 @@ msgstr "" msgid "Scan In Container" msgstr "" -#: stock/templates/stock/location.html:102 +#: stock/templates/stock/location.html:74 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:103 msgid "Location actions" msgstr "仓储地操作" -#: stock/templates/stock/location.html:104 +#: stock/templates/stock/location.html:105 msgid "Edit location" msgstr "编辑仓储地" -#: stock/templates/stock/location.html:106 +#: stock/templates/stock/location.html:107 msgid "Delete location" msgstr "删除仓储地" -#: stock/templates/stock/location.html:136 +#: stock/templates/stock/location.html:137 msgid "Top level stock location" msgstr "" -#: stock/templates/stock/location.html:142 +#: stock/templates/stock/location.html:143 msgid "Location Owner" msgstr "" -#: stock/templates/stock/location.html:146 +#: stock/templates/stock/location.html:147 msgid "You are not in the list of owners of this location. This stock location cannot be edited." msgstr "您不在此仓储地的所有者列表中,无法编辑此仓储地。" -#: stock/templates/stock/location.html:163 -#: stock/templates/stock/location.html:211 +#: stock/templates/stock/location.html:164 +#: stock/templates/stock/location.html:212 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/templates/stock/location.html:215 +#: stock/templates/stock/location.html:216 msgid "Create new stock location" msgstr "新建仓储地点" -#: stock/templates/stock/location.html:216 +#: stock/templates/stock/location.html:217 msgid "New Location" msgstr "新建仓储地点" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:279 +#: templates/js/translated/stock.js:2465 msgid "stock location" msgstr "" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:307 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:380 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:391 msgid "Link Barcode to Stock Location" msgstr "" @@ -8454,71 +8493,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "最近商品" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8654,7 +8693,7 @@ msgstr "商品导入" msgid "Import Part" msgstr "导入商品" -#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/part_parameters.html:20 msgid "Part Parameter Templates" msgstr "商品参数模板" @@ -8675,63 +8714,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "样本" - -#: templates/InvenTree/settings/plugin_details.html:47 -msgid "Unavailable" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "插件信息" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8764,6 +8782,11 @@ msgstr "" msgid "Installation path" msgstr "安装路径" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8786,14 +8809,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "采购订单设置" @@ -8889,12 +8904,12 @@ msgid "No category parameter templates found" msgstr "未找到类别参数模板" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "编辑模板" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "删除模板" @@ -8932,7 +8947,7 @@ msgid "Home Page" msgstr "主页" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9009,6 +9024,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9223,44 +9239,48 @@ msgstr "已是最新版本" msgid "Update Available" msgstr "有可用更新" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "InvenTree 文档" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "API 版本" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "Python 版本" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "Django 版本" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "在 GitHub 上查看代码" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "致谢" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "手机 APP" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "提交 Bug" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "复制到剪贴板" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "显示版本信息" @@ -9454,14 +9474,6 @@ msgstr "" msgid "Add Attachment" msgstr "添加附件" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9506,7 +9518,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9520,7 +9532,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9592,23 +9604,35 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: 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:253 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "编辑附件" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9665,7 +9689,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9723,743 +9747,837 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "等级" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "包含参数数据" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "包括库存数据" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "在导出 BOM 中包括库存数据" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "包括制造商数据" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "在导出 BOM 中包含制造商数据" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "包含供应商数据" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "在导出 BOM 中包含供应商数据" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "是否确定取消生产?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "生产订单未完成" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "生产订单完成" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "可追踪商品可以指定序列号" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "创建创建生产产出" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" +#: templates/js/translated/build.js:424 +msgid "Deallocate stock from build output" msgstr "" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 msgid "Scrap build output" msgstr "" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" +#: templates/js/translated/build.js:468 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" msgstr "" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" +#: templates/js/translated/build.js:486 +msgid "Deallocate Stock Items" msgstr "" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 msgid "Selected build outputs will be marked as complete" msgstr "" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 msgid "Selected build outputs will be marked as scrapped" msgstr "" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 msgid "Scrapped output are marked as rejected" msgstr "" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 msgid "Allocated stock items will no longer be available" msgstr "" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 msgid "Scrap Build Outputs" msgstr "" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 msgid "Selected build outputs will be deleted" msgstr "" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 msgid "Build output data will be permanently deleted" msgstr "" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 msgid "Allocated stock items will be returned to stock" msgstr "" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +msgid "Allocated Quantity" +msgstr "" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "未指定仓储地点" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "已完成输出" + +#: templates/js/translated/build.js:1024 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "删除输出" + +#: templates/js/translated/build.js:1096 msgid "build output" msgstr "" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 msgid "build outputs" msgstr "" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +msgid "Allocated Lines" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "选择商品" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "没有用户信息" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2378 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2396 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "可追溯商品" + +#: templates/js/translated/build.js:2461 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2564 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "添加制造商" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "添加制造商商品" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "编辑制造商商品" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "添加供应商" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "添加供应商商品" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "删除所有选定的供应商商品" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "增加新的公司信息" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "未找到该公司信息" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 msgid "Create New Contact" msgstr "" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 msgid "Edit Contact" msgstr "" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 msgid "All selected contacts will be deleted" msgstr "" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 msgid "Delete Contacts" msgstr "" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 msgid "No contacts found" msgstr "" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 msgid "Phone Number" msgstr "" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 msgid "Email Address" msgstr "" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 msgid "Delete Contact" msgstr "" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:936 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:977 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:1020 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1070 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "删除制造商商品" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "删除参数" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "订购商品" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "删除制造商商品" + +#: templates/js/translated/company.js:1271 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "无指定参数" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "编辑参数" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "删除参数" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "编辑参数" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "删除参数" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "删除供应商商品" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "未找到供应商商品" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 msgid "Base Units" msgstr "" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "编辑供应商商品" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "删除供应商商品" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10467,31 +10585,31 @@ msgstr "" msgid "Select filter" msgstr "选择筛选项" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 msgid "Print Reports" msgstr "" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 msgid "Download table data" msgstr "" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10516,6 +10634,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:254 +msgid "Delete" +msgstr "删除" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10533,23 +10657,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10569,6 +10693,14 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10670,7 +10802,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "ID" @@ -10719,7 +10851,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10735,370 +10867,410 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "商品属性" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "商品创建选项" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "商品重复选项" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "增加商品类别" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "创建商品类别" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "编辑商品类别" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "删除商品类别" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "创建商品" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "编辑商品" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "可追溯商品" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "虚拟商品" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "可销售商品" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "未找到商品参数模板" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "找不到部件" -#: templates/js/translated/part.js:2192 -msgid "parts" -msgstr "" - -#: templates/js/translated/part.js:2276 -msgid "No category" -msgstr "没有分类" - -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 -msgid "Display as list" -msgstr "以列表显示" - -#: templates/js/translated/part.js:2406 -msgid "Display as grid" -msgstr "以网格显示" - -#: templates/js/translated/part.js:2472 +#: templates/js/translated/part.js:2170 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2477 +#: templates/js/translated/part.js:2175 msgid "Set Part Category" msgstr "设置商品类别" -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "设置类别" + +#: templates/js/translated/part.js:2253 +msgid "parts" msgstr "" -#: templates/js/translated/part.js:2495 -msgid "Category is required" -msgstr "" +#: templates/js/translated/part.js:2349 +msgid "No category" +msgstr "没有分类" -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 +msgid "Display as list" +msgstr "以列表显示" + +#: templates/js/translated/part.js:2479 +msgid "Display as grid" +msgstr "以网格显示" + +#: templates/js/translated/part.js:2577 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "以树形图显示" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "编辑测试结果" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "删除测试结果" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "无指定日期" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "指定的日期已过" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "最大数量" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +msgid "This plugin is not active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "Plugin Description" +msgstr "" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "样本" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:178 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:186 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11139,234 +11311,234 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 msgid "Add barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 msgid "Remove barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 msgid "Specify location" msgstr "" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 msgid "Serials" msgstr "" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "订单编码" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 msgid "Scan Item Barcode" msgstr "" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 msgid "Invalid barcode data" msgstr "" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 msgid "All selected Line items will be deleted" msgstr "" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 msgid "Delete selected Line items?" msgstr "" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11395,941 +11567,973 @@ msgstr "" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 msgid "Create Return Order" msgstr "" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 msgid "Are you sure you wish to cancel this Return Order?" msgstr "" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 msgid "Cancel Return Order" msgstr "" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 msgid "Complete Return Order" msgstr "" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 msgid "No return orders found" msgstr "" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 msgid "Issue this Sales Order?" msgstr "" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 msgid "Issue Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "确认库存分配" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "确认删除操作" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "编辑仓储地点" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "新仓储地点" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 msgid "Stock location created" msgstr "" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "确实要删除此仓储地点吗?" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "删除仓储地点" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "库存项重复" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "复制库存项" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "确定要删除此库存项吗?" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "删除库存项" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "编辑库存项" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "新建库存项" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "查找序列号" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "输入序列号" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "输入序列号" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "没有匹配的序列号" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "找到多个匹配结果" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "转移库存" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "添加库存" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:250 msgid "Add" msgstr "添加" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "删除库存" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "选择库存项" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "正在生产" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "未设置仓储地点" -#: templates/js/translated/stock.js:1746 -msgid "stock items" +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" msgstr "" -#: templates/js/translated/stock.js:1850 -msgid "Stock item is in production" -msgstr "库存品正在生产" - -#: templates/js/translated/stock.js:1855 -msgid "Stock item assigned to sales order" +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" msgstr "" -#: templates/js/translated/stock.js:1858 -msgid "Stock item assigned to customer" -msgstr "" - -#: templates/js/translated/stock.js:1861 -msgid "Serialized stock item has been allocated" -msgstr "" - -#: templates/js/translated/stock.js:1863 -msgid "Stock item has been fully allocated" -msgstr "" - -#: templates/js/translated/stock.js:1865 -msgid "Stock item has been partially allocated" -msgstr "" - -#: templates/js/translated/stock.js:1868 -msgid "Stock item has been installed in another item" -msgstr "" - -#: templates/js/translated/stock.js:1870 -msgid "Stock item has been consumed by a build order" -msgstr "" - -#: templates/js/translated/stock.js:1874 -msgid "Stock item has expired" -msgstr "" - -#: templates/js/translated/stock.js:1876 -msgid "Stock item will expire soon" -msgstr "" - -#: templates/js/translated/stock.js:1881 -msgid "Stock item has been rejected" -msgstr "" - -#: templates/js/translated/stock.js:1883 -msgid "Stock item is lost" +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" msgstr "" #: templates/js/translated/stock.js:1885 -msgid "Stock item is destroyed" +msgid "stock items" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 -msgid "Depleted" +#: templates/js/translated/stock.js:1890 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1901 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:1945 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2023 +msgid "Stock item is in production" +msgstr "库存品正在生产" + +#: templates/js/translated/stock.js:2028 +msgid "Stock item assigned to sales order" msgstr "" #: templates/js/translated/stock.js:2031 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2034 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2036 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2038 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2041 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2043 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2047 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2049 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2054 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2056 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2058 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 msgid "Stock Value" msgstr "" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 msgid "stock locations" msgstr "" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "详情" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 msgid "No changes" msgstr "" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 msgid "Build order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 msgid "Sales Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3179 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3183 +msgid "Change Stock Status" +msgstr "" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "可追溯商品" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "正在生产" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "显示正在生产的项目" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "生产状态" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "商品有内部编号" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 msgid "Has Choices" msgstr "" @@ -12361,51 +12565,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12587,50 +12791,6 @@ msgstr "电子邮件设置" msgid "Email settings not configured" msgstr "电子邮件设置未配置" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "确定" @@ -12663,35 +12823,35 @@ msgstr "权限" msgid "Important dates" msgstr "重要日期" -#: users/models.py:230 +#: users/models.py:237 msgid "Permission set" msgstr "权限设置" -#: users/models.py:238 +#: users/models.py:245 msgid "Group" msgstr "群组" -#: users/models.py:241 +#: users/models.py:248 msgid "View" msgstr "视图" -#: users/models.py:241 +#: users/models.py:248 msgid "Permission to view items" msgstr "查看项目权限" -#: users/models.py:243 +#: users/models.py:250 msgid "Permission to add items" msgstr "添加项目权限" -#: users/models.py:245 +#: users/models.py:252 msgid "Change" msgstr "更改" -#: users/models.py:245 +#: users/models.py:252 msgid "Permissions to edit items" msgstr "编辑项目权限" -#: users/models.py:247 +#: users/models.py:254 msgid "Permission to delete items" msgstr "删除项目权限" diff --git a/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po b/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po index 9fd98143b9..28fc627b20 100644 --- a/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po +++ b/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: 2023-06-01 21:56+0000\n" +"POT-Creation-Date: 2023-07-04 21:22+0000\n" "PO-Revision-Date: 2023-02-28 22:38\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -25,23 +25,23 @@ msgstr "未找到 API 端点" msgid "User does not have permission to view this model" msgstr "" -#: InvenTree/conversion.py:62 +#: InvenTree/conversion.py:73 #, fuzzy #| msgid "No value set" msgid "No value provided" msgstr "未设置值" -#: InvenTree/conversion.py:84 +#: InvenTree/conversion.py:95 #, fuzzy #| msgid "Chosen value is not a valid option" msgid "Provided value is not a valid number" msgstr "选择的值不是一个有效的选项" -#: InvenTree/conversion.py:86 +#: InvenTree/conversion.py:97 msgid "Provided value has an invalid unit" msgstr "" -#: InvenTree/conversion.py:88 +#: InvenTree/conversion.py:99 msgid "Provided value could not be converted to the specified unit" msgstr "" @@ -53,26 +53,26 @@ msgstr "在管理面板中可以找到错误详细信息" msgid "Enter date" msgstr "输入日期" -#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:427 -#: build/serializers.py:506 build/templates/build/sidebar.html:23 -#: company/models.py:597 company/templates/company/sidebar.html:35 -#: order/models.py:1086 order/templates/order/po_sidebar.html:11 +#: InvenTree/fields.py:206 InvenTree/models.py:766 build/serializers.py:435 +#: build/serializers.py:514 build/templates/build/sidebar.html:21 +#: company/models.py:746 company/templates/company/sidebar.html:37 +#: order/models.py:1102 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:41 -#: part/models.py:2999 part/templates/part/part_sidebar.html:63 +#: part/models.py:3042 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_base.html:172 -#: stock/admin.py:121 stock/models.py:2159 stock/models.py:2267 -#: stock/serializers.py:342 stock/serializers.py:475 stock/serializers.py:556 -#: stock/serializers.py:839 stock/serializers.py:938 stock/serializers.py:1070 -#: stock/templates/stock/stock_sidebar.html:25 -#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1224 -#: templates/js/translated/company.js:1294 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1054 -#: templates/js/translated/purchase_order.js:2168 -#: templates/js/translated/return_order.js:760 -#: templates/js/translated/sales_order.js:1055 -#: templates/js/translated/sales_order.js:1959 -#: templates/js/translated/stock.js:1460 templates/js/translated/stock.js:2164 +#: stock/admin.py:121 stock/models.py:2160 stock/models.py:2268 +#: stock/serializers.py:408 stock/serializers.py:542 stock/serializers.py:623 +#: stock/serializers.py:681 stock/serializers.py:956 stock/serializers.py:1055 +#: stock/serializers.py:1187 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1244 +#: templates/js/translated/company.js:1715 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1053 +#: templates/js/translated/purchase_order.js:2175 +#: templates/js/translated/return_order.js:769 +#: templates/js/translated/sales_order.js:1064 +#: templates/js/translated/sales_order.js:1968 +#: templates/js/translated/stock.js:1478 templates/js/translated/stock.js:2337 msgid "Notes" msgstr "备注" @@ -85,47 +85,51 @@ msgstr "值 '{name}' 没有以模式格式显示" msgid "Provided value does not match required pattern: " msgstr "提供的值与所需模式不匹配: " -#: InvenTree/forms.py:145 +#: InvenTree/forms.py:147 msgid "Enter password" msgstr "输入密码" -#: InvenTree/forms.py:146 +#: InvenTree/forms.py:148 msgid "Enter new password" msgstr "输入新密码" -#: InvenTree/forms.py:155 +#: InvenTree/forms.py:157 msgid "Confirm password" msgstr "确认密码" -#: InvenTree/forms.py:156 +#: InvenTree/forms.py:158 msgid "Confirm new password" msgstr "确认新密码" -#: InvenTree/forms.py:160 +#: InvenTree/forms.py:162 msgid "Old password" msgstr "旧密码" -#: InvenTree/forms.py:179 +#: InvenTree/forms.py:181 msgid "Email (again)" msgstr "Email (再次)" -#: InvenTree/forms.py:183 +#: InvenTree/forms.py:185 msgid "Email address confirmation" msgstr "Email 地址确认" -#: InvenTree/forms.py:204 +#: InvenTree/forms.py:206 msgid "You must type the same email each time." msgstr "您必须输入相同的 Email 。" -#: InvenTree/forms.py:230 InvenTree/forms.py:236 +#: InvenTree/forms.py:237 InvenTree/forms.py:243 msgid "The provided primary email address is not valid." msgstr "所提供的主要电子邮件地址无效。" -#: InvenTree/forms.py:242 +#: InvenTree/forms.py:249 msgid "The provided email domain is not approved." msgstr "提供的电子邮件域未被核准。" -#: InvenTree/helpers.py:462 order/models.py:439 order/models.py:608 +#: InvenTree/forms.py:345 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:462 order/models.py:455 order/models.py:624 msgid "Invalid quantity provided" msgstr "提供的数量无效" @@ -241,9 +245,9 @@ msgstr "缺少文件" msgid "Missing external link" msgstr "缺少外部链接" -#: InvenTree/models.py:486 stock/models.py:2261 +#: InvenTree/models.py:486 stock/models.py:2262 #: templates/js/translated/attachment.js:119 -#: templates/js/translated/attachment.js:306 +#: templates/js/translated/attachment.js:316 msgid "Attachment" msgstr "附件" @@ -251,29 +255,30 @@ msgstr "附件" msgid "Select file to attach" msgstr "选择附件" -#: InvenTree/models.py:493 common/models.py:2695 company/models.py:132 -#: company/models.py:306 company/models.py:584 order/models.py:233 -#: order/models.py:1090 order/models.py:1450 part/admin.py:39 -#: part/models.py:900 part/templates/part/part_scheduling.html:11 +#: InvenTree/models.py:493 common/models.py:2681 company/models.py:128 +#: company/models.py:381 company/models.py:455 company/models.py:733 +#: order/models.py:240 order/models.py:1106 order/models.py:1466 +#: part/admin.py:39 part/models.py:905 +#: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_base.html:164 -#: stock/admin.py:120 templates/js/translated/company.js:977 -#: templates/js/translated/company.js:1283 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2316 -#: templates/js/translated/purchase_order.js:2008 -#: templates/js/translated/purchase_order.js:2172 -#: templates/js/translated/return_order.js:764 -#: templates/js/translated/sales_order.js:1044 -#: templates/js/translated/sales_order.js:1964 +#: stock/admin.py:120 templates/js/translated/company.js:1350 +#: templates/js/translated/company.js:1704 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2389 +#: templates/js/translated/purchase_order.js:2015 +#: templates/js/translated/purchase_order.js:2179 +#: templates/js/translated/return_order.js:773 +#: templates/js/translated/sales_order.js:1053 +#: templates/js/translated/sales_order.js:1973 msgid "Link" msgstr "链接" -#: InvenTree/models.py:494 build/models.py:291 part/models.py:901 +#: InvenTree/models.py:494 build/models.py:295 part/models.py:906 #: stock/models.py:735 msgid "Link to external URL" msgstr "链接到外部 URL" #: InvenTree/models.py:497 templates/js/translated/attachment.js:120 -#: templates/js/translated/attachment.js:321 +#: templates/js/translated/attachment.js:331 msgid "Comment" msgstr "注释" @@ -281,13 +286,13 @@ msgstr "注释" msgid "File comment" msgstr "文件注释" -#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2154 -#: common/models.py:2155 common/models.py:2368 common/models.py:2369 -#: common/models.py:2625 common/models.py:2626 part/models.py:3007 -#: part/models.py:3095 part/models.py:3174 part/models.py:3194 -#: plugin/models.py:206 plugin/models.py:207 +#: InvenTree/models.py:503 InvenTree/models.py:504 common/models.py:2140 +#: common/models.py:2141 common/models.py:2354 common/models.py:2355 +#: common/models.py:2611 common/models.py:2612 part/models.py:3050 +#: part/models.py:3138 part/models.py:3217 part/models.py:3237 +#: plugin/models.py:218 plugin/models.py:219 #: report/templates/report/inventree_test_report_base.html:105 -#: templates/js/translated/stock.js:2773 +#: templates/js/translated/stock.js:2918 msgid "User" msgstr "用户" @@ -328,54 +333,54 @@ msgstr "" msgid "Invalid choice" msgstr "选择无效" -#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2354 -#: company/models.py:390 label/models.py:103 part/models.py:846 -#: part/models.py:3394 plugin/models.py:41 report/models.py:160 +#: InvenTree/models.py:648 InvenTree/models.py:649 common/models.py:2340 +#: company/models.py:539 label/models.py:111 part/models.py:851 +#: part/models.py:3437 plugin/models.py:42 report/models.py:159 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 -#: templates/InvenTree/settings/plugin.html:59 -#: templates/InvenTree/settings/plugin.html:102 +#: templates/InvenTree/settings/plugin.html:74 #: templates/InvenTree/settings/plugin_settings.html:22 -#: templates/js/translated/company.js:658 -#: templates/js/translated/company.js:706 -#: templates/js/translated/company.js:871 -#: templates/js/translated/company.js:1071 templates/js/translated/part.js:1160 -#: templates/js/translated/part.js:1447 templates/js/translated/part.js:1583 -#: templates/js/translated/part.js:2699 templates/js/translated/stock.js:2464 +#: templates/js/translated/company.js:665 +#: templates/js/translated/company.js:713 +#: templates/js/translated/company.js:940 +#: templates/js/translated/company.js:1196 +#: templates/js/translated/company.js:1444 templates/js/translated/part.js:1159 +#: templates/js/translated/part.js:1446 templates/js/translated/part.js:1582 +#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2609 msgid "Name" msgstr "名称" -#: InvenTree/models.py:655 build/models.py:164 +#: InvenTree/models.py:655 build/models.py:168 #: build/templates/build/detail.html:24 common/models.py:111 -#: company/models.py:312 company/models.py:590 +#: company/models.py:461 company/models.py:739 #: company/templates/company/company_base.html:72 #: company/templates/company/manufacturer_part.html:75 -#: company/templates/company/supplier_part.html:108 label/models.py:110 -#: order/models.py:229 order/models.py:1114 part/admin.py:194 part/admin.py:276 -#: part/models.py:868 part/models.py:3410 part/templates/part/category.html:81 +#: company/templates/company/supplier_part.html:108 label/models.py:118 +#: order/models.py:232 order/models.py:1130 part/admin.py:194 part/admin.py:276 +#: part/models.py:873 part/models.py:3453 part/templates/part/category.html:81 #: part/templates/part/part_base.html:172 -#: part/templates/part/part_scheduling.html:12 report/models.py:173 -#: report/models.py:587 report/models.py:631 +#: part/templates/part/part_scheduling.html:12 report/models.py:172 +#: report/models.py:575 report/models.py:619 #: report/templates/report/inventree_build_order_base.html:117 #: stock/admin.py:41 stock/templates/stock/location.html:123 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:75 -#: templates/js/translated/bom.js:632 templates/js/translated/bom.js:933 -#: templates/js/translated/build.js:2857 templates/js/translated/company.js:510 -#: templates/js/translated/company.js:988 -#: templates/js/translated/company.js:1251 templates/js/translated/order.js:298 -#: templates/js/translated/part.js:1212 templates/js/translated/part.js:1456 -#: templates/js/translated/part.js:1594 templates/js/translated/part.js:1933 -#: templates/js/translated/part.js:2247 templates/js/translated/part.js:2735 -#: templates/js/translated/part.js:2826 -#: templates/js/translated/purchase_order.js:1666 -#: templates/js/translated/purchase_order.js:1812 -#: templates/js/translated/purchase_order.js:1990 -#: templates/js/translated/return_order.js:302 -#: templates/js/translated/sales_order.js:790 -#: templates/js/translated/stock.js:1439 templates/js/translated/stock.js:1817 -#: templates/js/translated/stock.js:2496 templates/js/translated/stock.js:2568 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:951 +#: templates/js/translated/build.js:2058 templates/js/translated/company.js:517 +#: templates/js/translated/company.js:1361 +#: templates/js/translated/company.js:1672 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1211 +#: templates/js/translated/part.js:1455 templates/js/translated/part.js:1593 +#: templates/js/translated/part.js:1928 templates/js/translated/part.js:2320 +#: templates/js/translated/part.js:2717 templates/js/translated/part.js:2805 +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1997 +#: templates/js/translated/return_order.js:311 +#: templates/js/translated/sales_order.js:799 +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1990 +#: templates/js/translated/stock.js:2641 templates/js/translated/stock.js:2713 msgid "Description" msgstr "描述信息" @@ -388,7 +393,7 @@ msgid "parent" msgstr "上级项" #: InvenTree/models.py:671 InvenTree/models.py:672 -#: templates/js/translated/part.js:2744 templates/js/translated/stock.js:2505 +#: templates/js/translated/part.js:2726 templates/js/translated/stock.js:2650 msgid "Path" msgstr "路径" @@ -426,12 +431,12 @@ msgstr "服务器错误" msgid "An error has been logged by the server." msgstr "服务器记录了一个错误。" -#: InvenTree/serializers.py:60 part/models.py:3873 +#: InvenTree/serializers.py:60 part/models.py:3935 msgid "Must be a valid number" msgstr "必须是有效数字" -#: InvenTree/serializers.py:90 company/models.py:154 -#: company/templates/company/company_base.html:107 part/models.py:2846 +#: InvenTree/serializers.py:90 company/models.py:150 +#: company/templates/company/company_base.html:107 part/models.py:2889 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -504,332 +509,335 @@ msgstr "远程图像文件的 URL" msgid "Downloading images from remote URL is not enabled" msgstr "未启用从远程 URL下载图像" -#: InvenTree/settings.py:713 +#: InvenTree/settings.py:741 msgid "Czech" msgstr "捷克语" -#: InvenTree/settings.py:714 +#: InvenTree/settings.py:742 msgid "Danish" msgstr "丹麦语" -#: InvenTree/settings.py:715 +#: InvenTree/settings.py:743 msgid "German" msgstr "德语" -#: InvenTree/settings.py:716 +#: InvenTree/settings.py:744 msgid "Greek" msgstr "希腊语" -#: InvenTree/settings.py:717 +#: InvenTree/settings.py:745 msgid "English" msgstr "英语" -#: InvenTree/settings.py:718 +#: InvenTree/settings.py:746 msgid "Spanish" msgstr "西班牙语" -#: InvenTree/settings.py:719 +#: InvenTree/settings.py:747 msgid "Spanish (Mexican)" msgstr "西班牙语(墨西哥)" -#: InvenTree/settings.py:720 +#: InvenTree/settings.py:748 msgid "Farsi / Persian" msgstr "波斯语" -#: InvenTree/settings.py:721 +#: InvenTree/settings.py:749 #, fuzzy #| msgid "Danish" msgid "Finnish" msgstr "丹麦语" -#: InvenTree/settings.py:722 +#: InvenTree/settings.py:750 msgid "French" msgstr "法语" -#: InvenTree/settings.py:723 +#: InvenTree/settings.py:751 msgid "Hebrew" msgstr "希伯来语" -#: InvenTree/settings.py:724 +#: InvenTree/settings.py:752 msgid "Hungarian" msgstr "匈牙利语" -#: InvenTree/settings.py:725 +#: InvenTree/settings.py:753 msgid "Italian" msgstr "意大利语" -#: InvenTree/settings.py:726 +#: InvenTree/settings.py:754 msgid "Japanese" msgstr "日语" -#: InvenTree/settings.py:727 +#: InvenTree/settings.py:755 msgid "Korean" msgstr "韩语" -#: InvenTree/settings.py:728 +#: InvenTree/settings.py:756 msgid "Dutch" msgstr "荷兰语" -#: InvenTree/settings.py:729 +#: InvenTree/settings.py:757 msgid "Norwegian" msgstr "挪威语" -#: InvenTree/settings.py:730 +#: InvenTree/settings.py:758 msgid "Polish" msgstr "波兰语" -#: InvenTree/settings.py:731 +#: InvenTree/settings.py:759 msgid "Portuguese" msgstr "葡萄牙语" -#: InvenTree/settings.py:732 +#: InvenTree/settings.py:760 msgid "Portuguese (Brazilian)" msgstr "葡萄牙语 (巴西)" -#: InvenTree/settings.py:733 +#: InvenTree/settings.py:761 msgid "Russian" msgstr "俄语" -#: InvenTree/settings.py:734 +#: InvenTree/settings.py:762 msgid "Slovenian" msgstr "斯洛文尼亚" -#: InvenTree/settings.py:735 +#: InvenTree/settings.py:763 msgid "Swedish" msgstr "瑞典语" -#: InvenTree/settings.py:736 +#: InvenTree/settings.py:764 msgid "Thai" msgstr "泰语" -#: InvenTree/settings.py:737 +#: InvenTree/settings.py:765 msgid "Turkish" msgstr "土耳其语" -#: InvenTree/settings.py:738 +#: InvenTree/settings.py:766 msgid "Vietnamese" msgstr "越南语" -#: InvenTree/settings.py:739 +#: InvenTree/settings.py:767 msgid "Chinese" msgstr "中文(简体)" -#: InvenTree/status.py:61 part/serializers.py:878 +#: InvenTree/status.py:68 part/serializers.py:956 msgid "Background worker check failed" msgstr "后台工作人员检查失败" -#: InvenTree/status.py:65 +#: InvenTree/status.py:72 msgid "Email backend not configured" msgstr "未配置电子邮件后端" -#: InvenTree/status.py:68 +#: InvenTree/status.py:75 msgid "InvenTree system health checks failed" msgstr "InventTree系统健康检查失败" -#: InvenTree/status_codes.py:139 InvenTree/status_codes.py:181 -#: InvenTree/status_codes.py:360 InvenTree/status_codes.py:397 -#: InvenTree/status_codes.py:432 templates/js/translated/table_filters.js:500 +#: InvenTree/status_codes.py:12 InvenTree/status_codes.py:40 +#: InvenTree/status_codes.py:148 InvenTree/status_codes.py:167 +#: InvenTree/status_codes.py:188 generic/states/tests.py:16 +#: templates/js/translated/table_filters.js:533 msgid "Pending" msgstr "待定" -#: InvenTree/status_codes.py:140 +#: InvenTree/status_codes.py:13 generic/states/tests.py:17 msgid "Placed" msgstr "已添加" -#: InvenTree/status_codes.py:141 InvenTree/status_codes.py:363 -#: InvenTree/status_codes.py:399 order/templates/order/order_base.html:162 +#: InvenTree/status_codes.py:14 InvenTree/status_codes.py:151 +#: InvenTree/status_codes.py:172 generic/states/tests.py:18 +#: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:162 msgid "Complete" msgstr "完成" -#: InvenTree/status_codes.py:142 InvenTree/status_codes.py:184 -#: InvenTree/status_codes.py:362 InvenTree/status_codes.py:400 +#: InvenTree/status_codes.py:15 InvenTree/status_codes.py:43 +#: InvenTree/status_codes.py:150 InvenTree/status_codes.py:173 msgid "Cancelled" msgstr "已取消" -#: InvenTree/status_codes.py:143 InvenTree/status_codes.py:185 -#: InvenTree/status_codes.py:227 +#: InvenTree/status_codes.py:16 InvenTree/status_codes.py:44 +#: InvenTree/status_codes.py:71 msgid "Lost" msgstr "丢失" -#: InvenTree/status_codes.py:144 InvenTree/status_codes.py:186 +#: InvenTree/status_codes.py:17 InvenTree/status_codes.py:45 +#: InvenTree/status_codes.py:73 msgid "Returned" msgstr "已退回" -#: InvenTree/status_codes.py:182 InvenTree/status_codes.py:398 +#: InvenTree/status_codes.py:41 InvenTree/status_codes.py:170 msgid "In Progress" msgstr "" -#: InvenTree/status_codes.py:183 order/models.py:1329 -#: templates/js/translated/sales_order.js:1509 -#: templates/js/translated/sales_order.js:1630 -#: templates/js/translated/sales_order.js:1934 +#: InvenTree/status_codes.py:42 order/models.py:1345 +#: templates/js/translated/sales_order.js:1518 +#: templates/js/translated/sales_order.js:1639 +#: templates/js/translated/sales_order.js:1943 msgid "Shipped" msgstr "已发货" -#: InvenTree/status_codes.py:223 +#: InvenTree/status_codes.py:66 msgid "OK" msgstr "OK" -#: InvenTree/status_codes.py:224 +#: InvenTree/status_codes.py:67 msgid "Attention needed" msgstr "需要关注" -#: InvenTree/status_codes.py:225 +#: InvenTree/status_codes.py:68 msgid "Damaged" msgstr "破损" -#: InvenTree/status_codes.py:226 +#: InvenTree/status_codes.py:69 msgid "Destroyed" msgstr "已销毁" -#: InvenTree/status_codes.py:228 +#: InvenTree/status_codes.py:70 msgid "Rejected" msgstr "已拒绝" -#: InvenTree/status_codes.py:229 +#: InvenTree/status_codes.py:72 msgid "Quarantined" msgstr "隔离" -#: InvenTree/status_codes.py:308 +#: InvenTree/status_codes.py:91 msgid "Legacy stock tracking entry" msgstr "旧库存跟踪条目" -#: InvenTree/status_codes.py:310 templates/js/translated/stock.js:511 +#: InvenTree/status_codes.py:93 templates/js/translated/stock.js:510 msgid "Stock item created" msgstr "库存项已创建" -#: InvenTree/status_codes.py:312 +#: InvenTree/status_codes.py:96 msgid "Edited stock item" msgstr "已编辑库存项" -#: InvenTree/status_codes.py:313 +#: InvenTree/status_codes.py:97 msgid "Assigned serial number" msgstr "已分配序列号" -#: InvenTree/status_codes.py:315 +#: InvenTree/status_codes.py:100 msgid "Stock counted" msgstr "库存计数" -#: InvenTree/status_codes.py:316 +#: InvenTree/status_codes.py:101 msgid "Stock manually added" msgstr "已手动添加库存" -#: InvenTree/status_codes.py:317 +#: InvenTree/status_codes.py:102 msgid "Stock manually removed" msgstr "库存手动删除" -#: InvenTree/status_codes.py:319 +#: InvenTree/status_codes.py:105 msgid "Location changed" msgstr "仓储地点已更改" -#: InvenTree/status_codes.py:320 +#: InvenTree/status_codes.py:106 #, fuzzy #| msgid "Stock counted" msgid "Stock updated" msgstr "库存计数" -#: InvenTree/status_codes.py:322 +#: InvenTree/status_codes.py:109 msgid "Installed into assembly" msgstr "安装到组装中" -#: InvenTree/status_codes.py:323 +#: InvenTree/status_codes.py:110 msgid "Removed from assembly" msgstr "已从组装中删除" -#: InvenTree/status_codes.py:325 +#: InvenTree/status_codes.py:112 msgid "Installed component item" msgstr "已安装组件项" -#: InvenTree/status_codes.py:326 +#: InvenTree/status_codes.py:113 msgid "Removed component item" msgstr "已删除组件项" -#: InvenTree/status_codes.py:328 +#: InvenTree/status_codes.py:116 msgid "Split from parent item" msgstr "从父项拆分" -#: InvenTree/status_codes.py:329 +#: InvenTree/status_codes.py:117 msgid "Split child item" msgstr "拆分子项" -#: InvenTree/status_codes.py:331 templates/js/translated/stock.js:2243 +#: InvenTree/status_codes.py:120 templates/js/translated/stock.js:1788 msgid "Merged stock items" msgstr "合并的库存项目" -#: InvenTree/status_codes.py:333 +#: InvenTree/status_codes.py:123 msgid "Converted to variant" msgstr "转换为变量" -#: InvenTree/status_codes.py:335 templates/js/translated/table_filters.js:321 -msgid "Sent to customer" -msgstr "发送给客户" - -#: InvenTree/status_codes.py:336 -msgid "Returned from customer" -msgstr "从客户退货" - -#: InvenTree/status_codes.py:338 +#: InvenTree/status_codes.py:126 msgid "Build order output created" msgstr "已创建生产订单输出" -#: InvenTree/status_codes.py:339 +#: InvenTree/status_codes.py:127 msgid "Build order output completed" msgstr "生产订单输出已完成" -#: InvenTree/status_codes.py:340 +#: InvenTree/status_codes.py:128 #, fuzzy #| msgid "Build order output created" msgid "Build order output rejected" msgstr "已创建生产订单输出" -#: InvenTree/status_codes.py:341 templates/js/translated/stock.js:1676 +#: InvenTree/status_codes.py:129 templates/js/translated/stock.js:1694 msgid "Consumed by build order" msgstr "被生产订单消耗" -#: InvenTree/status_codes.py:343 +#: InvenTree/status_codes.py:132 #, fuzzy #| msgid "Received against purchase order" msgid "Shipped against Sales Order" msgstr "收到定购单" -#: InvenTree/status_codes.py:345 +#: InvenTree/status_codes.py:135 #, fuzzy #| msgid "Received against purchase order" msgid "Received against Purchase Order" msgstr "收到定购单" -#: InvenTree/status_codes.py:347 +#: InvenTree/status_codes.py:138 #, fuzzy #| msgid "Received against purchase order" msgid "Returned against Return Order" msgstr "收到定购单" -#: InvenTree/status_codes.py:361 +#: InvenTree/status_codes.py:141 templates/js/translated/table_filters.js:327 +msgid "Sent to customer" +msgstr "发送给客户" + +#: InvenTree/status_codes.py:142 +msgid "Returned from customer" +msgstr "从客户退货" + +#: InvenTree/status_codes.py:149 msgid "Production" msgstr "生产中" -#: InvenTree/status_codes.py:433 +#: InvenTree/status_codes.py:191 #, fuzzy #| msgid "Returned" msgid "Return" msgstr "已退回" -#: InvenTree/status_codes.py:434 +#: InvenTree/status_codes.py:194 msgid "Repair" msgstr "" -#: InvenTree/status_codes.py:435 -msgid "Refund" -msgstr "" - -#: InvenTree/status_codes.py:436 +#: InvenTree/status_codes.py:197 #, fuzzy #| msgid "Placed" msgid "Replace" msgstr "已添加" -#: InvenTree/status_codes.py:437 +#: InvenTree/status_codes.py:200 +msgid "Refund" +msgstr "" + +#: InvenTree/status_codes.py:203 #, fuzzy #| msgid "Rejected" msgid "Reject" @@ -857,101 +865,129 @@ msgstr "备损不能超过 100%" msgid "Invalid value for overage" msgstr "无效的备损值" -#: InvenTree/views.py:409 templates/InvenTree/settings/user.html:23 +#: InvenTree/views.py:408 templates/InvenTree/settings/user.html:23 msgid "Edit User Information" msgstr "编辑用户信息" -#: InvenTree/views.py:421 templates/InvenTree/settings/user.html:20 +#: InvenTree/views.py:420 templates/InvenTree/settings/user.html:20 msgid "Set Password" msgstr "设置密码" -#: InvenTree/views.py:443 +#: InvenTree/views.py:442 msgid "Password fields must match" msgstr "密码字段必须相匹配。" -#: InvenTree/views.py:452 +#: InvenTree/views.py:451 msgid "Wrong password provided" msgstr "密码错误" -#: InvenTree/views.py:651 templates/navbar.html:157 +#: InvenTree/views.py:652 templates/navbar.html:157 msgid "System Information" msgstr "系统信息" -#: InvenTree/views.py:658 templates/navbar.html:168 +#: InvenTree/views.py:659 templates/navbar.html:168 msgid "About InvenTree" msgstr "关于 InventTree" -#: build/api.py:221 +#: build/api.py:242 msgid "Build must be cancelled before it can be deleted" msgstr "在删除前必须取消生产" -#: build/models.py:69 build/templates/build/build_base.html:9 +#: build/api.py:286 part/models.py:3827 templates/js/translated/bom.js:985 +#: templates/js/translated/bom.js:1025 templates/js/translated/build.js:2442 +#: templates/js/translated/table_filters.js:166 +#: templates/js/translated/table_filters.js:518 +msgid "Consumable" +msgstr "" + +#: build/api.py:287 part/models.py:3821 part/templates/part/upload_bom.html:58 +#: templates/js/translated/bom.js:989 templates/js/translated/bom.js:1016 +#: templates/js/translated/build.js:2451 +#: templates/js/translated/table_filters.js:162 +#: templates/js/translated/table_filters.js:191 +#: templates/js/translated/table_filters.js:522 +msgid "Optional" +msgstr "可选项" + +#: build/api.py:288 templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:514 +msgid "Tracked" +msgstr "" + +#: build/api.py:290 part/admin.py:64 templates/js/translated/build.js:1666 +#: templates/js/translated/build.js:2542 +#: templates/js/translated/sales_order.js:1915 +#: templates/js/translated/table_filters.js:506 +msgid "Allocated" +msgstr "" + +#: build/models.py:73 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_base.html:105 #: templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 -#: templates/js/translated/build.js:945 templates/js/translated/stock.js:2629 +#: templates/js/translated/build.js:953 templates/js/translated/stock.js:2774 msgid "Build Order" msgstr "生产订单" -#: build/models.py:70 build/templates/build/build_base.html:13 +#: build/models.py:74 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:119 +#: 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:244 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 #: templates/InvenTree/search.html:141 #: templates/InvenTree/settings/sidebar.html:53 -#: templates/js/translated/search.js:228 users/models.py:42 +#: templates/js/translated/search.js:186 users/models.py:42 msgid "Build Orders" msgstr "生产订单" -#: build/models.py:111 +#: build/models.py:115 msgid "Invalid choice for parent build" msgstr "上级生产选项无效" -#: build/models.py:155 +#: build/models.py:159 msgid "Build Order Reference" msgstr "相关生产订单" -#: build/models.py:156 order/models.py:356 order/models.py:762 -#: order/models.py:1084 order/models.py:1721 part/admin.py:278 -#: part/models.py:3774 part/templates/part/upload_bom.html:54 +#: build/models.py:160 order/models.py:372 order/models.py:778 +#: order/models.py:1100 order/models.py:1737 part/admin.py:278 +#: part/models.py:3836 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_po_report_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:26 #: report/templates/report/inventree_so_report_base.html:28 -#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:943 -#: templates/js/translated/build.js:2098 templates/js/translated/order.js:291 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:961 +#: templates/js/translated/build.js:2434 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 -#: templates/js/translated/purchase_order.js:2033 -#: templates/js/translated/return_order.js:713 -#: templates/js/translated/sales_order.js:1798 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:1807 msgid "Reference" msgstr "引用" -#: build/models.py:167 +#: build/models.py:171 #, fuzzy #| msgid "Brief description of the build" msgid "Brief description of the build (optional)" msgstr "生产的简短描述." -#: build/models.py:175 build/templates/build/build_base.html:183 +#: build/models.py:179 build/templates/build/build_base.html:184 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "上级生产" -#: build/models.py:176 +#: build/models.py:180 msgid "BuildOrder to which this build is allocated" msgstr "此次生产匹配的订单" -#: build/models.py:181 build/templates/build/build_base.html:98 -#: build/templates/build/detail.html:29 company/models.py:775 -#: order/models.py:1192 order/models.py:1308 order/models.py:1309 -#: part/models.py:390 part/models.py:2859 part/models.py:2973 -#: part/models.py:3113 part/models.py:3132 part/models.py:3151 -#: part/models.py:3172 part/models.py:3264 part/models.py:3531 -#: part/models.py:3639 part/models.py:3739 part/models.py:4053 -#: part/serializers.py:842 part/serializers.py:1245 +#: build/models.py:185 build/templates/build/build_base.html:98 +#: build/templates/build/detail.html:29 company/models.py:924 +#: order/models.py:1208 order/models.py:1324 order/models.py:1325 +#: part/models.py:392 part/models.py:2902 part/models.py:3016 +#: part/models.py:3156 part/models.py:3175 part/models.py:3194 +#: part/models.py:3215 part/models.py:3307 part/models.py:3583 +#: part/models.py:3706 part/models.py:3801 part/models.py:4115 +#: part/serializers.py:920 part/serializers.py:1328 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -961,268 +997,237 @@ msgstr "此次生产匹配的订单" #: report/templates/report/inventree_po_report_base.html:27 #: report/templates/report/inventree_return_order_report_base.html:24 #: report/templates/report/inventree_so_report_base.html:27 -#: stock/serializers.py:156 stock/serializers.py:509 +#: stock/serializers.py:205 stock/serializers.py:576 #: 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:529 templates/js/translated/bom.js:631 -#: templates/js/translated/bom.js:768 templates/js/translated/bom.js:887 -#: templates/js/translated/build.js:1403 templates/js/translated/build.js:1965 -#: templates/js/translated/build.js:2464 templates/js/translated/build.js:2868 -#: templates/js/translated/company.js:337 -#: templates/js/translated/company.js:822 -#: templates/js/translated/company.js:929 -#: templates/js/translated/company.js:1169 templates/js/translated/part.js:1918 -#: templates/js/translated/part.js:1990 templates/js/translated/part.js:2216 -#: templates/js/translated/pricing.js:369 -#: templates/js/translated/purchase_order.js:746 -#: templates/js/translated/purchase_order.js:1274 -#: templates/js/translated/purchase_order.js:1811 -#: templates/js/translated/purchase_order.js:1975 -#: templates/js/translated/return_order.js:527 -#: templates/js/translated/return_order.js:694 -#: templates/js/translated/sales_order.js:285 -#: templates/js/translated/sales_order.js:1185 -#: templates/js/translated/sales_order.js:1584 -#: templates/js/translated/sales_order.js:1782 -#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 -#: templates/js/translated/stock.js:1021 templates/js/translated/stock.js:1773 -#: templates/js/translated/stock.js:2594 templates/js/translated/stock.js:2831 -#: templates/js/translated/stock.js:2968 +#: templates/js/translated/barcode.js:529 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1285 templates/js/translated/build.js:1665 +#: templates/js/translated/build.js:2081 templates/js/translated/build.js:2254 +#: templates/js/translated/company.js:347 +#: templates/js/translated/company.js:1147 +#: templates/js/translated/company.js:1302 +#: templates/js/translated/company.js:1590 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1913 templates/js/translated/part.js:1985 +#: templates/js/translated/part.js:2289 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:757 +#: templates/js/translated/purchase_order.js:1289 +#: templates/js/translated/purchase_order.js:1823 +#: templates/js/translated/purchase_order.js:1982 +#: templates/js/translated/return_order.js:536 +#: templates/js/translated/return_order.js:703 +#: templates/js/translated/sales_order.js:297 +#: templates/js/translated/sales_order.js:1194 +#: templates/js/translated/sales_order.js:1593 +#: templates/js/translated/sales_order.js:1791 +#: templates/js/translated/stock.js:642 templates/js/translated/stock.js:808 +#: templates/js/translated/stock.js:1020 templates/js/translated/stock.js:1929 +#: templates/js/translated/stock.js:2739 templates/js/translated/stock.js:2972 +#: templates/js/translated/stock.js:3109 msgid "Part" msgstr "商品" -#: build/models.py:189 +#: build/models.py:193 msgid "Select part to build" msgstr "选择要生产的商品" -#: build/models.py:194 +#: build/models.py:198 msgid "Sales Order Reference" msgstr "相关销售订单" -#: build/models.py:198 +#: build/models.py:202 msgid "SalesOrder to which this build is allocated" msgstr "此次生产匹配的销售订单" -#: build/models.py:203 build/serializers.py:942 -#: templates/js/translated/build.js:2452 -#: templates/js/translated/sales_order.js:1173 +#: build/models.py:207 build/serializers.py:946 +#: templates/js/translated/build.js:1653 +#: templates/js/translated/sales_order.js:1182 msgid "Source Location" msgstr "来源地点" -#: build/models.py:207 +#: build/models.py:211 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "此次生产从哪个仓储位置获取库存(留空即可从任何仓储位置取出)" -#: build/models.py:212 +#: build/models.py:216 msgid "Destination Location" msgstr "目标地点" -#: build/models.py:216 +#: build/models.py:220 msgid "Select location where the completed items will be stored" msgstr "选择已完成项目仓储地点" -#: build/models.py:220 +#: build/models.py:224 msgid "Build Quantity" msgstr "生产数量" -#: build/models.py:223 +#: build/models.py:227 msgid "Number of stock items to build" msgstr "要生产的项目数量" -#: build/models.py:227 +#: build/models.py:231 msgid "Completed items" msgstr "已完成项目" -#: build/models.py:229 +#: build/models.py:233 msgid "Number of stock items which have been completed" msgstr "已完成的库存项目数量" -#: build/models.py:233 +#: build/models.py:237 msgid "Build Status" msgstr "生产状态" -#: build/models.py:237 +#: build/models.py:241 msgid "Build status code" msgstr "生产状态代码" -#: build/models.py:246 build/serializers.py:269 order/serializers.py:505 -#: stock/models.py:739 templates/js/translated/purchase_order.js:1099 +#: build/models.py:250 build/serializers.py:277 order/serializers.py:512 +#: stock/models.py:739 templates/js/translated/purchase_order.js:1114 msgid "Batch Code" msgstr "批量代码" -#: build/models.py:250 build/serializers.py:270 +#: build/models.py:254 build/serializers.py:278 msgid "Batch code for this build output" msgstr "此生产产出的批量代码" -#: build/models.py:253 order/models.py:241 part/models.py:1037 +#: build/models.py:257 order/models.py:248 part/models.py:1042 #: part/templates/part/part_base.html:312 -#: templates/js/translated/return_order.js:327 -#: templates/js/translated/sales_order.js:815 +#: templates/js/translated/return_order.js:336 +#: templates/js/translated/sales_order.js:824 msgid "Creation Date" msgstr "创建日期" -#: build/models.py:257 +#: build/models.py:261 msgid "Target completion date" msgstr "预计完成日期" -#: build/models.py:258 +#: build/models.py:262 msgid "Target date for build completion. Build will be overdue after this date." msgstr "生产完成的目标日期。生产将在此日期之后逾期。" -#: build/models.py:261 order/models.py:406 order/models.py:1764 -#: templates/js/translated/build.js:2953 +#: build/models.py:265 order/models.py:422 order/models.py:1780 +#: templates/js/translated/build.js:2166 msgid "Completion Date" msgstr "完成日期:" -#: build/models.py:267 +#: build/models.py:271 msgid "completed by" msgstr "完成人" -#: build/models.py:275 templates/js/translated/build.js:2913 +#: build/models.py:279 templates/js/translated/build.js:2126 msgid "Issued by" msgstr "发布者" -#: build/models.py:276 +#: build/models.py:280 msgid "User who issued this build order" msgstr "发布此生产订单的用户" -#: build/models.py:284 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 order/models.py:255 -#: order/templates/order/order_base.html:214 -#: order/templates/order/return_order_base.html:182 -#: order/templates/order/sales_order_base.html:222 part/models.py:1041 +#: build/models.py:288 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:122 order/models.py:262 +#: order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:189 +#: order/templates/order/sales_order_base.html:229 part/models.py:1046 #: part/templates/part/part_base.html:392 #: report/templates/report/inventree_build_order_base.html:158 -#: templates/js/translated/build.js:2925 -#: templates/js/translated/purchase_order.js:1723 -#: templates/js/translated/return_order.js:347 -#: templates/js/translated/table_filters.js:450 +#: templates/js/translated/build.js:2138 +#: templates/js/translated/purchase_order.js:1738 +#: templates/js/translated/return_order.js:356 +#: templates/js/translated/table_filters.js:467 msgid "Responsible" msgstr "责任人" -#: build/models.py:285 +#: build/models.py:289 msgid "User or group responsible for this build order" msgstr "构建此订单的用户或组" -#: build/models.py:290 build/templates/build/detail.html:108 +#: build/models.py:294 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:195 -#: order/templates/order/order_base.html:171 +#: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:146 #: order/templates/order/sales_order_base.html:181 #: part/templates/part/part_base.html:385 stock/models.py:733 #: stock/templates/stock/item_base.html:201 +#: templates/js/translated/company.js:1050 msgid "External Link" msgstr "外部链接" -#: build/models.py:295 +#: build/models.py:299 msgid "Build Priority" msgstr "创建优先级" -#: build/models.py:298 +#: build/models.py:302 msgid "Priority of this build order" msgstr "此构建订单的优先级" -#: build/models.py:536 +#: build/models.py:309 common/models.py:104 order/admin.py:17 +#: order/models.py:237 templates/InvenTree/settings/settings_staff_js.html:70 +#: templates/js/translated/build.js:2063 +#: templates/js/translated/purchase_order.js:1685 +#: templates/js/translated/return_order.js:315 +#: templates/js/translated/sales_order.js:803 +#: templates/js/translated/table_filters.js:24 +#: templates/project_code_data.html:6 +#, fuzzy +#| msgid "Part QR Code" +msgid "Project Code" +msgstr "商品二维码" + +#: build/models.py:310 +#, fuzzy +#| msgid "Priority of this build order" +msgid "Project code for this build order" +msgstr "此构建订单的优先级" + +#: build/models.py:550 #, python-brace-format msgid "Build order {build} has been completed" msgstr "生产订单 {build} 已完成" -#: build/models.py:542 +#: build/models.py:556 msgid "A build order has been completed" msgstr "生产订单已完成" -#: build/models.py:744 build/models.py:811 +#: build/models.py:758 build/models.py:836 msgid "No build output specified" msgstr "未指定生产产出" -#: build/models.py:747 +#: build/models.py:761 msgid "Build output is already completed" msgstr "生产产出已完成" -#: build/models.py:750 +#: build/models.py:764 msgid "Build output does not match Build Order" msgstr "生产产出与订单不匹配" -#: build/models.py:815 build/serializers.py:212 build/serializers.py:251 -#: build/serializers.py:811 order/models.py:437 order/serializers.py:378 -#: order/serializers.py:500 part/serializers.py:1087 part/serializers.py:1408 -#: stock/models.py:593 stock/models.py:1386 stock/serializers.py:315 +#: build/models.py:840 build/serializers.py:220 build/serializers.py:259 +#: build/serializers.py:819 order/models.py:453 order/serializers.py:385 +#: order/serializers.py:507 part/serializers.py:1170 part/serializers.py:1491 +#: stock/models.py:593 stock/models.py:1387 stock/serializers.py:381 msgid "Quantity must be greater than zero" msgstr "数量必须大于0" -#: build/models.py:820 build/serializers.py:217 +#: build/models.py:845 build/serializers.py:225 #, fuzzy #| msgid "Quantity must be greater than zero" msgid "Quantity cannot be greater than the output quantity" msgstr "数量必须大于0" -#: build/models.py:1272 -msgid "Build item must specify a build output, as master part is marked as trackable" -msgstr "生产项必须指定生产产出,因为主部件已经被标记为可追踪的" +#: build/models.py:1265 +#, fuzzy +#| msgid "Build Notes" +msgid "Build object" +msgstr "生产备注" -#: build/models.py:1281 -#, python-brace-format -msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "分配数量 ({q}) 不得超过可用库存数量 ({a})" - -#: build/models.py:1291 order/models.py:1598 -msgid "Stock item is over-allocated" -msgstr "库存物品分配过度!" - -#: build/models.py:1297 order/models.py:1601 -msgid "Allocation quantity must be greater than zero" -msgstr "分配数量必须大于0" - -#: build/models.py:1303 -msgid "Quantity must be 1 for serialized stock" -msgstr "序列化库存的数量必须是 1" - -#: build/models.py:1360 -msgid "Selected stock item not found in BOM" -msgstr "在BOM中找不到选定的库存项" - -#: build/models.py:1438 stock/templates/stock/item_base.html:170 -#: templates/InvenTree/search.html:139 templates/js/translated/build.js:2841 -#: templates/navbar.html:38 -msgid "Build" -msgstr "生产" - -#: build/models.py:1439 -msgid "Build to allocate parts" -msgstr "生产以分配部件" - -#: build/models.py:1455 build/serializers.py:791 order/serializers.py:1058 -#: order/serializers.py:1079 stock/serializers.py:413 stock/serializers.py:770 -#: stock/serializers.py:896 stock/templates/stock/item_base.html:10 -#: stock/templates/stock/item_base.html:23 -#: stock/templates/stock/item_base.html:195 -#: templates/js/translated/build.js:955 templates/js/translated/build.js:960 -#: templates/js/translated/build.js:2466 templates/js/translated/build.js:3038 -#: templates/js/translated/sales_order.js:286 -#: templates/js/translated/sales_order.js:1186 -#: templates/js/translated/sales_order.js:1485 -#: templates/js/translated/sales_order.js:1490 -#: templates/js/translated/sales_order.js:1591 -#: templates/js/translated/sales_order.js:1678 -#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 -#: templates/js/translated/stock.js:2714 -msgid "Stock Item" -msgstr "库存项" - -#: build/models.py:1456 -msgid "Source stock item" -msgstr "源库存项" - -#: build/models.py:1468 build/serializers.py:198 build/serializers.py:236 -#: build/templates/build/build_base.html:103 -#: build/templates/build/detail.html:34 common/models.py:2176 -#: order/models.py:1070 order/models.py:1642 order/serializers.py:1232 +#: build/models.py:1279 build/models.py:1539 build/serializers.py:206 +#: build/serializers.py:244 build/templates/build/build_base.html:103 +#: build/templates/build/detail.html:34 common/models.py:2162 +#: order/models.py:1086 order/models.py:1658 order/serializers.py:1239 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:277 -#: part/forms.py:47 part/models.py:2986 part/models.py:3755 +#: part/forms.py:47 part/models.py:3029 part/models.py:3817 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1231,321 +1236,381 @@ msgstr "源库存项" #: report/templates/report/inventree_so_report_base.html:29 #: report/templates/report/inventree_test_report_base.html:90 #: report/templates/report/inventree_test_report_base.html:170 -#: stock/admin.py:103 stock/serializers.py:306 +#: stock/admin.py:103 stock/serializers.py:372 #: stock/templates/stock/item_base.html:288 #: stock/templates/stock/item_base.html:296 #: stock/templates/stock/item_base.html:343 #: templates/email/build_order_completed.html:18 -#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:770 -#: templates/js/translated/bom.js:951 templates/js/translated/build.js:504 -#: templates/js/translated/build.js:716 templates/js/translated/build.js:982 -#: templates/js/translated/build.js:1425 templates/js/translated/build.js:1991 -#: templates/js/translated/build.js:2467 -#: templates/js/translated/company.js:1428 -#: templates/js/translated/model_renderers.js:207 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:935 -#: templates/js/translated/part.js:1784 templates/js/translated/part.js:3263 +#: templates/js/translated/barcode.js:531 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:969 templates/js/translated/build.js:510 +#: templates/js/translated/build.js:722 templates/js/translated/build.js:1304 +#: templates/js/translated/build.js:1668 templates/js/translated/build.js:2276 +#: templates/js/translated/company.js:1849 +#: templates/js/translated/model_renderers.js:221 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:934 +#: templates/js/translated/part.js:1783 templates/js/translated/part.js:3242 #: 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:749 -#: templates/js/translated/purchase_order.js:1815 -#: templates/js/translated/purchase_order.js:2039 -#: templates/js/translated/sales_order.js:302 -#: templates/js/translated/sales_order.js:1187 -#: templates/js/translated/sales_order.js:1504 -#: templates/js/translated/sales_order.js:1594 -#: templates/js/translated/sales_order.js:1684 -#: templates/js/translated/sales_order.js:1804 -#: templates/js/translated/stock.js:531 templates/js/translated/stock.js:669 -#: templates/js/translated/stock.js:840 templates/js/translated/stock.js:2758 -#: templates/js/translated/stock.js:2843 +#: templates/js/translated/purchase_order.js:760 +#: templates/js/translated/purchase_order.js:1827 +#: templates/js/translated/purchase_order.js:2046 +#: templates/js/translated/sales_order.js:314 +#: templates/js/translated/sales_order.js:1196 +#: templates/js/translated/sales_order.js:1513 +#: templates/js/translated/sales_order.js:1603 +#: templates/js/translated/sales_order.js:1693 +#: templates/js/translated/sales_order.js:1813 +#: templates/js/translated/stock.js:530 templates/js/translated/stock.js:668 +#: templates/js/translated/stock.js:839 templates/js/translated/stock.js:2903 +#: templates/js/translated/stock.js:2984 msgid "Quantity" msgstr "数量" -#: build/models.py:1469 +#: build/models.py:1280 +#, fuzzy +#| msgid "Stock required for build order" +msgid "Required quantity for build order" +msgstr "生产订单所需的库存" + +#: build/models.py:1362 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "生产项必须指定生产产出,因为主部件已经被标记为可追踪的" + +#: build/models.py:1371 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "分配数量 ({q}) 不得超过可用库存数量 ({a})" + +#: build/models.py:1381 order/models.py:1614 +msgid "Stock item is over-allocated" +msgstr "库存物品分配过度!" + +#: build/models.py:1387 order/models.py:1617 +msgid "Allocation quantity must be greater than zero" +msgstr "分配数量必须大于0" + +#: build/models.py:1393 +msgid "Quantity must be 1 for serialized stock" +msgstr "序列化库存的数量必须是 1" + +#: build/models.py:1454 +#, fuzzy +#| msgid "Selected stock item not found in BOM" +msgid "Selected stock item does not match BOM line" +msgstr "在BOM中找不到选定的库存项" + +#: build/models.py:1526 build/serializers.py:799 order/serializers.py:1065 +#: order/serializers.py:1086 stock/serializers.py:479 stock/serializers.py:887 +#: stock/serializers.py:1013 stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:195 +#: templates/js/translated/build.js:1667 +#: templates/js/translated/sales_order.js:298 +#: templates/js/translated/sales_order.js:1195 +#: templates/js/translated/sales_order.js:1494 +#: templates/js/translated/sales_order.js:1499 +#: templates/js/translated/sales_order.js:1600 +#: templates/js/translated/sales_order.js:1687 +#: templates/js/translated/stock.js:643 templates/js/translated/stock.js:809 +#: templates/js/translated/stock.js:2859 +msgid "Stock Item" +msgstr "库存项" + +#: build/models.py:1527 +msgid "Source stock item" +msgstr "源库存项" + +#: build/models.py:1540 msgid "Stock quantity to allocate to build" msgstr "分配到生产的数量" -#: build/models.py:1477 +#: build/models.py:1548 msgid "Install into" msgstr "安装到" -#: build/models.py:1478 +#: build/models.py:1549 msgid "Destination stock item" msgstr "目标库存项" -#: build/serializers.py:148 build/serializers.py:820 -#: templates/js/translated/build.js:1413 +#: build/serializers.py:156 build/serializers.py:828 +#: templates/js/translated/build.js:1295 msgid "Build Output" msgstr "生产产出" -#: build/serializers.py:160 +#: build/serializers.py:168 msgid "Build output does not match the parent build" msgstr "生产产出与对应生产不匹配" -#: build/serializers.py:164 +#: build/serializers.py:172 msgid "Output part does not match BuildOrder part" msgstr "产出部件与生产订单部件不匹配" -#: build/serializers.py:168 +#: build/serializers.py:176 msgid "This build output has already been completed" msgstr "此生产产出已经完成" -#: build/serializers.py:179 +#: build/serializers.py:187 msgid "This build output is not fully allocated" msgstr "生产产出未被完成分配" -#: build/serializers.py:199 build/serializers.py:237 +#: build/serializers.py:207 build/serializers.py:245 msgid "Enter quantity for build output" msgstr "输入生产产出数量" -#: build/serializers.py:258 +#: build/serializers.py:266 msgid "Integer quantity required for trackable parts" msgstr "对于可追踪的部件,需要整数型数值" -#: build/serializers.py:261 +#: build/serializers.py:269 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "需要整数型数值,因为BOM包含可追踪的部件" -#: build/serializers.py:276 order/serializers.py:513 order/serializers.py:1236 -#: stock/serializers.py:324 templates/js/translated/purchase_order.js:1123 -#: templates/js/translated/stock.js:334 templates/js/translated/stock.js:532 +#: build/serializers.py:284 order/serializers.py:520 order/serializers.py:1243 +#: stock/serializers.py:390 templates/js/translated/purchase_order.js:1138 +#: templates/js/translated/stock.js:333 templates/js/translated/stock.js:531 msgid "Serial Numbers" msgstr "序列号" -#: build/serializers.py:277 +#: build/serializers.py:285 msgid "Enter serial numbers for build outputs" msgstr "输入生产产出的序列号" -#: build/serializers.py:290 +#: build/serializers.py:298 msgid "Auto Allocate Serial Numbers" msgstr "自动分配序列号" -#: build/serializers.py:291 +#: build/serializers.py:299 msgid "Automatically allocate required items with matching serial numbers" msgstr "自动为所需项分配对应的序列号" -#: build/serializers.py:326 stock/api.py:668 +#: build/serializers.py:334 stock/api.py:720 msgid "The following serial numbers already exist or are invalid" msgstr "以下序列号已存在或无效" -#: build/serializers.py:377 build/serializers.py:439 build/serializers.py:518 +#: build/serializers.py:385 build/serializers.py:447 build/serializers.py:526 msgid "A list of build outputs must be provided" msgstr "必须提供生产产出列表" -#: build/serializers.py:415 build/serializers.py:488 order/serializers.py:486 -#: order/serializers.py:605 order/serializers.py:1587 part/serializers.py:854 -#: stock/serializers.py:335 stock/serializers.py:470 stock/serializers.py:551 -#: stock/serializers.py:931 stock/serializers.py:1173 +#: build/serializers.py:423 build/serializers.py:496 order/serializers.py:493 +#: order/serializers.py:612 order/serializers.py:1594 part/serializers.py:932 +#: stock/serializers.py:401 stock/serializers.py:537 stock/serializers.py:618 +#: stock/serializers.py:1048 stock/serializers.py:1290 #: stock/templates/stock/item_base.html:390 #: templates/js/translated/barcode.js:530 -#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:967 -#: templates/js/translated/build.js:2006 -#: templates/js/translated/purchase_order.js:1148 -#: templates/js/translated/purchase_order.js:1238 -#: templates/js/translated/sales_order.js:1497 -#: templates/js/translated/sales_order.js:1605 -#: templates/js/translated/sales_order.js:1613 -#: templates/js/translated/sales_order.js:1692 -#: templates/js/translated/stock.js:645 templates/js/translated/stock.js:811 -#: templates/js/translated/stock.js:1023 templates/js/translated/stock.js:1937 -#: templates/js/translated/stock.js:2608 +#: templates/js/translated/barcode.js:778 templates/js/translated/build.js:980 +#: templates/js/translated/build.js:2291 +#: templates/js/translated/purchase_order.js:1163 +#: templates/js/translated/purchase_order.js:1253 +#: templates/js/translated/sales_order.js:1506 +#: templates/js/translated/sales_order.js:1614 +#: templates/js/translated/sales_order.js:1622 +#: templates/js/translated/sales_order.js:1701 +#: templates/js/translated/stock.js:644 templates/js/translated/stock.js:810 +#: templates/js/translated/stock.js:1022 templates/js/translated/stock.js:2110 +#: templates/js/translated/stock.js:2753 msgid "Location" msgstr "地点" -#: build/serializers.py:416 +#: build/serializers.py:424 #, fuzzy #| msgid "Stock item created" msgid "Stock location for scrapped outputs" msgstr "库存项已创建" -#: build/serializers.py:422 +#: build/serializers.py:430 #, fuzzy #| msgid "Stock Locations" msgid "Discard Allocations" msgstr "仓储地点" -#: build/serializers.py:423 +#: build/serializers.py:431 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:428 +#: build/serializers.py:436 #, fuzzy #| msgid "Location for completed build outputs" msgid "Reason for scrapping build output(s)" msgstr "已完成生产产出的仓储地点" -#: build/serializers.py:489 +#: build/serializers.py:497 msgid "Location for completed build outputs" msgstr "已完成生产产出的仓储地点" -#: build/serializers.py:495 build/templates/build/build_base.html:151 -#: build/templates/build/detail.html:62 order/models.py:788 -#: order/models.py:1747 order/serializers.py:523 stock/admin.py:106 -#: stock/templates/stock/item_base.html:423 -#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2897 -#: templates/js/translated/purchase_order.js:1278 -#: templates/js/translated/purchase_order.js:1682 -#: templates/js/translated/return_order.js:319 -#: templates/js/translated/sales_order.js:807 -#: templates/js/translated/stock.js:1912 templates/js/translated/stock.js:2732 -#: templates/js/translated/stock.js:2859 +#: build/serializers.py:503 build/templates/build/build_base.html:152 +#: build/templates/build/detail.html:62 order/models.py:804 +#: order/models.py:1763 order/serializers.py:530 stock/admin.py:106 +#: stock/serializers.py:677 stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2110 +#: templates/js/translated/purchase_order.js:1293 +#: templates/js/translated/purchase_order.js:1697 +#: templates/js/translated/return_order.js:328 +#: templates/js/translated/sales_order.js:816 +#: templates/js/translated/stock.js:2085 templates/js/translated/stock.js:2877 +#: templates/js/translated/stock.js:3000 msgid "Status" msgstr "状态" -#: build/serializers.py:501 +#: build/serializers.py:509 msgid "Accept Incomplete Allocation" msgstr "接受不完整的分配" -#: build/serializers.py:502 +#: build/serializers.py:510 msgid "Complete outputs if stock has not been fully allocated" msgstr "如果库存尚未完成分配,完成产出" -#: build/serializers.py:571 +#: build/serializers.py:579 msgid "Remove Allocated Stock" msgstr "移除已分配的库存" -#: build/serializers.py:572 +#: build/serializers.py:580 msgid "Subtract any stock which has already been allocated to this build" msgstr "减去已经分配至此生产的库存" -#: build/serializers.py:578 +#: build/serializers.py:586 msgid "Remove Incomplete Outputs" msgstr "移除未完成的产出" -#: build/serializers.py:579 +#: build/serializers.py:587 msgid "Delete any build outputs which have not been completed" msgstr "删除所有未完成的生产产出" -#: build/serializers.py:606 +#: build/serializers.py:614 msgid "Not permitted" msgstr "" -#: build/serializers.py:607 +#: build/serializers.py:615 msgid "Accept as consumed by this build order" msgstr "接受此构建订单所消耗的内容" -#: build/serializers.py:608 +#: build/serializers.py:616 msgid "Deallocate before completing this build order" msgstr "在完成此构建订单前取消分配" -#: build/serializers.py:631 +#: build/serializers.py:639 msgid "Overallocated Stock" msgstr "超出分配的库存" -#: build/serializers.py:633 +#: build/serializers.py:641 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "你想如何处理分配给构建订单的额外库存物品" -#: build/serializers.py:643 +#: build/serializers.py:651 msgid "Some stock items have been overallocated" msgstr "一些库存项已被过度分配" -#: build/serializers.py:648 +#: build/serializers.py:656 msgid "Accept Unallocated" msgstr "接受未分配的" -#: build/serializers.py:649 +#: build/serializers.py:657 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "接受库存项未被完成分配至此生产订单" -#: build/serializers.py:659 templates/js/translated/build.js:295 +#: build/serializers.py:667 templates/js/translated/build.js:304 msgid "Required stock has not been fully allocated" msgstr "所需库存尚未完全分配" -#: build/serializers.py:664 order/serializers.py:260 order/serializers.py:1126 +#: build/serializers.py:672 order/serializers.py:267 order/serializers.py:1133 msgid "Accept Incomplete" msgstr "接受未完成" -#: build/serializers.py:665 +#: build/serializers.py:673 msgid "Accept that the required number of build outputs have not been completed" msgstr "接受所需的生产产出未完成" -#: build/serializers.py:675 templates/js/translated/build.js:299 +#: build/serializers.py:683 templates/js/translated/build.js:308 msgid "Required build quantity has not been completed" msgstr "所需生产数量尚未完成" -#: build/serializers.py:684 templates/js/translated/build.js:283 +#: build/serializers.py:692 templates/js/translated/build.js:292 msgid "Build order has incomplete outputs" msgstr "生产订单有未完成的产出" -#: build/serializers.py:714 build/serializers.py:768 part/models.py:3662 -#: part/models.py:4045 -msgid "BOM Item" -msgstr "BOM项" +#: build/serializers.py:722 +#, fuzzy +#| msgid "Build actions" +msgid "Build Line" +msgstr "生产操作" -#: build/serializers.py:724 +#: build/serializers.py:732 msgid "Build output" msgstr "生产产出" -#: build/serializers.py:732 +#: build/serializers.py:740 msgid "Build output must point to the same build" msgstr "生产产出必须指向相同的生产" -#: build/serializers.py:782 +#: build/serializers.py:776 +#, fuzzy +#| msgid "Delete parameters" +msgid "Build Line Item" +msgstr "删除参数" + +#: build/serializers.py:790 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part 必须与生产订单指向相同的部件" -#: build/serializers.py:797 stock/serializers.py:783 +#: build/serializers.py:805 stock/serializers.py:900 msgid "Item must be in stock" msgstr "项目必须在库存中" -#: build/serializers.py:846 order/serializers.py:1116 +#: build/serializers.py:853 order/serializers.py:1123 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "可用量 ({q}) 超出了限制" -#: build/serializers.py:852 +#: build/serializers.py:859 msgid "Build output must be specified for allocation of tracked parts" msgstr "对于被追踪的部件的分配,必须指定生产产出" -#: build/serializers.py:859 +#: build/serializers.py:866 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "对于未被追踪的部件,无法指定生产产出" -#: build/serializers.py:864 +#: build/serializers.py:871 msgid "This stock item has already been allocated to this build output" msgstr "此库存项已被分配至此生产产出" -#: build/serializers.py:887 order/serializers.py:1400 +#: build/serializers.py:894 order/serializers.py:1407 msgid "Allocation items must be provided" msgstr "必须提供分配的项" -#: build/serializers.py:943 +#: build/serializers.py:947 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "部件来源的仓储地点(留空则可来源于任何仓储地点)" -#: build/serializers.py:951 +#: build/serializers.py:955 msgid "Exclude Location" msgstr "排除地点" -#: build/serializers.py:952 +#: build/serializers.py:956 msgid "Exclude stock items from this selected location" msgstr "从该选定的仓储地点排除库存项" -#: build/serializers.py:957 +#: build/serializers.py:961 msgid "Interchangeable Stock" msgstr "可互换的库存" -#: build/serializers.py:958 +#: build/serializers.py:962 msgid "Stock items in multiple locations can be used interchangeably" msgstr "多处地点的库存项可以互换使用" -#: build/serializers.py:963 +#: build/serializers.py:967 msgid "Substitute Stock" msgstr "可替换的库存" -#: build/serializers.py:964 +#: build/serializers.py:968 msgid "Allow allocation of substitute parts" msgstr "允许分配可替换的部件" -#: build/serializers.py:969 +#: build/serializers.py:973 msgid "Optional Items" msgstr "可选项目" -#: build/serializers.py:970 +#: build/serializers.py:974 msgid "Allocate optional BOM items to build order" msgstr "分配可选的BOM项目来建立订单" @@ -1576,6 +1641,7 @@ msgstr "商品名称" #: part/templates/part/part_base.html:43 #: stock/templates/stock/item_base.html:41 #: stock/templates/stock/location.html:54 +#: templates/js/translated/filters.js:335 msgid "Barcode actions" msgstr "" @@ -1654,69 +1720,67 @@ msgstr "生产完成" msgid "Build Description" msgstr "构建描述" -#: build/templates/build/build_base.html:117 +#: build/templates/build/build_base.html:118 msgid "No build outputs have been created for this build order" msgstr "针对此生产订单,尚未创建生产产出" -#: build/templates/build/build_base.html:124 +#: build/templates/build/build_base.html:125 msgid "Build Order is ready to mark as completed" msgstr "构建订单已准备好标记为已完成" -#: build/templates/build/build_base.html:129 +#: build/templates/build/build_base.html:130 msgid "Build Order cannot be completed as outstanding outputs remain" msgstr "创建订单无法完成,因为未完成的输出" -#: build/templates/build/build_base.html:134 +#: build/templates/build/build_base.html:135 msgid "Required build quantity has not yet been completed" msgstr "所需生产数量尚未完成" -#: build/templates/build/build_base.html:139 +#: build/templates/build/build_base.html:140 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:237 -#: order/models.py:1096 order/templates/order/order_base.html:190 +#: build/templates/build/build_base.html:161 +#: build/templates/build/detail.html:138 order/models.py:244 +#: order/models.py:1112 order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:165 #: order/templates/order/sales_order_base.html:193 #: report/templates/report/inventree_build_order_base.html:125 -#: templates/js/translated/build.js:2945 templates/js/translated/part.js:1802 -#: templates/js/translated/purchase_order.js:1699 -#: templates/js/translated/purchase_order.js:2115 -#: templates/js/translated/return_order.js:335 -#: templates/js/translated/return_order.js:735 -#: templates/js/translated/sales_order.js:823 -#: templates/js/translated/sales_order.js:1847 +#: templates/js/translated/build.js:2158 templates/js/translated/part.js:1801 +#: templates/js/translated/purchase_order.js:1714 +#: templates/js/translated/purchase_order.js:2122 +#: templates/js/translated/return_order.js:344 +#: templates/js/translated/return_order.js:744 +#: templates/js/translated/sales_order.js:832 +#: templates/js/translated/sales_order.js:1856 msgid "Target Date" msgstr "预计日期" -#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:166 #, python-format msgid "This build was due on %(target)s" msgstr "此次生产的截止日期为 %(target)s" -#: build/templates/build/build_base.html:165 -#: build/templates/build/build_base.html:222 -#: order/templates/order/order_base.html:126 +#: build/templates/build/build_base.html:166 +#: build/templates/build/build_base.html:223 +#: order/templates/order/order_base.html:122 #: order/templates/order/return_order_base.html:118 #: order/templates/order/sales_order_base.html:123 -#: templates/js/translated/table_filters.js:68 -#: templates/js/translated/table_filters.js:443 -#: templates/js/translated/table_filters.js:528 -#: templates/js/translated/table_filters.js:569 +#: templates/js/translated/table_filters.js:74 +#: templates/js/translated/table_filters.js:460 +#: templates/js/translated/table_filters.js:561 +#: templates/js/translated/table_filters.js:602 msgid "Overdue" msgstr "逾期" -#: build/templates/build/build_base.html:177 -#: build/templates/build/detail.html:67 build/templates/build/detail.html:149 -#: order/templates/order/sales_order_base.html:203 -#: templates/js/translated/table_filters.js:591 -msgid "Completed" -msgstr "已完成" +#: build/templates/build/build_base.html:178 +#: 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:1451 order/models.py:1301 -#: order/models.py:1400 order/models.py:1548 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:101 order/api.py:1454 order/models.py:1317 +#: order/models.py:1416 order/models.py:1564 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_base.html:135 @@ -1724,34 +1788,34 @@ msgstr "已完成" #: stock/templates/stock/item_base.html:370 #: templates/email/overdue_sales_order.html:15 #: templates/js/translated/pricing.js:915 -#: templates/js/translated/sales_order.js:757 -#: templates/js/translated/sales_order.js:980 -#: templates/js/translated/stock.js:2661 +#: templates/js/translated/sales_order.js:766 +#: templates/js/translated/sales_order.js:989 +#: templates/js/translated/stock.js:2806 msgid "Sales Order" msgstr "销售订单" -#: build/templates/build/build_base.html:197 +#: build/templates/build/build_base.html:198 #: build/templates/build/detail.html:115 #: report/templates/report/inventree_build_order_base.html:152 msgid "Issued By" msgstr "发布者" -#: build/templates/build/build_base.html:211 -#: build/templates/build/detail.html:94 templates/js/translated/build.js:2862 +#: build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2075 msgid "Priority" msgstr "优先级" -#: build/templates/build/build_base.html:273 +#: build/templates/build/build_base.html:274 msgid "Delete Build Order" msgstr "删除生产订单" -#: build/templates/build/build_base.html:283 +#: build/templates/build/build_base.html:284 #, fuzzy #| msgid "Build Order" msgid "Build Order QR Code" msgstr "生产订单" -#: build/templates/build/build_base.html:295 +#: build/templates/build/build_base.html:296 #, fuzzy #| msgid "Print Build Orders" msgid "Link Barcode to Build Order" @@ -1769,8 +1833,8 @@ msgstr "库存来源" msgid "Stock can be taken from any available location." msgstr "库存可以从任何可用的地点获得。" -#: build/templates/build/detail.html:49 order/models.py:1219 -#: templates/js/translated/purchase_order.js:2157 +#: build/templates/build/detail.html:49 order/models.py:1235 +#: templates/js/translated/purchase_order.js:2164 msgid "Destination" msgstr "目的地" @@ -1784,21 +1848,21 @@ msgstr "已分配的部件" #: build/templates/build/detail.html:80 stock/admin.py:105 #: stock/templates/stock/item_base.html:163 -#: templates/js/translated/build.js:1432 -#: templates/js/translated/model_renderers.js:212 -#: templates/js/translated/purchase_order.js:1244 -#: templates/js/translated/stock.js:1093 templates/js/translated/stock.js:1926 -#: templates/js/translated/stock.js:2866 -#: templates/js/translated/table_filters.js:259 -#: templates/js/translated/table_filters.js:350 +#: templates/js/translated/build.js:1315 +#: templates/js/translated/model_renderers.js:226 +#: templates/js/translated/purchase_order.js:1259 +#: templates/js/translated/stock.js:1092 templates/js/translated/stock.js:2099 +#: templates/js/translated/stock.js:3007 +#: templates/js/translated/table_filters.js:265 +#: templates/js/translated/table_filters.js:356 msgid "Batch" msgstr "批量" #: build/templates/build/detail.html:133 -#: order/templates/order/order_base.html:177 +#: order/templates/order/order_base.html:173 #: order/templates/order/return_order_base.html:152 #: order/templates/order/sales_order_base.html:187 -#: templates/js/translated/build.js:2905 +#: templates/js/translated/build.js:2118 msgid "Created" msgstr "已创建" @@ -1806,153 +1870,114 @@ msgstr "已创建" msgid "No target date set" msgstr "无预计日期" +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:203 +#: templates/js/translated/table_filters.js:624 +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:19 +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:17 msgid "Child Build Orders" msgstr "子生产订单" -#: build/templates/build/detail.html:179 +#: build/templates/build/detail.html:177 msgid "Allocate Stock to Build" msgstr "为生产分配库存" -#: build/templates/build/detail.html:183 templates/js/translated/build.js:2276 -msgid "Unallocate stock" +#: build/templates/build/detail.html:181 +#, fuzzy +#| msgid "Unallocate stock" +msgid "Deallocate stock" +msgstr "未分配库存" + +#: build/templates/build/detail.html:182 +#, fuzzy +#| msgid "Unallocate Stock" +msgid "Deallocate Stock" msgstr "未分配库存" #: build/templates/build/detail.html:184 -msgid "Unallocate Stock" -msgstr "未分配库存" - -#: build/templates/build/detail.html:186 msgid "Automatically allocate stock to build" msgstr "自动分配存货进行生成" -#: build/templates/build/detail.html:187 +#: build/templates/build/detail.html:185 msgid "Auto Allocate" msgstr "自动分配" -#: build/templates/build/detail.html:189 +#: build/templates/build/detail.html:187 msgid "Manually allocate stock to build" msgstr "手动分配存货进行生成" -#: build/templates/build/detail.html:190 build/templates/build/sidebar.html:8 +#: build/templates/build/detail.html:188 build/templates/build/sidebar.html:8 msgid "Allocate Stock" msgstr "分配库存" -#: build/templates/build/detail.html:193 +#: build/templates/build/detail.html:191 msgid "Order required parts" msgstr "订单所需部件" -#: build/templates/build/detail.html:194 -#: company/templates/company/detail.html:38 -#: company/templates/company/detail.html:86 -#: part/templates/part/category.html:184 -#: templates/js/translated/purchase_order.js:789 +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:800 msgid "Order Parts" msgstr "订购商品" -#: build/templates/build/detail.html:206 -msgid "Untracked stock has been fully allocated for this Build Order" -msgstr "未跟踪的库存已完全分配给此生产订单" - #: build/templates/build/detail.html:210 -msgid "Untracked stock has not been fully allocated for this Build Order" -msgstr "未跟踪的库存尚未完全分配给此生产订单" - -#: build/templates/build/detail.html:217 -msgid "Allocate selected items" -msgstr "分配选定项目" - -#: build/templates/build/detail.html:227 -msgid "This Build Order does not have any associated untracked BOM items" -msgstr "此构建订单没有任何关联的 BOM 项目" - -#: build/templates/build/detail.html:236 msgid "Incomplete Build Outputs" msgstr "未完成的生产产出" -#: build/templates/build/detail.html:240 +#: build/templates/build/detail.html:214 msgid "Create new build output" msgstr "创建新构建输出" -#: build/templates/build/detail.html:241 +#: build/templates/build/detail.html:215 msgid "New Build Output" msgstr "新建构建输出" -#: build/templates/build/detail.html:255 -msgid "Output Actions" -msgstr "输出操作" - -#: build/templates/build/detail.html:260 -msgid "Complete selected build outputs" -msgstr "完成选定的构建输出" - -#: build/templates/build/detail.html:261 -msgid "Complete outputs" -msgstr "已完成输出" - -#: build/templates/build/detail.html:265 -#, fuzzy -#| msgid "Complete selected build outputs" -msgid "Scrap selected build outputs" -msgstr "完成选定的构建输出" - -#: build/templates/build/detail.html:266 -#, fuzzy -#| msgid "Complete outputs" -msgid "Scrap outputs" -msgstr "已完成输出" - -#: build/templates/build/detail.html:270 -msgid "Delete selected build outputs" -msgstr "删除选中的构建输出" - -#: build/templates/build/detail.html:271 -msgid "Delete outputs" -msgstr "删除输出" - -#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:11 +#: build/templates/build/detail.html:232 build/templates/build/sidebar.html:15 #, fuzzy #| msgid "Minimum Stock" msgid "Consumed Stock" msgstr "最低库存" -#: build/templates/build/detail.html:300 +#: build/templates/build/detail.html:244 msgid "Completed Build Outputs" msgstr "已完成构建输出" -#: build/templates/build/detail.html:312 build/templates/build/sidebar.html:21 -#: company/templates/company/detail.html:261 -#: company/templates/company/manufacturer_part.html:151 +#: build/templates/build/detail.html:256 build/templates/build/sidebar.html:19 +#: 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:37 +#: company/templates/company/sidebar.html:39 #: order/templates/order/po_sidebar.html:9 -#: order/templates/order/purchase_order_detail.html:102 -#: order/templates/order/return_order_detail.html:74 +#: 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:134 -#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:234 -#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:117 +#: 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:327 +#: build/templates/build/detail.html:271 msgid "Build Notes" msgstr "生产备注" -#: build/templates/build/detail.html:502 +#: build/templates/build/detail.html:422 msgid "Allocation Complete" msgstr "分配完成" -#: build/templates/build/detail.html:503 -msgid "All untracked stock items have been allocated" -msgstr "所有未跟踪的库存项目都已分配" +#: build/templates/build/detail.html:423 +#, fuzzy +#| msgid "Required stock has not been fully allocated" +msgid "All lines have been fully allocated" +msgstr "所需库存尚未完全分配" -#: build/templates/build/index.html:18 part/templates/part/detail.html:340 +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 msgid "New Build Order" msgstr "新建生产订单" @@ -1960,14 +1985,10 @@ msgstr "新建生产订单" msgid "Build Order Details" msgstr "生产订单详情" -#: build/templates/build/sidebar.html:14 +#: build/templates/build/sidebar.html:10 msgid "Incomplete Outputs" msgstr "未完成输出" -#: build/templates/build/sidebar.html:17 -msgid "Completed Outputs" -msgstr "已完成输出" - #: common/files.py:63 #, fuzzy, python-brace-format #| msgid "Unsupported file format: {ext.upper()}" @@ -2015,18 +2036,6 @@ msgstr "已更新" msgid "Timestamp of last update" msgstr "最后一次更新时间" -#: common/models.py:104 order/admin.py:17 order/models.py:231 -#: templates/InvenTree/settings/settings_staff_js.html:70 -#: templates/js/translated/purchase_order.js:1670 -#: templates/js/translated/return_order.js:306 -#: templates/js/translated/sales_order.js:794 -#: templates/js/translated/table_filters.js:24 -#: templates/project_code_data.html:6 -#, fuzzy -#| msgid "Part QR Code" -msgid "Project Code" -msgstr "商品二维码" - #: common/models.py:105 msgid "Unique project code" msgstr "" @@ -2316,9 +2325,9 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1162 part/admin.py:55 part/models.py:3536 -#: report/models.py:166 templates/js/translated/table_filters.js:109 -#: templates/js/translated/table_filters.js:669 +#: common/models.py:1162 part/admin.py:55 part/models.py:3588 +#: report/models.py:165 templates/js/translated/table_filters.js:115 +#: templates/js/translated/table_filters.js:702 msgid "Template" msgstr "模板" @@ -2326,10 +2335,10 @@ msgstr "模板" msgid "Parts are templates by default" msgstr "" -#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:995 -#: templates/js/translated/bom.js:1598 -#: templates/js/translated/table_filters.js:276 -#: templates/js/translated/table_filters.js:623 +#: common/models.py:1169 part/admin.py:51 part/admin.py:283 part/models.py:1000 +#: templates/js/translated/bom.js:1618 +#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:656 msgid "Assembly" msgstr "组装" @@ -2337,8 +2346,8 @@ msgstr "组装" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1176 part/admin.py:52 part/models.py:1001 -#: templates/js/translated/table_filters.js:631 +#: common/models.py:1176 part/admin.py:52 part/models.py:1006 +#: templates/js/translated/table_filters.js:664 msgid "Component" msgstr "组件" @@ -2346,7 +2355,7 @@ msgstr "组件" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1183 part/admin.py:53 part/models.py:1012 +#: common/models.py:1183 part/admin.py:53 part/models.py:1017 msgid "Purchaseable" msgstr "可购买" @@ -2354,8 +2363,8 @@ msgstr "可购买" msgid "Parts are purchaseable by default" msgstr "商品默认可购买" -#: common/models.py:1190 part/admin.py:54 part/models.py:1017 -#: templates/js/translated/table_filters.js:657 +#: common/models.py:1190 part/admin.py:54 part/models.py:1022 +#: templates/js/translated/table_filters.js:690 msgid "Salable" msgstr "可销售" @@ -2363,10 +2372,10 @@ msgstr "可销售" msgid "Parts are salable by default" msgstr "商品默认可销售" -#: common/models.py:1197 part/admin.py:56 part/models.py:1007 -#: templates/js/translated/table_filters.js:117 -#: templates/js/translated/table_filters.js:193 -#: templates/js/translated/table_filters.js:673 +#: common/models.py:1197 part/admin.py:56 part/models.py:1012 +#: templates/js/translated/table_filters.js:123 +#: templates/js/translated/table_filters.js:199 +#: templates/js/translated/table_filters.js:706 msgid "Trackable" msgstr "可追踪" @@ -2374,10 +2383,10 @@ msgstr "可追踪" msgid "Parts are trackable by default" msgstr "商品默认可跟踪" -#: common/models.py:1204 part/admin.py:57 part/models.py:1027 +#: common/models.py:1204 part/admin.py:57 part/models.py:1032 #: part/templates/part/part_base.html:156 -#: templates/js/translated/table_filters.js:113 -#: templates/js/translated/table_filters.js:677 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:710 msgid "Virtual" msgstr "虚拟" @@ -2409,7 +2418,7 @@ msgstr "" msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1232 templates/js/translated/part.js:108 +#: common/models.py:1232 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" @@ -2658,185 +2667,187 @@ msgid "Stock location default icon (empty means no icon)" msgstr "" #: common/models.py:1471 -msgid "Build Order Reference Pattern" -msgstr "" +#, fuzzy +#| msgid "Select Stock Items" +msgid "Show Installed Stock Items" +msgstr "选择库存项" #: common/models.py:1472 -msgid "Required pattern for generating Build Order reference field" +msgid "Display installed stock items in stock tables" msgstr "" #: common/models.py:1478 +msgid "Build Order Reference Pattern" +msgstr "" + +#: common/models.py:1479 +msgid "Required pattern for generating Build Order reference field" +msgstr "" + +#: common/models.py:1485 #, fuzzy #| msgid "Sales Orders" msgid "Enable Return Orders" msgstr "销售订单" -#: common/models.py:1479 +#: common/models.py:1486 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1485 +#: common/models.py:1492 #, fuzzy #| msgid "Build Order Reference" msgid "Return Order Reference Pattern" msgstr "相关生产订单" -#: common/models.py:1486 +#: common/models.py:1493 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1492 +#: common/models.py:1499 #, fuzzy #| msgid "Complete Build Order" msgid "Edit Completed Return Orders" msgstr "生产订单完成" -#: common/models.py:1493 +#: common/models.py:1500 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1499 +#: common/models.py:1506 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1500 +#: common/models.py:1507 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1506 +#: common/models.py:1513 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1507 +#: common/models.py:1514 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1513 +#: common/models.py:1520 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1514 +#: common/models.py:1521 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1520 +#: common/models.py:1527 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1521 +#: common/models.py:1528 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1527 +#: common/models.py:1534 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1528 +#: common/models.py:1535 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1535 +#: common/models.py:1542 msgid "Enable password forgot" msgstr "" -#: common/models.py:1536 +#: common/models.py:1543 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1542 +#: common/models.py:1549 msgid "Enable registration" msgstr "" -#: common/models.py:1543 +#: common/models.py:1550 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1549 +#: common/models.py:1556 msgid "Enable SSO" msgstr "" -#: common/models.py:1550 +#: common/models.py:1557 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1556 +#: common/models.py:1563 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1557 +#: common/models.py:1564 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1563 +#: common/models.py:1570 msgid "Email required" msgstr "" -#: common/models.py:1564 +#: common/models.py:1571 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1570 +#: common/models.py:1577 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1571 +#: common/models.py:1578 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1577 +#: common/models.py:1584 msgid "Mail twice" msgstr "" -#: common/models.py:1578 +#: common/models.py:1585 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1584 +#: common/models.py:1591 msgid "Password twice" msgstr "" -#: common/models.py:1585 +#: common/models.py:1592 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1591 +#: common/models.py:1598 msgid "Allowed domains" msgstr "" -#: common/models.py:1592 +#: common/models.py:1599 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:1598 +#: common/models.py:1605 msgid "Group on signup" msgstr "" -#: common/models.py:1599 +#: common/models.py:1606 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1605 +#: common/models.py:1612 msgid "Enforce MFA" msgstr "" -#: common/models.py:1606 +#: common/models.py:1613 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1612 +#: common/models.py:1619 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1613 -msgid "Check that all plugins are installed on startup - enable in container environments" -msgstr "" - #: common/models.py:1620 -msgid "Check plugin signatures" -msgstr "" - -#: common/models.py:1621 -msgid "Check and show signatures for plugins" +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" #: common/models.py:1628 @@ -2913,7 +2924,7 @@ msgstr "" msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:1710 common/models.py:2147 +#: common/models.py:1710 common/models.py:2133 msgid "Settings key (must be unique - case insensitive" msgstr "" @@ -2956,540 +2967,525 @@ msgid "Show latest parts on the homepage" msgstr "在主页上显示最近商品" #: common/models.py:1779 -msgid "Recent Part Count" -msgstr "" - -#: common/models.py:1780 -msgid "Number of recent parts to display on index page" -msgstr "" - -#: common/models.py:1786 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1787 +#: common/models.py:1780 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1793 +#: common/models.py:1786 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1794 +#: common/models.py:1787 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1800 -msgid "Recent Stock Count" -msgstr "" - -#: common/models.py:1801 -msgid "Number of recent stock items to display on index page" -msgstr "" - -#: common/models.py:1807 +#: common/models.py:1793 msgid "Show low stock" msgstr "" -#: common/models.py:1808 +#: common/models.py:1794 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1814 +#: common/models.py:1800 msgid "Show depleted stock" msgstr "" -#: common/models.py:1815 +#: common/models.py:1801 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1821 +#: common/models.py:1807 msgid "Show needed stock" msgstr "" -#: common/models.py:1822 +#: common/models.py:1808 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1828 +#: common/models.py:1814 msgid "Show expired stock" msgstr "" -#: common/models.py:1829 +#: common/models.py:1815 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1835 +#: common/models.py:1821 msgid "Show stale stock" msgstr "" -#: common/models.py:1836 +#: common/models.py:1822 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1842 +#: common/models.py:1828 msgid "Show pending builds" msgstr "" -#: common/models.py:1843 +#: common/models.py:1829 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1849 +#: common/models.py:1835 msgid "Show overdue builds" msgstr "显示逾期生产" -#: common/models.py:1850 +#: common/models.py:1836 msgid "Show overdue builds on the homepage" msgstr "在主页上显示逾期的生产" -#: common/models.py:1856 +#: common/models.py:1842 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1857 +#: common/models.py:1843 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1863 +#: common/models.py:1849 msgid "Show overdue POs" msgstr "" -#: common/models.py:1864 +#: common/models.py:1850 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1870 +#: common/models.py:1856 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1871 +#: common/models.py:1857 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1877 +#: common/models.py:1863 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1878 +#: common/models.py:1864 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1884 +#: common/models.py:1870 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:1885 +#: common/models.py:1871 #, fuzzy #| msgid "Show latest parts on the homepage" msgid "Show pending SO shipments on the homepage" msgstr "在主页上显示最近商品" -#: common/models.py:1891 +#: common/models.py:1877 msgid "Show News" msgstr "" -#: common/models.py:1892 +#: common/models.py:1878 msgid "Show news on the homepage" msgstr "" -#: common/models.py:1898 +#: common/models.py:1884 msgid "Inline label display" msgstr "内嵌标签显示" -#: common/models.py:1899 +#: common/models.py:1885 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "在浏览器中显示 PDF 标签,而不是以文件形式下载" -#: common/models.py:1905 +#: common/models.py:1891 msgid "Default label printer" msgstr "" -#: common/models.py:1906 +#: common/models.py:1892 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:1912 +#: common/models.py:1898 msgid "Inline report display" msgstr "" -#: common/models.py:1913 +#: common/models.py:1899 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "在浏览器中显示 PDF 报告,而不是以文件形式下载" -#: common/models.py:1919 +#: common/models.py:1905 msgid "Search Parts" msgstr "" -#: common/models.py:1920 +#: common/models.py:1906 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1926 +#: common/models.py:1912 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:1927 +#: common/models.py:1913 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1933 +#: common/models.py:1919 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1934 +#: common/models.py:1920 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1940 +#: common/models.py:1926 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1941 +#: common/models.py:1927 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1947 +#: common/models.py:1933 msgid "Search Categories" msgstr "" -#: common/models.py:1948 +#: common/models.py:1934 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1954 +#: common/models.py:1940 msgid "Search Stock" msgstr "" -#: common/models.py:1955 +#: common/models.py:1941 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1961 +#: common/models.py:1947 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1962 +#: common/models.py:1948 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1968 +#: common/models.py:1954 msgid "Search Locations" msgstr "" -#: common/models.py:1969 +#: common/models.py:1955 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1975 +#: common/models.py:1961 msgid "Search Companies" msgstr "" -#: common/models.py:1976 +#: common/models.py:1962 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1982 +#: common/models.py:1968 msgid "Search Build Orders" msgstr "" -#: common/models.py:1983 +#: common/models.py:1969 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:1989 +#: common/models.py:1975 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1990 +#: common/models.py:1976 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1996 +#: common/models.py:1982 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1997 +#: common/models.py:1983 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2003 +#: common/models.py:1989 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2004 +#: common/models.py:1990 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2010 +#: common/models.py:1996 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2011 +#: common/models.py:1997 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2017 +#: common/models.py:2003 #, fuzzy #| msgid "Purchase Orders" msgid "Search Return Orders" msgstr "采购订单" -#: common/models.py:2018 +#: common/models.py:2004 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2024 +#: common/models.py:2010 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2025 +#: common/models.py:2011 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2031 +#: common/models.py:2017 msgid "Search Preview Results" msgstr "搜索预览结果" -#: common/models.py:2032 +#: common/models.py:2018 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2038 +#: common/models.py:2024 #, fuzzy #| msgid "Search" msgid "Regex Search" msgstr "搜索" -#: common/models.py:2039 +#: common/models.py:2025 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2045 +#: common/models.py:2031 msgid "Whole Word Search" msgstr "" -#: common/models.py:2046 +#: common/models.py:2032 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2052 +#: common/models.py:2038 msgid "Show Quantity in Forms" msgstr "在表格中显示数量" -#: common/models.py:2053 +#: common/models.py:2039 msgid "Display available part quantity in some forms" msgstr "在某些表格中显示可用的商品数量" -#: common/models.py:2059 +#: common/models.py:2045 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2060 +#: common/models.py:2046 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2066 +#: common/models.py:2052 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2067 +#: common/models.py:2053 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2073 +#: common/models.py:2059 msgid "Date Format" msgstr "" -#: common/models.py:2074 +#: common/models.py:2060 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2088 part/templates/part/detail.html:41 +#: common/models.py:2074 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2089 +#: common/models.py:2075 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2095 part/templates/part/detail.html:62 +#: common/models.py:2081 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2096 +#: common/models.py:2082 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2102 +#: common/models.py:2088 msgid "Table String Length" msgstr "" -#: common/models.py:2103 +#: common/models.py:2089 msgid "Maximimum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2112 +#: common/models.py:2098 #, fuzzy #| msgid "Select Label Template" msgid "Default part label template" msgstr "选择标签模板" -#: common/models.py:2113 +#: common/models.py:2099 msgid "The part label template to be automatically selected" msgstr "" -#: common/models.py:2121 +#: common/models.py:2107 #, fuzzy #| msgid "stock items selected" msgid "Default stock item template" msgstr "已选择库存项" -#: common/models.py:2122 +#: common/models.py:2108 msgid "The stock item label template to be automatically selected" msgstr "" -#: common/models.py:2130 +#: common/models.py:2116 #, fuzzy #| msgid "No stock location set" msgid "Default stock location label template" msgstr "未设置仓储地点" -#: common/models.py:2131 +#: common/models.py:2117 msgid "The stock location label template to be automatically selected" msgstr "" -#: common/models.py:2177 +#: common/models.py:2163 msgid "Price break quantity" msgstr "" -#: common/models.py:2184 company/serializers.py:434 order/admin.py:43 -#: order/models.py:1129 order/models.py:1936 -#: templates/js/translated/company.js:1433 templates/js/translated/part.js:1856 +#: common/models.py:2170 company/serializers.py:491 order/admin.py:43 +#: order/models.py:1145 order/models.py:1952 +#: templates/js/translated/company.js:1854 templates/js/translated/part.js:1855 #: templates/js/translated/pricing.js:621 -#: templates/js/translated/return_order.js:725 +#: templates/js/translated/return_order.js:734 msgid "Price" msgstr "价格" -#: common/models.py:2185 +#: common/models.py:2171 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2345 common/models.py:2523 +#: common/models.py:2331 common/models.py:2509 msgid "Endpoint" msgstr "" -#: common/models.py:2346 +#: common/models.py:2332 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2355 +#: common/models.py:2341 msgid "Name for this webhook" msgstr "" -#: common/models.py:2360 part/admin.py:50 part/models.py:1022 -#: plugin/models.py:47 templates/js/translated/table_filters.js:105 -#: templates/js/translated/table_filters.js:189 -#: templates/js/translated/table_filters.js:439 -#: templates/js/translated/table_filters.js:618 +#: common/models.py:2346 part/admin.py:50 part/models.py:1027 +#: plugin/models.py:48 templates/js/translated/table_filters.js:111 +#: templates/js/translated/table_filters.js:195 +#: templates/js/translated/table_filters.js:440 +#: templates/js/translated/table_filters.js:456 +#: templates/js/translated/table_filters.js:651 msgid "Active" msgstr "" -#: common/models.py:2361 +#: common/models.py:2347 msgid "Is this webhook active" msgstr "" -#: common/models.py:2375 +#: common/models.py:2361 msgid "Token" msgstr "令牌" -#: common/models.py:2376 +#: common/models.py:2362 msgid "Token for access" msgstr "" -#: common/models.py:2383 +#: common/models.py:2369 msgid "Secret" msgstr "" -#: common/models.py:2384 +#: common/models.py:2370 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2490 +#: common/models.py:2476 msgid "Message ID" msgstr "" -#: common/models.py:2491 +#: common/models.py:2477 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2499 +#: common/models.py:2485 msgid "Host" msgstr "" -#: common/models.py:2500 +#: common/models.py:2486 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2507 +#: common/models.py:2493 msgid "Header" msgstr "" -#: common/models.py:2508 +#: common/models.py:2494 msgid "Header of this message" msgstr "" -#: common/models.py:2514 +#: common/models.py:2500 msgid "Body" msgstr "" -#: common/models.py:2515 +#: common/models.py:2501 msgid "Body of this message" msgstr "" -#: common/models.py:2524 +#: common/models.py:2510 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2529 +#: common/models.py:2515 msgid "Worked on" msgstr "" -#: common/models.py:2530 +#: common/models.py:2516 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2684 +#: common/models.py:2670 msgid "Id" msgstr "" -#: common/models.py:2690 templates/js/translated/news.js:44 +#: common/models.py:2676 templates/js/translated/company.js:996 +#: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2700 templates/js/translated/news.js:60 +#: common/models.py:2686 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2705 templates/InvenTree/settings/plugin.html:61 -#: templates/InvenTree/settings/plugin_settings.html:32 -#: templates/js/translated/news.js:56 +#: common/models.py:2691 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:106 msgid "Author" msgstr "" -#: common/models.py:2710 templates/js/translated/news.js:52 +#: common/models.py:2696 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2715 +#: common/models.py:2701 msgid "Read" msgstr "" -#: common/models.py:2716 +#: common/models.py:2702 msgid "Was this news item read?" msgstr "" -#: common/models.py:2736 company/models.py:143 part/models.py:913 +#: common/models.py:2722 company/models.py:139 part/models.py:918 #: 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_base.html:35 @@ -3499,7 +3495,7 @@ msgstr "" msgid "Image" msgstr "图片" -#: common/models.py:2737 +#: common/models.py:2723 #, fuzzy #| msgid "Image" msgid "Image file" @@ -3580,7 +3576,7 @@ msgstr "公司简介" #: company/models.py:113 company/templates/company/company_base.html:101 #: templates/InvenTree/settings/plugin_settings.html:54 -#: templates/js/translated/company.js:514 +#: templates/js/translated/company.js:521 msgid "Website" msgstr "网站" @@ -3588,305 +3584,407 @@ msgstr "网站" msgid "Company website URL" msgstr "公司网站" -#: company/models.py:118 company/templates/company/company_base.html:119 -msgid "Address" -msgstr "地址" - -#: company/models.py:119 -msgid "Company address" -msgstr "公司地址" - -#: company/models.py:122 +#: company/models.py:118 msgid "Phone number" msgstr "电话号码" -#: company/models.py:123 +#: company/models.py:119 msgid "Contact phone number" msgstr "联系电话" -#: company/models.py:126 company/templates/company/company_base.html:133 +#: company/models.py:122 company/templates/company/company_base.html:133 #: templates/InvenTree/settings/user.html:49 -#: templates/js/translated/company.js:659 +#: templates/js/translated/company.js:666 msgid "Email" msgstr "电子邮件" -#: company/models.py:126 +#: company/models.py:122 msgid "Contact email address" msgstr "联系人电子邮件" -#: company/models.py:129 company/templates/company/company_base.html:140 -#: order/models.py:263 order/templates/order/order_base.html:207 +#: company/models.py:125 company/templates/company/company_base.html:140 +#: order/models.py:270 order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:175 #: order/templates/order/sales_order_base.html:215 msgid "Contact" msgstr "联系人" -#: company/models.py:130 +#: company/models.py:126 msgid "Point of contact" msgstr "" -#: company/models.py:132 +#: company/models.py:128 msgid "Link to external company information" msgstr "链接到外部公司信息" -#: company/models.py:146 +#: company/models.py:142 msgid "is customer" msgstr "是客户" -#: company/models.py:146 +#: company/models.py:142 msgid "Do you sell items to this company?" msgstr "您是否向该公司出售商品?" -#: company/models.py:148 +#: company/models.py:144 msgid "is supplier" msgstr "是供应商" -#: company/models.py:148 +#: company/models.py:144 msgid "Do you purchase items from this company?" msgstr "您是否从该公司采购商品?" -#: company/models.py:150 +#: company/models.py:146 msgid "is manufacturer" msgstr "是制造商" -#: company/models.py:150 +#: company/models.py:146 msgid "Does this company manufacture parts?" msgstr "该公司制造商品吗?" -#: company/models.py:157 +#: company/models.py:153 msgid "Default currency used for this company" msgstr "该公司使用的默认货币" -#: company/models.py:223 company/templates/company/company_base.html:8 +#: company/models.py:235 company/models.py:328 +#: company/templates/company/company_base.html:8 #: company/templates/company/company_base.html:12 -#: templates/InvenTree/search.html:178 templates/js/translated/company.js:487 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:494 msgid "Company" msgstr "公司" -#: company/models.py:278 company/models.py:553 stock/models.py:675 -#: stock/serializers.py:155 stock/templates/stock/item_base.html:143 -#: templates/js/translated/bom.js:621 +#: company/models.py:324 +msgid "Company already has a primary address" +msgstr "" + +#: company/models.py:329 +#, fuzzy +#| msgid "Delete Company" +msgid "Select company" +msgstr "删除该公司" + +#: company/models.py:332 +#, fuzzy +#| msgid "Address" +msgid "Address title" +msgstr "地址" + +#: company/models.py:333 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:337 +#, fuzzy +#| msgid "Company address" +msgid "Primary address" +msgstr "公司地址" + +#: company/models.py:338 +#, fuzzy +#| msgid "Contact email address" +msgid "Set as primary address" +msgstr "联系人电子邮件" + +#: company/models.py:341 templates/js/translated/company.js:941 +#: templates/js/translated/company.js:1002 +msgid "Line 1" +msgstr "" + +#: company/models.py:342 +#, fuzzy +#| msgid "Address" +msgid "Address line 1" +msgstr "地址" + +#: company/models.py:346 templates/js/translated/company.js:942 +#: templates/js/translated/company.js:1008 +msgid "Line 2" +msgstr "" + +#: company/models.py:347 +#, fuzzy +#| msgid "Address" +msgid "Address line 2" +msgstr "地址" + +#: company/models.py:351 company/models.py:352 +#: templates/js/translated/company.js:1014 +msgid "Postal code" +msgstr "" + +#: company/models.py:356 +msgid "City/Region" +msgstr "" + +#: company/models.py:357 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:361 +msgid "State/Province" +msgstr "" + +#: company/models.py:362 +msgid "State or province" +msgstr "" + +#: company/models.py:366 templates/js/translated/company.js:1032 +msgid "Country" +msgstr "" + +#: company/models.py:367 +#, fuzzy +#| msgid "Address" +msgid "Address country" +msgstr "地址" + +#: company/models.py:371 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:372 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:376 +#, fuzzy +#| msgid "Internal company name" +msgid "Internal shipping notes" +msgstr "内部公司名称" + +#: company/models.py:377 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:382 +#, fuzzy +#| msgid "Description (optional)" +msgid "Link to address information (external)" +msgstr "描述 (可选)" + +#: company/models.py:427 company/models.py:702 stock/models.py:675 +#: stock/serializers.py:204 stock/templates/stock/item_base.html:143 +#: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:282 company/models.py:557 +#: company/models.py:431 company/models.py:706 msgid "Select part" msgstr "选择商品" -#: company/models.py:293 company/templates/company/company_base.html:77 +#: company/models.py:442 company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:146 part/serializers.py:354 +#: company/templates/company/supplier_part.html:146 part/serializers.py:415 #: stock/templates/stock/item_base.html:208 -#: templates/js/translated/company.js:498 -#: templates/js/translated/company.js:824 -#: templates/js/translated/company.js:954 -#: templates/js/translated/company.js:1221 -#: templates/js/translated/table_filters.js:698 +#: templates/js/translated/company.js:505 +#: templates/js/translated/company.js:1149 +#: templates/js/translated/company.js:1327 +#: templates/js/translated/company.js:1642 +#: templates/js/translated/table_filters.js:731 msgid "Manufacturer" msgstr "制造商" -#: company/models.py:294 +#: company/models.py:443 msgid "Select manufacturer" msgstr "选择制造商" -#: company/models.py:300 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:154 part/serializers.py:360 -#: templates/js/translated/company.js:340 -#: templates/js/translated/company.js:823 -#: templates/js/translated/company.js:970 -#: templates/js/translated/company.js:1240 templates/js/translated/part.js:1773 -#: templates/js/translated/purchase_order.js:1814 -#: templates/js/translated/purchase_order.js:2021 +#: company/models.py:449 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:154 part/serializers.py:421 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:1148 +#: templates/js/translated/company.js:1343 +#: templates/js/translated/company.js:1661 templates/js/translated/part.js:1772 +#: templates/js/translated/purchase_order.js:1826 +#: templates/js/translated/purchase_order.js:2028 msgid "MPN" msgstr "" -#: company/models.py:301 +#: company/models.py:450 msgid "Manufacturer Part Number" msgstr "制造商商品编号" -#: company/models.py:307 +#: company/models.py:456 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:313 +#: company/models.py:462 msgid "Manufacturer part description" msgstr "制造商商品描述" -#: company/models.py:360 company/models.py:384 company/models.py:578 +#: company/models.py:509 company/models.py:533 company/models.py:727 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:218 msgid "Manufacturer Part" msgstr "制造商商品" -#: company/models.py:391 +#: company/models.py:540 msgid "Parameter name" msgstr "参数名称" -#: company/models.py:397 +#: company/models.py:546 #: report/templates/report/inventree_test_report_base.html:104 -#: stock/models.py:2254 templates/js/translated/company.js:872 -#: templates/js/translated/company.js:1077 templates/js/translated/part.js:1465 -#: templates/js/translated/stock.js:1446 +#: stock/models.py:2255 templates/js/translated/company.js:1197 +#: templates/js/translated/company.js:1450 templates/js/translated/part.js:1464 +#: templates/js/translated/stock.js:1464 msgid "Value" msgstr "数值" -#: company/models.py:398 +#: company/models.py:547 msgid "Parameter value" msgstr "参数值" -#: company/models.py:404 company/templates/company/supplier_part.html:169 -#: part/admin.py:40 part/models.py:986 part/models.py:3401 +#: company/models.py:553 company/templates/company/supplier_part.html:169 +#: part/admin.py:40 part/models.py:991 part/models.py:3444 #: part/templates/part/part_base.html:286 -#: templates/js/translated/company.js:1083 templates/js/translated/part.js:1484 -#: templates/js/translated/part.js:1588 templates/js/translated/part.js:2262 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1483 +#: templates/js/translated/part.js:1587 templates/js/translated/part.js:2335 msgid "Units" msgstr "单位" -#: company/models.py:405 +#: company/models.py:554 msgid "Parameter units" msgstr "参数单位" -#: company/models.py:498 +#: company/models.py:647 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:504 +#: company/models.py:653 #, fuzzy #| msgid "Quantity must be greater than zero" msgid "Pack units must be greater than zero" msgstr "数量必须大于0" -#: company/models.py:520 +#: company/models.py:669 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:564 company/templates/company/company_base.html:82 -#: company/templates/company/supplier_part.html:130 order/models.py:379 -#: order/templates/order/order_base.html:140 part/bom.py:285 part/bom.py:313 -#: part/serializers.py:343 stock/templates/stock/item_base.html:225 +#: company/models.py:713 company/templates/company/company_base.html:82 +#: company/templates/company/supplier_part.html:130 order/models.py:395 +#: order/templates/order/order_base.html:136 part/bom.py:285 part/bom.py:313 +#: part/serializers.py:404 stock/templates/stock/item_base.html:225 #: templates/email/overdue_purchase_order.html:16 -#: templates/js/translated/company.js:339 -#: templates/js/translated/company.js:502 -#: templates/js/translated/company.js:1194 templates/js/translated/part.js:1741 +#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:509 +#: templates/js/translated/company.js:1615 templates/js/translated/part.js:1740 #: templates/js/translated/pricing.js:498 -#: templates/js/translated/purchase_order.js:1653 -#: templates/js/translated/table_filters.js:702 +#: templates/js/translated/purchase_order.js:1668 +#: templates/js/translated/table_filters.js:735 msgid "Supplier" msgstr "供应商" -#: company/models.py:565 +#: company/models.py:714 msgid "Select supplier" msgstr "选择供应商" -#: company/models.py:570 company/templates/company/supplier_part.html:140 -#: part/bom.py:286 part/bom.py:314 part/serializers.py:349 -#: templates/js/translated/company.js:338 templates/js/translated/part.js:1759 +#: company/models.py:719 company/templates/company/supplier_part.html:140 +#: part/bom.py:286 part/bom.py:314 part/serializers.py:410 +#: templates/js/translated/company.js:348 templates/js/translated/part.js:1758 #: templates/js/translated/pricing.js:510 -#: templates/js/translated/purchase_order.js:1813 -#: templates/js/translated/purchase_order.js:1996 +#: templates/js/translated/purchase_order.js:1825 +#: templates/js/translated/purchase_order.js:2003 msgid "SKU" msgstr "" -#: company/models.py:571 part/serializers.py:349 +#: company/models.py:720 part/serializers.py:410 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:579 +#: company/models.py:728 msgid "Select manufacturer part" msgstr "选择制造商商品" -#: company/models.py:585 +#: company/models.py:734 msgid "URL for external supplier part link" msgstr "外部供货商商品链接URL" -#: company/models.py:591 +#: company/models.py:740 msgid "Supplier part description" msgstr "供应商商品描述" -#: company/models.py:596 company/templates/company/supplier_part.html:188 -#: part/admin.py:279 part/models.py:3777 part/templates/part/upload_bom.html:59 +#: company/models.py:745 company/templates/company/supplier_part.html:188 +#: part/admin.py:279 part/models.py:3839 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_po_report_base.html:32 #: report/templates/report/inventree_return_order_report_base.html:27 #: report/templates/report/inventree_so_report_base.html:32 -#: stock/serializers.py:418 +#: stock/serializers.py:484 msgid "Note" msgstr "备注" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "base cost" msgstr "" -#: company/models.py:600 part/models.py:1913 +#: company/models.py:749 part/models.py:1924 msgid "Minimum charge (e.g. stocking fee)" msgstr "最低收费(例如库存费)" -#: company/models.py:602 company/templates/company/supplier_part.html:161 +#: company/models.py:751 company/templates/company/supplier_part.html:161 #: stock/admin.py:119 stock/models.py:701 #: stock/templates/stock/item_base.html:241 -#: templates/js/translated/company.js:1256 -#: templates/js/translated/stock.js:2160 +#: templates/js/translated/company.js:1677 +#: templates/js/translated/stock.js:2333 msgid "Packaging" msgstr "打包" -#: company/models.py:602 +#: company/models.py:751 msgid "Part packaging" msgstr "商品打包" -#: company/models.py:606 templates/js/translated/company.js:1261 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:300 -#: templates/js/translated/purchase_order.js:827 -#: templates/js/translated/purchase_order.js:1073 -#: templates/js/translated/purchase_order.js:2052 -#: templates/js/translated/purchase_order.js:2069 +#: company/models.py:755 templates/js/translated/company.js:1682 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:842 +#: templates/js/translated/purchase_order.js:1088 +#: templates/js/translated/purchase_order.js:2059 +#: templates/js/translated/purchase_order.js:2076 msgid "Pack Quantity" msgstr "" -#: company/models.py:607 +#: company/models.py:756 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:624 part/models.py:1915 +#: company/models.py:773 part/models.py:1926 msgid "multiple" msgstr "" -#: company/models.py:624 +#: company/models.py:773 msgid "Order multiple" msgstr "" -#: company/models.py:632 company/templates/company/supplier_part.html:115 +#: company/models.py:781 company/templates/company/supplier_part.html:115 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1127 templates/js/translated/build.js:2136 -#: templates/js/translated/build.js:3045 -#: templates/js/translated/model_renderers.js:205 -#: templates/js/translated/part.js:670 templates/js/translated/part.js:672 -#: templates/js/translated/part.js:677 -#: templates/js/translated/table_filters.js:286 -#: templates/js/translated/table_filters.js:481 +#: templates/js/translated/bom.js:1145 templates/js/translated/build.js:2483 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:219 +#: templates/js/translated/part.js:669 templates/js/translated/part.js:671 +#: templates/js/translated/part.js:676 +#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:510 msgid "Available" msgstr "空闲" -#: company/models.py:633 +#: company/models.py:782 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:637 +#: company/models.py:786 msgid "Availability Updated" msgstr "" -#: company/models.py:638 +#: company/models.py:787 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:99 +#: company/serializers.py:156 msgid "Default currency used for this supplier" msgstr "该公司使用的默认货币" #: company/templates/company/company_base.html:22 -#: templates/js/translated/purchase_order.js:228 +#: templates/js/translated/purchase_order.js:239 msgid "Create Purchase Order" msgstr "创建采购订单" @@ -3899,7 +3997,7 @@ msgid "Edit company information" msgstr "编辑公司信息" #: company/templates/company/company_base.html:34 -#: templates/js/translated/company.js:436 +#: templates/js/translated/company.js:443 msgid "Edit Company" msgstr "编辑公司信息" @@ -3941,17 +4039,17 @@ msgstr "从 URL 下载图片" msgid "Delete image" msgstr "" -#: company/templates/company/company_base.html:87 order/models.py:776 -#: order/models.py:1735 order/templates/order/return_order_base.html:132 +#: company/templates/company/company_base.html:87 order/models.py:792 +#: order/models.py:1751 order/templates/order/return_order_base.html:132 #: order/templates/order/sales_order_base.html:145 stock/models.py:720 -#: stock/models.py:721 stock/serializers.py:825 +#: stock/models.py:721 stock/serializers.py:942 #: stock/templates/stock/item_base.html:401 #: templates/email/overdue_sales_order.html:16 -#: templates/js/translated/company.js:494 -#: templates/js/translated/return_order.js:284 -#: templates/js/translated/sales_order.js:772 -#: templates/js/translated/stock.js:2696 -#: templates/js/translated/table_filters.js:706 +#: templates/js/translated/company.js:501 +#: templates/js/translated/return_order.js:293 +#: templates/js/translated/sales_order.js:781 +#: templates/js/translated/stock.js:2841 +#: templates/js/translated/table_filters.js:739 msgid "Customer" msgstr "客户" @@ -3959,6 +4057,13 @@ msgstr "客户" msgid "Uses default currency" msgstr "使用默认货币" +#: company/templates/company/company_base.html:119 order/models.py:279 +#: order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:182 +#: order/templates/order/sales_order_base.html:222 +msgid "Address" +msgstr "地址" + #: company/templates/company/company_base.html:126 msgid "Phone" msgstr "电话" @@ -3991,7 +4096,7 @@ 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:189 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 msgid "Supplier Parts" msgstr "供应商商品" @@ -4001,139 +4106,135 @@ msgstr "创建新的供应商商品" #: company/templates/company/detail.html:20 #: company/templates/company/manufacturer_part.html:123 -#: part/templates/part/detail.html:381 +#: part/templates/part/detail.html:356 msgid "New Supplier Part" msgstr "新建供应商商品" -#: company/templates/company/detail.html:37 -#: company/templates/company/detail.html:85 -#: part/templates/part/category.html:183 -msgid "Order parts" -msgstr "订购商品" - -#: company/templates/company/detail.html:42 -#: company/templates/company/detail.html:90 -msgid "Delete parts" -msgstr "删除商品" - -#: company/templates/company/detail.html:43 -#: company/templates/company/detail.html:91 -msgid "Delete Parts" -msgstr "删除商品" - -#: company/templates/company/detail.html:62 templates/InvenTree/search.html:105 -#: templates/js/translated/search.js:193 +#: 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:66 +#: company/templates/company/detail.html:45 msgid "Create new manufacturer part" msgstr "新建制造商商品" -#: company/templates/company/detail.html:67 part/templates/part/detail.html:411 +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 msgid "New Manufacturer Part" msgstr "新建制造商商品" -#: company/templates/company/detail.html:108 +#: company/templates/company/detail.html:65 msgid "Supplier Stock" msgstr "供货商库存" -#: company/templates/company/detail.html:118 +#: 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:108 part/templates/part/part_sidebar.html:35 -#: templates/InvenTree/index.html:275 templates/InvenTree/search.html:199 +#: 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:55 -#: templates/js/translated/search.js:247 templates/navbar.html:50 +#: templates/js/translated/search.js:205 templates/navbar.html:50 #: users/models.py:43 msgid "Purchase Orders" msgstr "采购订单" -#: company/templates/company/detail.html:122 +#: company/templates/company/detail.html:79 #: order/templates/order/purchase_orders.html:17 msgid "Create new purchase order" msgstr "新建采购订单" -#: company/templates/company/detail.html:123 +#: company/templates/company/detail.html:80 #: order/templates/order/purchase_orders.html:18 msgid "New Purchase Order" msgstr "新建采购订单" -#: company/templates/company/detail.html:146 +#: 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:131 part/templates/part/part_sidebar.html:39 -#: templates/InvenTree/index.html:307 templates/InvenTree/search.html:219 +#: 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:57 -#: templates/js/translated/search.js:261 templates/navbar.html:62 +#: templates/js/translated/search.js:219 templates/navbar.html:62 #: users/models.py:44 msgid "Sales Orders" msgstr "销售订单" -#: company/templates/company/detail.html:150 +#: company/templates/company/detail.html:105 #: order/templates/order/sales_orders.html:20 msgid "Create new sales order" msgstr "新建销售订单" -#: company/templates/company/detail.html:151 +#: company/templates/company/detail.html:106 #: order/templates/order/sales_orders.html:21 msgid "New Sales Order" msgstr "新建销售订单" -#: company/templates/company/detail.html:173 -#: templates/js/translated/build.js:1976 +#: company/templates/company/detail.html:126 msgid "Assigned Stock" msgstr "" -#: company/templates/company/detail.html:191 +#: 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:59 -#: templates/js/translated/search.js:274 templates/navbar.html:65 +#: templates/js/translated/search.js:232 templates/navbar.html:65 #: users/models.py:45 #, fuzzy #| msgid "Returned" msgid "Return Orders" msgstr "已退回" -#: company/templates/company/detail.html:195 +#: company/templates/company/detail.html:146 #: order/templates/order/return_orders.html:20 #, fuzzy #| msgid "Create new sales order" msgid "Create new return order" msgstr "新建销售订单" -#: company/templates/company/detail.html:196 +#: company/templates/company/detail.html:147 #: order/templates/order/return_orders.html:21 #, fuzzy #| msgid "New Build Order" msgid "New Return Order" msgstr "新建生产订单" -#: company/templates/company/detail.html:221 +#: company/templates/company/detail.html:168 msgid "Company Notes" msgstr "公司备注" -#: company/templates/company/detail.html:236 +#: company/templates/company/detail.html:183 #, fuzzy #| msgid "Company Notes" msgid "Company Contacts" msgstr "公司备注" -#: company/templates/company/detail.html:240 -#: company/templates/company/detail.html:241 +#: company/templates/company/detail.html:187 +#: company/templates/company/detail.html:188 #, fuzzy #| msgid "Contact" msgid "Add Contact" msgstr "联系人" +#: company/templates/company/detail.html:206 +#, fuzzy +#| msgid "Company address" +msgid "Company addresses" +msgstr "公司地址" + +#: company/templates/company/detail.html:210 +#: company/templates/company/detail.html:211 +#, fuzzy +#| msgid "Address" +msgid "Add Address" +msgstr "地址" + #: company/templates/company/index.html:8 msgid "Supplier List" msgstr "供应商列表" @@ -4145,17 +4246,17 @@ msgstr "制造商" #: company/templates/company/manufacturer_part.html:35 #: company/templates/company/supplier_part.html:228 -#: part/templates/part/detail.html:111 part/templates/part/part_base.html:85 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:85 msgid "Order part" msgstr "订购商品" #: company/templates/company/manufacturer_part.html:39 -#: templates/js/translated/company.js:1001 +#: templates/js/translated/company.js:1374 msgid "Edit manufacturer part" msgstr "编辑制造商商品" #: company/templates/company/manufacturer_part.html:43 -#: templates/js/translated/company.js:1002 +#: templates/js/translated/company.js:1375 msgid "Delete manufacturer part" msgstr "删除生产商商品" @@ -4175,40 +4276,22 @@ msgstr "" msgid "Suppliers" msgstr "供应商" -#: company/templates/company/manufacturer_part.html:136 -#: part/templates/part/detail.html:392 -msgid "Delete supplier parts" -msgstr "删除供应商商品" - -#: company/templates/company/manufacturer_part.html:136 -#: company/templates/company/manufacturer_part.html:183 -#: part/templates/part/detail.html:393 part/templates/part/detail.html:423 -#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:370 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:216 users/models.py:247 -msgid "Delete" -msgstr "删除" - -#: company/templates/company/manufacturer_part.html:166 +#: 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:208 part/templates/part/part_sidebar.html:8 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 msgid "Parameters" msgstr "参数" -#: company/templates/company/manufacturer_part.html:170 -#: part/templates/part/detail.html:213 +#: 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:12 msgid "New Parameter" msgstr "新建参数" -#: company/templates/company/manufacturer_part.html:183 -msgid "Delete parameters" -msgstr "删除参数" - -#: company/templates/company/manufacturer_part.html:226 -#: templates/js/translated/part.js:1396 +#: company/templates/company/manufacturer_part.html:206 +#: templates/js/translated/part.js:1395 msgid "Add Parameter" msgstr "添加参数" @@ -4234,23 +4317,30 @@ msgstr "" msgid "Contacts" msgstr "联系人" +#: company/templates/company/sidebar.html:35 +#, fuzzy +#| msgid "Address" +msgid "Addresses" +msgstr "地址" + #: company/templates/company/supplier_part.html:7 #: company/templates/company/supplier_part.html:24 stock/models.py:684 #: stock/templates/stock/item_base.html:234 -#: templates/js/translated/company.js:1210 -#: templates/js/translated/purchase_order.js:747 -#: templates/js/translated/stock.js:2016 +#: templates/js/translated/company.js:1631 +#: templates/js/translated/purchase_order.js:758 +#: templates/js/translated/stock.js:2189 msgid "Supplier Part" msgstr "供应商商品" #: company/templates/company/supplier_part.html:51 +#: templates/js/translated/company.js:1557 msgid "Supplier part actions" msgstr "" #: company/templates/company/supplier_part.html:56 #: company/templates/company/supplier_part.html:57 #: company/templates/company/supplier_part.html:229 -#: part/templates/part/detail.html:112 +#: part/templates/part/detail.html:110 msgid "Order Part" msgstr "订购商品" @@ -4261,13 +4351,13 @@ msgstr "" #: company/templates/company/supplier_part.html:64 #: company/templates/company/supplier_part.html:65 -#: templates/js/translated/company.js:283 +#: templates/js/translated/company.js:293 msgid "Edit Supplier Part" msgstr "编辑供应商商品" #: company/templates/company/supplier_part.html:69 #: company/templates/company/supplier_part.html:70 -#: templates/js/translated/company.js:258 +#: templates/js/translated/company.js:268 msgid "Duplicate Supplier Part" msgstr "" @@ -4294,7 +4384,7 @@ msgstr "" #: company/templates/company/supplier_part.html:211 #: part/templates/part/detail.html:25 stock/templates/stock/location.html:198 -#: templates/js/translated/stock.js:504 +#: templates/js/translated/stock.js:503 msgid "New Stock Item" msgstr "" @@ -4302,37 +4392,37 @@ msgstr "" msgid "Supplier Part Orders" msgstr "供应商商品订单" -#: company/templates/company/supplier_part.html:249 +#: company/templates/company/supplier_part.html:247 msgid "Pricing Information" msgstr "价格信息" -#: company/templates/company/supplier_part.html:254 -#: templates/js/translated/company.js:387 +#: company/templates/company/supplier_part.html:252 +#: templates/js/translated/company.js:397 #: templates/js/translated/pricing.js:684 msgid "Add Price Break" msgstr "" -#: company/templates/company/supplier_part.html:281 +#: company/templates/company/supplier_part.html:277 msgid "Supplier Part QR Code" msgstr "" -#: company/templates/company/supplier_part.html:292 +#: company/templates/company/supplier_part.html:288 msgid "Link Barcode to Supplier Part" msgstr "" -#: company/templates/company/supplier_part.html:365 +#: company/templates/company/supplier_part.html:360 msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 part/tasks.py:293 -#: part/templates/part/category.html:199 +#: part/templates/part/category.html:182 #: part/templates/part/category_sidebar.html:17 stock/admin.py:47 -#: stock/templates/stock/location.html:168 +#: stock/serializers.py:662 stock/templates/stock/location.html:168 #: stock/templates/stock/location.html:182 #: stock/templates/stock/location.html:194 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1034 -#: templates/js/translated/search.js:214 templates/js/translated/stock.js:2514 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1033 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2659 #: users/models.py:41 msgid "Stock Items" msgstr "库存项" @@ -4358,7 +4448,7 @@ msgstr "客户信息" msgid "New Customer" msgstr "新建客户" -#: company/views.py:52 templates/js/translated/search.js:234 +#: company/views.py:52 templates/js/translated/search.js:192 msgid "Companies" msgstr "公司" @@ -4366,79 +4456,74 @@ msgstr "公司" msgid "New Company" msgstr "新建公司信息" -#: label/models.py:104 +#: label/models.py:112 msgid "Label name" msgstr "标签名称" -#: label/models.py:111 +#: label/models.py:119 msgid "Label description" msgstr "标签说明" -#: label/models.py:118 +#: label/models.py:126 msgid "Label" msgstr "标签" -#: label/models.py:119 +#: label/models.py:127 msgid "Label template file" msgstr "标签模板文件" -#: label/models.py:125 report/models.py:273 +#: label/models.py:133 report/models.py:272 msgid "Enabled" msgstr "已启用" -#: label/models.py:126 +#: label/models.py:134 msgid "Label template is enabled" msgstr "标签模板已启用" -#: label/models.py:131 +#: label/models.py:139 msgid "Width [mm]" msgstr "宽度 [mm]" -#: label/models.py:132 +#: label/models.py:140 msgid "Label width, specified in mm" msgstr "标注宽度,以毫米为单位。" -#: label/models.py:138 +#: label/models.py:146 msgid "Height [mm]" msgstr "高度 [mm]" -#: label/models.py:139 +#: label/models.py:147 msgid "Label height, specified in mm" msgstr "标注高度,以毫米为单位。" -#: label/models.py:145 report/models.py:266 +#: label/models.py:153 report/models.py:265 msgid "Filename Pattern" msgstr "文件名样式" -#: label/models.py:146 +#: label/models.py:154 msgid "Pattern for generating label filenames" msgstr "" -#: label/models.py:242 -msgid "Query filters (comma-separated list of key=value pairs)," +#: label/models.py:250 label/models.py:291 label/models.py:319 +#: label/models.py:355 +#, fuzzy +#| msgid "Query filters (comma-separated list of key=value pairs)," +msgid "Query filters (comma-separated list of key=value pairs)" msgstr "查询筛选器 (逗号分隔的键值对列表)" -#: label/models.py:243 label/models.py:284 label/models.py:312 -#: report/models.py:294 report/models.py:452 report/models.py:490 -#: report/models.py:528 +#: label/models.py:251 label/models.py:292 label/models.py:320 +#: label/models.py:356 report/models.py:293 report/models.py:440 +#: report/models.py:478 report/models.py:516 msgid "Filters" msgstr "筛选器" -#: label/models.py:283 -msgid "Query filters (comma-separated list of key=value pairs" -msgstr "查询筛选器 (逗号分隔的键值对列表" - -#: label/models.py:311 -msgid "Part query filters (comma-separated value of key=value pairs)" -msgstr "商品查询筛选器 (逗号分隔的键值对列表)" - #: label/templates/label/part/part_label.html:31 #: label/templates/label/stockitem/qr.html:21 #: label/templates/label/stocklocation/qr.html:21 #: templates/allauth_2fa/setup.html:18 #, fuzzy #| msgid "Part QR Code" -msgid "QC Code" +msgid "QR Code" msgstr "商品二维码" #: label/templates/label/part/part_label_code128.html:31 @@ -4447,601 +4532,607 @@ msgstr "商品二维码" msgid "QR code" msgstr "" -#: order/admin.py:30 order/models.py:70 +#: order/admin.py:30 order/models.py:73 #: report/templates/report/inventree_po_report_base.html:31 #: report/templates/report/inventree_so_report_base.html:31 #: templates/js/translated/order.js:327 -#: templates/js/translated/purchase_order.js:2093 -#: templates/js/translated/sales_order.js:1827 +#: templates/js/translated/purchase_order.js:2100 +#: templates/js/translated/sales_order.js:1836 msgid "Total Price" msgstr "" -#: order/api.py:239 +#: order/api.py:242 msgid "No matching purchase order found" msgstr "" -#: order/api.py:1449 order/models.py:1175 order/models.py:1259 +#: order/api.py:1452 order/models.py:1191 order/models.py:1275 #: order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_po_report_base.html:14 #: stock/templates/stock/item_base.html:177 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1718 templates/js/translated/pricing.js:790 -#: templates/js/translated/purchase_order.js:154 -#: templates/js/translated/purchase_order.js:748 -#: templates/js/translated/purchase_order.js:1637 -#: templates/js/translated/stock.js:1996 templates/js/translated/stock.js:2644 +#: templates/js/translated/part.js:1717 templates/js/translated/pricing.js:790 +#: templates/js/translated/purchase_order.js:165 +#: templates/js/translated/purchase_order.js:759 +#: templates/js/translated/purchase_order.js:1652 +#: templates/js/translated/stock.js:2169 templates/js/translated/stock.js:2789 msgid "Purchase Order" msgstr "" -#: order/api.py:1453 order/models.py:1906 order/models.py:1952 +#: order/api.py:1456 order/models.py:1922 order/models.py:1968 #: order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report_base.html:13 -#: templates/js/translated/return_order.js:269 -#: templates/js/translated/stock.js:2678 +#: templates/js/translated/return_order.js:278 +#: templates/js/translated/stock.js:2823 #, fuzzy #| msgid "Returned" msgid "Return Order" msgstr "已退回" -#: order/api.py:1455 templates/js/translated/sales_order.js:1030 +#: order/api.py:1458 templates/js/translated/sales_order.js:1039 msgid "Unknown" msgstr "" -#: order/models.py:71 +#: order/models.py:74 #, fuzzy #| msgid "User or group responsible for this order" msgid "Total price for this order" msgstr "负责此订单的用户或群组" -#: order/models.py:76 order/serializers.py:48 +#: order/models.py:79 order/serializers.py:50 #, fuzzy #| msgid "Currency" msgid "Order Currency" msgstr "货币" -#: order/models.py:78 order/serializers.py:49 +#: order/models.py:81 order/serializers.py:51 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:207 +#: order/models.py:210 #, fuzzy #| msgid "Build output does not match the parent build" msgid "Contact does not match selected company" msgstr "生产产出与对应生产不匹配" -#: order/models.py:229 +#: order/models.py:232 #, fuzzy #| msgid "Description (optional)" msgid "Order description (optional)" msgstr "描述 (可选)" -#: order/models.py:231 +#: order/models.py:237 #, fuzzy #| msgid "User or group responsible for this order" msgid "Select project code for this order" msgstr "负责此订单的用户或群组" -#: order/models.py:233 order/models.py:1091 order/models.py:1451 +#: order/models.py:240 order/models.py:1107 order/models.py:1467 msgid "Link to external page" msgstr "" -#: order/models.py:238 +#: order/models.py:245 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:247 +#: order/models.py:254 msgid "Created By" msgstr "" -#: order/models.py:254 +#: order/models.py:261 msgid "User or group responsible for this order" msgstr "负责此订单的用户或群组" -#: order/models.py:264 +#: order/models.py:271 #, fuzzy #| msgid "Priority of this build order" msgid "Point of contact for this order" msgstr "此构建订单的优先级" -#: order/models.py:357 order/models.py:763 +#: order/models.py:280 +#, fuzzy +#| msgid "User or group responsible for this order" +msgid "Company address for this order" +msgstr "负责此订单的用户或群组" + +#: order/models.py:373 order/models.py:779 msgid "Order reference" msgstr "" -#: order/models.py:365 order/models.py:788 +#: order/models.py:381 order/models.py:804 msgid "Purchase order status" msgstr "" -#: order/models.py:380 +#: order/models.py:396 msgid "Company from which the items are being ordered" msgstr "订购该商品的公司" -#: order/models.py:388 order/templates/order/order_base.html:152 -#: templates/js/translated/purchase_order.js:1662 +#: order/models.py:404 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1677 msgid "Supplier Reference" msgstr "" -#: order/models.py:388 +#: order/models.py:404 msgid "Supplier order reference code" msgstr "" -#: order/models.py:395 +#: order/models.py:411 msgid "received by" msgstr "" -#: order/models.py:400 order/models.py:1758 +#: order/models.py:416 order/models.py:1774 msgid "Issue Date" msgstr "" -#: order/models.py:401 order/models.py:1759 +#: order/models.py:417 order/models.py:1775 msgid "Date order was issued" msgstr "" -#: order/models.py:407 order/models.py:1765 +#: order/models.py:423 order/models.py:1781 msgid "Date order was completed" msgstr "" -#: order/models.py:442 +#: order/models.py:458 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:603 +#: order/models.py:619 msgid "Quantity must be a positive number" msgstr "数量必须大于0" -#: order/models.py:777 +#: order/models.py:793 msgid "Company to which the items are being sold" msgstr "向其出售该商品的公司" -#: order/models.py:796 order/models.py:1752 +#: order/models.py:812 order/models.py:1768 msgid "Customer Reference " msgstr "" -#: order/models.py:796 order/models.py:1753 +#: order/models.py:812 order/models.py:1769 msgid "Customer order reference code" msgstr "" -#: order/models.py:798 order/models.py:1405 -#: templates/js/translated/sales_order.js:831 -#: templates/js/translated/sales_order.js:1012 +#: order/models.py:814 order/models.py:1421 +#: templates/js/translated/sales_order.js:840 +#: templates/js/translated/sales_order.js:1021 msgid "Shipment Date" msgstr "" -#: order/models.py:805 +#: order/models.py:821 msgid "shipped by" msgstr "" -#: order/models.py:854 +#: order/models.py:870 msgid "Order cannot be completed as no parts have been assigned" msgstr "" -#: order/models.py:858 +#: order/models.py:874 #, fuzzy #| msgid "Build Order is ready to mark as completed" msgid "Only an open order can be marked as complete" msgstr "构建订单已准备好标记为已完成" -#: order/models.py:861 templates/js/translated/sales_order.js:491 +#: order/models.py:877 templates/js/translated/sales_order.js:503 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:864 +#: order/models.py:880 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1071 +#: order/models.py:1087 msgid "Item quantity" msgstr "" -#: order/models.py:1084 +#: order/models.py:1100 msgid "Line item reference" msgstr "" -#: order/models.py:1086 +#: order/models.py:1102 msgid "Line item notes" msgstr "" -#: order/models.py:1097 +#: order/models.py:1113 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1115 +#: order/models.py:1131 #, fuzzy #| msgid "Description (optional)" msgid "Line item description (optional)" msgstr "描述 (可选)" -#: order/models.py:1120 +#: order/models.py:1136 msgid "Context" msgstr "" -#: order/models.py:1121 +#: order/models.py:1137 msgid "Additional context for this line" msgstr "" -#: order/models.py:1130 +#: order/models.py:1146 msgid "Unit price" msgstr "" -#: order/models.py:1160 +#: order/models.py:1176 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1168 +#: order/models.py:1184 msgid "deleted" msgstr "" -#: order/models.py:1174 order/models.py:1259 order/models.py:1300 -#: order/models.py:1399 order/models.py:1548 order/models.py:1905 -#: order/models.py:1952 templates/js/translated/sales_order.js:1474 +#: order/models.py:1190 order/models.py:1275 order/models.py:1316 +#: order/models.py:1415 order/models.py:1564 order/models.py:1921 +#: order/models.py:1968 templates/js/translated/sales_order.js:1483 msgid "Order" msgstr "" -#: order/models.py:1193 +#: order/models.py:1209 msgid "Supplier part" msgstr "供应商商品" -#: order/models.py:1200 order/templates/order/order_base.html:200 -#: templates/js/translated/part.js:1841 templates/js/translated/part.js:1872 -#: templates/js/translated/purchase_order.js:1276 -#: templates/js/translated/purchase_order.js:2137 -#: templates/js/translated/return_order.js:748 -#: templates/js/translated/table_filters.js:90 -#: templates/js/translated/table_filters.js:504 +#: order/models.py:1216 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1840 templates/js/translated/part.js:1871 +#: templates/js/translated/purchase_order.js:1291 +#: templates/js/translated/purchase_order.js:2144 +#: templates/js/translated/return_order.js:757 +#: templates/js/translated/table_filters.js:96 +#: templates/js/translated/table_filters.js:537 msgid "Received" msgstr "" -#: order/models.py:1201 +#: order/models.py:1217 msgid "Number of items received" msgstr "" -#: order/models.py:1208 stock/models.py:823 stock/serializers.py:252 +#: order/models.py:1224 stock/models.py:823 stock/serializers.py:314 #: stock/templates/stock/item_base.html:184 -#: templates/js/translated/stock.js:2047 +#: templates/js/translated/stock.js:2220 msgid "Purchase Price" msgstr "采购价格" -#: order/models.py:1209 +#: order/models.py:1225 msgid "Unit purchase price" msgstr "" -#: order/models.py:1222 +#: order/models.py:1238 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1288 +#: order/models.py:1304 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1293 +#: order/models.py:1309 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1319 part/templates/part/part_pricing.html:107 +#: order/models.py:1335 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:128 templates/js/translated/pricing.js:943 msgid "Sale Price" msgstr "销售价格" -#: order/models.py:1320 +#: order/models.py:1336 msgid "Unit sale price" msgstr "" -#: order/models.py:1330 +#: order/models.py:1346 msgid "Shipped quantity" msgstr "" -#: order/models.py:1406 +#: order/models.py:1422 msgid "Date of shipment" msgstr "" -#: order/models.py:1411 templates/js/translated/sales_order.js:1024 +#: order/models.py:1427 templates/js/translated/sales_order.js:1033 msgid "Delivery Date" msgstr "" -#: order/models.py:1412 +#: order/models.py:1428 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1419 +#: order/models.py:1435 msgid "Checked By" msgstr "" -#: order/models.py:1420 +#: order/models.py:1436 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1427 order/models.py:1624 order/serializers.py:1247 -#: order/serializers.py:1375 templates/js/translated/model_renderers.js:415 +#: order/models.py:1443 order/models.py:1640 order/serializers.py:1254 +#: order/serializers.py:1382 templates/js/translated/model_renderers.js:429 msgid "Shipment" msgstr "" -#: order/models.py:1428 +#: order/models.py:1444 msgid "Shipment number" msgstr "" -#: order/models.py:1436 +#: order/models.py:1452 msgid "Tracking Number" msgstr "" -#: order/models.py:1437 +#: order/models.py:1453 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1444 +#: order/models.py:1460 msgid "Invoice Number" msgstr "" -#: order/models.py:1445 +#: order/models.py:1461 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1467 +#: order/models.py:1483 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1470 +#: order/models.py:1486 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1583 order/models.py:1585 +#: order/models.py:1599 order/models.py:1601 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1589 +#: order/models.py:1605 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1591 +#: order/models.py:1607 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1594 +#: order/models.py:1610 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1604 order/serializers.py:1109 +#: order/models.py:1620 order/serializers.py:1116 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1607 +#: order/models.py:1623 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1608 +#: order/models.py:1624 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1616 +#: order/models.py:1632 msgid "Line" msgstr "" -#: order/models.py:1625 +#: order/models.py:1641 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1638 order/models.py:1913 -#: templates/js/translated/return_order.js:706 +#: order/models.py:1654 order/models.py:1929 +#: templates/js/translated/return_order.js:715 msgid "Item" msgstr "" -#: order/models.py:1639 +#: order/models.py:1655 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1642 +#: order/models.py:1658 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:1722 +#: order/models.py:1738 #, fuzzy #| msgid "Build Order Reference" msgid "Return Order reference" msgstr "相关生产订单" -#: order/models.py:1736 +#: order/models.py:1752 #, fuzzy #| msgid "Company from which the items are being ordered" msgid "Company from which items are being returned" msgstr "订购该商品的公司" -#: order/models.py:1747 +#: order/models.py:1763 msgid "Return order status" msgstr "" -#: order/models.py:1898 +#: order/models.py:1914 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:1914 +#: order/models.py:1930 #, fuzzy #| msgid "Returned from customer" msgid "Select item to return from customer" msgstr "从客户退货" -#: order/models.py:1919 +#: order/models.py:1935 msgid "Received Date" msgstr "" -#: order/models.py:1920 +#: order/models.py:1936 msgid "The date this this return item was received" msgstr "" -#: order/models.py:1931 templates/js/translated/return_order.js:717 -#: templates/js/translated/table_filters.js:93 +#: order/models.py:1947 templates/js/translated/return_order.js:726 +#: templates/js/translated/table_filters.js:99 msgid "Outcome" msgstr "" -#: order/models.py:1931 +#: order/models.py:1947 msgid "Outcome for this line item" msgstr "" -#: order/models.py:1937 +#: order/models.py:1953 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:246 +#: order/serializers.py:253 msgid "Order cannot be cancelled" msgstr "无法取消订单" -#: order/serializers.py:261 order/serializers.py:1127 +#: order/serializers.py:268 order/serializers.py:1134 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:272 order/serializers.py:1138 +#: order/serializers.py:279 order/serializers.py:1145 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:385 +#: order/serializers.py:392 msgid "Order is not open" msgstr "" -#: order/serializers.py:403 +#: order/serializers.py:410 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:421 +#: order/serializers.py:428 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:426 +#: order/serializers.py:433 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:432 +#: order/serializers.py:439 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:433 +#: order/serializers.py:440 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:471 order/serializers.py:1215 +#: order/serializers.py:478 order/serializers.py:1222 msgid "Line Item" msgstr "" -#: order/serializers.py:477 +#: order/serializers.py:484 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:487 order/serializers.py:606 order/serializers.py:1588 +#: order/serializers.py:494 order/serializers.py:613 order/serializers.py:1595 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:506 templates/js/translated/purchase_order.js:1100 +#: order/serializers.py:513 templates/js/translated/purchase_order.js:1115 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:514 templates/js/translated/purchase_order.js:1124 +#: order/serializers.py:521 templates/js/translated/purchase_order.js:1139 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:527 templates/js/translated/barcode.js:52 +#: order/serializers.py:534 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "条形码" -#: order/serializers.py:528 +#: order/serializers.py:535 #, fuzzy #| msgid "Scan Barcode" msgid "Scanned barcode" msgstr "扫描条形码" -#: order/serializers.py:544 +#: order/serializers.py:551 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:568 +#: order/serializers.py:575 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:622 order/serializers.py:1603 +#: order/serializers.py:629 order/serializers.py:1610 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:639 +#: order/serializers.py:646 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:650 +#: order/serializers.py:657 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:949 +#: order/serializers.py:956 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1006 +#: order/serializers.py:1013 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1070 order/serializers.py:1224 +#: order/serializers.py:1077 order/serializers.py:1231 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1092 +#: order/serializers.py:1099 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1237 +#: order/serializers.py:1244 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1259 order/serializers.py:1383 +#: order/serializers.py:1266 order/serializers.py:1390 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1262 order/serializers.py:1386 +#: order/serializers.py:1269 order/serializers.py:1393 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1316 +#: order/serializers.py:1323 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1326 +#: order/serializers.py:1333 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1554 +#: order/serializers.py:1561 msgid "Return order line item" msgstr "" -#: order/serializers.py:1561 +#: order/serializers.py:1568 #, fuzzy #| msgid "Build output does not match Build Order" msgid "Line item does not match return order" msgstr "生产产出与订单不匹配" -#: order/serializers.py:1564 +#: order/serializers.py:1571 #, fuzzy #| msgid "This build output has already been completed" msgid "Line item has already been received" msgstr "此生产产出已经完成" -#: order/serializers.py:1596 +#: order/serializers.py:1603 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1677 +#: order/serializers.py:1684 #, fuzzy #| msgid "Uses default currency" msgid "Line price currency" msgstr "使用默认货币" -#: order/tasks.py:26 +#: order/tasks.py:27 msgid "Overdue Purchase Order" msgstr "" -#: order/tasks.py:31 +#: order/tasks.py:32 #, python-brace-format msgid "Purchase order {po} is now overdue" msgstr "" -#: order/tasks.py:89 +#: order/tasks.py:90 msgid "Overdue Sales Order" msgstr "" -#: order/tasks.py:94 +#: order/tasks.py:95 #, python-brace-format msgid "Sales order {so} is now overdue" msgstr "" @@ -5090,86 +5181,78 @@ msgid "Issue Order" msgstr "生产订单" #: order/templates/order/order_base.html:83 -msgid "Receive items" -msgstr "" - -#: order/templates/order/order_base.html:85 -msgid "Receive Items" -msgstr "" - -#: order/templates/order/order_base.html:87 #: order/templates/order/return_order_base.html:87 msgid "Mark order as complete" msgstr "" -#: order/templates/order/order_base.html:88 +#: order/templates/order/order_base.html:84 #: order/templates/order/return_order_base.html:88 #: order/templates/order/sales_order_base.html:94 msgid "Complete Order" msgstr "" -#: order/templates/order/order_base.html:95 +#: order/templates/order/order_base.html:91 #, fuzzy #| msgid "Supplier part" msgid "Supplier part thumbnail" msgstr "供应商商品" -#: order/templates/order/order_base.html:110 +#: order/templates/order/order_base.html:106 #: order/templates/order/return_order_base.html:102 #: order/templates/order/sales_order_base.html:107 msgid "Order Reference" msgstr "" -#: order/templates/order/order_base.html:115 +#: order/templates/order/order_base.html:111 #: order/templates/order/return_order_base.html:107 #: order/templates/order/sales_order_base.html:112 msgid "Order Description" msgstr "" -#: order/templates/order/order_base.html:122 +#: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:114 #: order/templates/order/sales_order_base.html:119 msgid "Order Status" msgstr "" -#: order/templates/order/order_base.html:145 +#: order/templates/order/order_base.html:141 msgid "No suppplier information available" msgstr "" -#: order/templates/order/order_base.html:158 +#: order/templates/order/order_base.html:154 #: order/templates/order/sales_order_base.html:158 msgid "Completed Line Items" msgstr "" -#: order/templates/order/order_base.html:164 +#: order/templates/order/order_base.html:160 #: order/templates/order/sales_order_base.html:164 #: order/templates/order/sales_order_base.html:174 msgid "Incomplete" msgstr "" -#: order/templates/order/order_base.html:183 +#: order/templates/order/order_base.html:179 #: order/templates/order/return_order_base.html:158 #: report/templates/report/inventree_build_order_base.html:121 msgid "Issued" msgstr "" -#: order/templates/order/order_base.html:221 +#: order/templates/order/order_base.html:224 msgid "Total cost" msgstr "" -#: order/templates/order/order_base.html:225 -#: order/templates/order/return_order_base.html:193 -#: order/templates/order/sales_order_base.html:233 +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:200 +#: order/templates/order/sales_order_base.html:240 msgid "Total cost could not be calculated" msgstr "" -#: order/templates/order/order_base.html:331 +#: order/templates/order/order_base.html:318 #, fuzzy #| msgid "Purchase Orders" msgid "Purchase Order QR Code" msgstr "采购订单" -#: order/templates/order/order_base.html:343 +#: order/templates/order/order_base.html:330 #, fuzzy #| msgid "Create Purchase Order" msgid "Link Barcode to Purchase Order" @@ -5224,13 +5307,13 @@ msgstr "" #: 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:132 templates/js/translated/build.js:512 -#: templates/js/translated/build.js:2348 -#: templates/js/translated/purchase_order.js:692 -#: templates/js/translated/purchase_order.js:1206 -#: templates/js/translated/return_order.js:494 -#: templates/js/translated/sales_order.js:1097 -#: templates/js/translated/stock.js:681 templates/js/translated/stock.js:850 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:518 +#: templates/js/translated/build.js:1551 +#: templates/js/translated/purchase_order.js:703 +#: templates/js/translated/purchase_order.js:1221 +#: templates/js/translated/return_order.js:503 +#: templates/js/translated/sales_order.js:1106 +#: templates/js/translated/stock.js:680 templates/js/translated/stock.js:849 #: templates/patterns/wizard/match_fields.html:70 msgid "Remove row" msgstr "移除行" @@ -5291,9 +5374,9 @@ 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:419 -#: templates/js/translated/return_order.js:447 -#: templates/js/translated/sales_order.js:222 +#: templates/js/translated/purchase_order.js:430 +#: templates/js/translated/return_order.js:456 +#: templates/js/translated/sales_order.js:234 msgid "Add Line Item" msgstr "" @@ -5304,32 +5387,25 @@ msgstr "" msgid "Receive Line Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:49 #: order/templates/order/purchase_order_detail.html:50 -#, fuzzy -#| msgid "Delete parameters" -msgid "Delete Line Items" -msgstr "删除参数" - -#: order/templates/order/purchase_order_detail.html:66 -#: order/templates/order/return_order_detail.html:47 -#: order/templates/order/sales_order_detail.html:43 +#: 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:72 -#: order/templates/order/return_order_detail.html:53 -#: order/templates/order/sales_order_detail.html:49 +#: 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:92 +#: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" msgstr "" -#: order/templates/order/purchase_order_detail.html:117 -#: order/templates/order/return_order_detail.html:89 -#: order/templates/order/sales_order_detail.html:149 +#: 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 "" @@ -5351,31 +5427,31 @@ msgstr "" #: order/templates/order/return_order_base.html:139 #: order/templates/order/sales_order_base.html:152 -#: templates/js/translated/return_order.js:297 -#: templates/js/translated/sales_order.js:785 +#: templates/js/translated/return_order.js:306 +#: templates/js/translated/sales_order.js:794 msgid "Customer Reference" msgstr "" -#: order/templates/order/return_order_base.html:189 -#: order/templates/order/sales_order_base.html:229 +#: order/templates/order/return_order_base.html:196 +#: order/templates/order/sales_order_base.html:236 #: 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:1046 -#: templates/js/translated/purchase_order.js:1712 -#: templates/js/translated/return_order.js:369 -#: templates/js/translated/sales_order.js:843 +#: templates/js/translated/part.js:1045 +#: templates/js/translated/purchase_order.js:1727 +#: templates/js/translated/return_order.js:378 +#: templates/js/translated/sales_order.js:852 msgid "Total Cost" msgstr "" -#: order/templates/order/return_order_base.html:257 +#: order/templates/order/return_order_base.html:264 #, fuzzy #| msgid "Returned" msgid "Return Order QR Code" msgstr "已退回" -#: order/templates/order/return_order_base.html:269 +#: order/templates/order/return_order_base.html:276 #, fuzzy #| msgid "Create Purchase Order" msgid "Link Barcode to Return Order" @@ -5399,7 +5475,7 @@ msgid "Ship Items" msgstr "匹配项" #: order/templates/order/sales_order_base.html:93 -#: templates/js/translated/sales_order.js:469 +#: templates/js/translated/sales_order.js:481 msgid "Complete Sales Order" msgstr "" @@ -5408,18 +5484,18 @@ msgid "This Sales Order has not been fully allocated" msgstr "" #: order/templates/order/sales_order_base.html:170 -#: order/templates/order/sales_order_detail.html:105 +#: 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:306 +#: order/templates/order/sales_order_base.html:313 #, fuzzy #| msgid "Sales Order" msgid "Sales Order QR Code" msgstr "销售订单" -#: order/templates/order/sales_order_base.html:318 +#: order/templates/order/sales_order_base.html:325 #, fuzzy #| msgid "New Sales Order" msgid "Link Barcode to Sales Order" @@ -5429,18 +5505,17 @@ msgstr "新建销售订单" msgid "Sales Order Items" msgstr "" -#: order/templates/order/sales_order_detail.html:71 -#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:332 +#: 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:75 -#: templates/attachment_table.html:6 templates/js/translated/bom.js:1236 -#: templates/js/translated/build.js:2249 +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1256 templates/js/translated/filters.js:296 msgid "Actions" msgstr "" -#: order/templates/order/sales_order_detail.html:84 +#: order/templates/order/sales_order_detail.html:80 msgid "New Shipment" msgstr "" @@ -5466,12 +5541,12 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:33 part/admin.py:273 part/models.py:3643 part/tasks.py:288 +#: part/admin.py:33 part/admin.py:273 part/models.py:3710 part/tasks.py:288 #: stock/admin.py:101 msgid "Part ID" msgstr "商品ID" -#: part/admin.py:34 part/admin.py:275 part/models.py:3647 part/tasks.py:289 +#: part/admin.py:34 part/admin.py:275 part/models.py:3714 part/tasks.py:289 #: stock/admin.py:102 msgid "Part Name" msgstr "" @@ -5480,19 +5555,19 @@ msgstr "" msgid "Part Description" msgstr "" -#: part/admin.py:36 part/models.py:888 part/templates/part/part_base.html:271 -#: templates/js/translated/part.js:1200 templates/js/translated/part.js:2233 -#: templates/js/translated/stock.js:1795 +#: part/admin.py:36 part/models.py:893 part/templates/part/part_base.html:271 +#: templates/js/translated/part.js:1199 templates/js/translated/part.js:2306 +#: templates/js/translated/stock.js:1968 msgid "IPN" msgstr "" -#: part/admin.py:37 part/models.py:895 part/templates/part/part_base.html:279 -#: report/models.py:179 templates/js/translated/part.js:1205 -#: templates/js/translated/part.js:2239 +#: part/admin.py:37 part/models.py:900 part/templates/part/part_base.html:279 +#: report/models.py:178 templates/js/translated/part.js:1204 +#: templates/js/translated/part.js:2312 msgid "Revision" msgstr "" -#: part/admin.py:38 part/admin.py:198 part/models.py:874 +#: part/admin.py:38 part/admin.py:198 part/models.py:879 #: part/templates/part/category.html:93 part/templates/part/part_base.html:300 msgid "Keywords" msgstr "关键词" @@ -5513,24 +5588,24 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:46 part/models.py:863 part/templates/part/part_base.html:179 +#: part/admin.py:46 part/models.py:868 part/templates/part/part_base.html:179 msgid "Variant Of" msgstr "" -#: part/admin.py:47 part/models.py:979 part/templates/part/part_base.html:205 +#: part/admin.py:47 part/models.py:984 part/templates/part/part_base.html:205 msgid "Minimum Stock" msgstr "最低库存" #: part/admin.py:61 part/templates/part/part_base.html:199 -#: templates/js/translated/company.js:1299 -#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/company.js:1720 +#: templates/js/translated/table_filters.js:307 msgid "In Stock" msgstr "" #: part/admin.py:62 part/bom.py:178 part/templates/part/part_base.html:212 -#: templates/js/translated/bom.js:1167 templates/js/translated/build.js:2191 -#: templates/js/translated/part.js:687 templates/js/translated/part.js:2123 -#: templates/js/translated/table_filters.js:140 +#: templates/js/translated/bom.js:1187 templates/js/translated/build.js:2534 +#: templates/js/translated/part.js:686 templates/js/translated/part.js:2118 +#: templates/js/translated/table_filters.js:146 msgid "On Order" msgstr "" @@ -5538,23 +5613,16 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:64 templates/js/translated/build.js:2203 -#: templates/js/translated/build.js:2465 templates/js/translated/build.js:3052 -#: templates/js/translated/sales_order.js:1906 -#: templates/js/translated/table_filters.js:477 -msgid "Allocated" -msgstr "" - #: part/admin.py:65 part/templates/part/part_base.html:243 stock/admin.py:124 -#: templates/js/translated/part.js:692 templates/js/translated/part.js:2127 +#: templates/js/translated/part.js:691 templates/js/translated/part.js:2122 msgid "Building" msgstr "" -#: part/admin.py:66 part/models.py:2924 templates/js/translated/part.js:943 +#: part/admin.py:66 part/models.py:2967 templates/js/translated/part.js:942 msgid "Minimum Cost" msgstr "" -#: part/admin.py:67 part/models.py:2930 templates/js/translated/part.js:953 +#: part/admin.py:67 part/models.py:2973 templates/js/translated/part.js:952 msgid "Maximum Cost" msgstr "" @@ -5571,13 +5639,13 @@ msgstr "" msgid "Category Path" msgstr "类别路径" -#: part/admin.py:202 part/models.py:391 part/templates/part/cat_link.html:3 -#: part/templates/part/category.html:23 part/templates/part/category.html:140 -#: part/templates/part/category.html:160 +#: part/admin.py:202 part/models.py:393 part/serializers.py:318 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:140 part/templates/part/category.html:160 #: part/templates/part/category_sidebar.html:9 -#: templates/InvenTree/index.html:86 templates/InvenTree/search.html:84 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:45 -#: templates/js/translated/part.js:2754 templates/js/translated/search.js:172 +#: templates/js/translated/part.js:2736 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:38 msgid "Parts" msgstr "商品" @@ -5594,7 +5662,7 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:274 part/models.py:3651 +#: part/admin.py:274 part/models.py:3718 msgid "Part IPN" msgstr "" @@ -5608,35 +5676,35 @@ msgstr "" msgid "Maximum Price" msgstr "" -#: part/api.py:497 +#: part/api.py:501 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:517 +#: part/api.py:521 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:535 +#: part/api.py:539 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:621 +#: part/api.py:625 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:769 +#: part/api.py:773 msgid "Valid" msgstr "" -#: part/api.py:770 +#: part/api.py:774 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:776 +#: part/api.py:780 msgid "This option must be selected" msgstr "" -#: part/bom.py:175 part/models.py:126 part/models.py:922 +#: part/bom.py:175 part/models.py:128 part/models.py:927 #: part/templates/part/category.html:115 part/templates/part/part_base.html:369 msgid "Default Location" msgstr "默认仓储地点" @@ -5646,7 +5714,7 @@ msgid "Total Stock" msgstr "" #: part/bom.py:177 part/templates/part/part_base.html:194 -#: templates/js/translated/sales_order.js:1873 +#: templates/js/translated/sales_order.js:1882 msgid "Available Stock" msgstr "可用库存" @@ -5654,925 +5722,925 @@ msgstr "可用库存" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:74 part/models.py:3592 part/templates/part/category.html:16 +#: part/models.py:76 part/models.py:3659 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "商品类别" -#: part/models.py:75 part/templates/part/category.html:135 -#: templates/InvenTree/search.html:97 templates/js/translated/search.js:200 +#: part/models.py:77 part/templates/part/category.html:135 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 #: users/models.py:37 msgid "Part Categories" msgstr "商品类别" -#: part/models.py:127 +#: part/models.py:129 msgid "Default location for parts in this category" msgstr "此类别商品的默认仓储地点" -#: part/models.py:132 stock/models.py:124 templates/js/translated/stock.js:2520 -#: templates/js/translated/table_filters.js:209 -#: templates/js/translated/table_filters.js:229 +#: part/models.py:134 stock/models.py:124 templates/js/translated/stock.js:2665 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:235 msgid "Structural" msgstr "" -#: part/models.py:134 +#: part/models.py:136 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords" msgstr "" -#: part/models.py:138 +#: part/models.py:140 msgid "Default keywords for parts in this category" msgstr "此类别商品的默认关键字" -#: part/models.py:143 stock/models.py:113 +#: part/models.py:145 stock/models.py:113 msgid "Icon" msgstr "" -#: part/models.py:144 stock/models.py:114 +#: part/models.py:146 stock/models.py:114 msgid "Icon (optional)" msgstr "" -#: part/models.py:163 +#: part/models.py:165 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:474 +#: part/models.py:479 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:516 part/models.py:528 +#: part/models.py:521 part/models.py:533 #, python-brace-format msgid "Part '{p1}' is used in BOM for '{p2}' (recursive)" msgstr "" -#: part/models.py:600 +#: part/models.py:605 #, python-brace-format msgid "IPN must match regex pattern {pat}" msgstr "IPN 必须匹配正则表达式 {pat}" -#: part/models.py:671 +#: part/models.py:676 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:802 +#: part/models.py:807 msgid "Duplicate IPN not allowed in part settings" msgstr "在商品设置中不允许重复的IPN" -#: part/models.py:807 +#: part/models.py:812 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:821 +#: part/models.py:826 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:845 part/models.py:3648 +#: part/models.py:850 part/models.py:3715 msgid "Part name" msgstr "商品名称" -#: part/models.py:851 +#: part/models.py:856 msgid "Is Template" msgstr "" -#: part/models.py:852 +#: part/models.py:857 msgid "Is this part a template part?" msgstr "" -#: part/models.py:862 +#: part/models.py:867 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:869 +#: part/models.py:874 #, fuzzy #| msgid "Description (optional)" msgid "Part description (optional)" msgstr "描述 (可选)" -#: part/models.py:875 +#: part/models.py:880 msgid "Part keywords to improve visibility in search results" msgstr "提高搜索结果可见性的关键字" -#: part/models.py:882 part/models.py:3192 part/models.py:3591 -#: part/serializers.py:848 part/templates/part/part_base.html:262 +#: part/models.py:887 part/models.py:3235 part/models.py:3658 +#: part/serializers.py:331 part/serializers.py:926 +#: part/templates/part/part_base.html:262 #: templates/InvenTree/settings/settings_staff_js.html:204 #: templates/js/translated/notification.js:59 -#: templates/js/translated/part.js:2269 templates/js/translated/part.js:2481 +#: templates/js/translated/part.js:2342 msgid "Category" msgstr "类别" -#: part/models.py:883 +#: part/models.py:888 msgid "Part category" msgstr "商品类别" -#: part/models.py:889 +#: part/models.py:894 msgid "Internal Part Number" msgstr "内部商品编号" -#: part/models.py:894 +#: part/models.py:899 msgid "Part revision or version number" msgstr "商品版本号" -#: part/models.py:920 +#: part/models.py:925 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:965 part/templates/part/part_base.html:378 +#: part/models.py:970 part/templates/part/part_base.html:378 msgid "Default Supplier" msgstr "" -#: part/models.py:966 +#: part/models.py:971 msgid "Default supplier part" msgstr "默认供应商商品" -#: part/models.py:973 +#: part/models.py:978 msgid "Default Expiry" msgstr "" -#: part/models.py:974 +#: part/models.py:979 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:980 +#: part/models.py:985 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:987 +#: part/models.py:992 msgid "Units of measure for this part" msgstr "" -#: part/models.py:996 +#: part/models.py:1001 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1002 +#: part/models.py:1007 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1008 +#: part/models.py:1013 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1013 +#: part/models.py:1018 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1018 +#: part/models.py:1023 msgid "Can this part be sold to customers?" msgstr "此商品可以销售给客户吗?" -#: part/models.py:1023 +#: part/models.py:1028 msgid "Is this part active?" msgstr "" -#: part/models.py:1028 +#: part/models.py:1033 msgid "Is this a virtual part, such as a software product or license?" msgstr "这是一个虚拟商品,如软件产品或许可证吗?" -#: part/models.py:1030 +#: part/models.py:1035 msgid "BOM checksum" msgstr "" -#: part/models.py:1030 +#: part/models.py:1035 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1033 +#: part/models.py:1038 msgid "BOM checked by" msgstr "" -#: part/models.py:1035 +#: part/models.py:1040 msgid "BOM checked date" msgstr "" -#: part/models.py:1039 +#: part/models.py:1044 msgid "Creation User" msgstr "新建用户" -#: part/models.py:1041 +#: part/models.py:1046 msgid "User responsible for this part" msgstr "" -#: part/models.py:1045 part/templates/part/part_base.html:341 +#: part/models.py:1050 part/templates/part/part_base.html:341 #: stock/templates/stock/item_base.html:447 -#: templates/js/translated/part.js:2331 +#: templates/js/translated/part.js:2404 msgid "Last Stocktake" msgstr "" -#: part/models.py:1915 +#: part/models.py:1926 msgid "Sell multiple" msgstr "" -#: part/models.py:2847 +#: part/models.py:2890 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:2864 +#: part/models.py:2907 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:2865 +#: part/models.py:2908 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:2870 +#: part/models.py:2913 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:2871 +#: part/models.py:2914 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:2876 +#: part/models.py:2919 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:2877 +#: part/models.py:2920 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:2882 +#: part/models.py:2925 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:2883 +#: part/models.py:2926 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:2888 +#: part/models.py:2931 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:2889 +#: part/models.py:2932 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:2894 +#: part/models.py:2937 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:2895 +#: part/models.py:2938 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:2900 +#: part/models.py:2943 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:2901 +#: part/models.py:2944 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:2906 +#: part/models.py:2949 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:2907 +#: part/models.py:2950 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:2912 +#: part/models.py:2955 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:2913 +#: part/models.py:2956 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:2918 +#: part/models.py:2961 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:2919 +#: part/models.py:2962 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:2925 +#: part/models.py:2968 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:2931 +#: part/models.py:2974 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:2936 +#: part/models.py:2979 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:2937 +#: part/models.py:2980 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:2942 +#: part/models.py:2985 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:2943 +#: part/models.py:2986 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:2948 +#: part/models.py:2991 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:2949 +#: part/models.py:2992 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:2954 +#: part/models.py:2997 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:2955 +#: part/models.py:2998 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:2974 +#: part/models.py:3017 msgid "Part for stocktake" msgstr "" -#: part/models.py:2979 +#: part/models.py:3022 msgid "Item Count" msgstr "" -#: part/models.py:2980 +#: part/models.py:3023 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:2987 +#: part/models.py:3030 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:2991 part/models.py:3074 +#: part/models.py:3034 part/models.py:3117 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report_base.html:106 -#: templates/InvenTree/settings/plugin.html:62 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:360 -#: templates/js/translated/part.js:1059 templates/js/translated/pricing.js:812 +#: templates/js/translated/part.js:1058 templates/js/translated/pricing.js:812 #: templates/js/translated/pricing.js:936 -#: templates/js/translated/purchase_order.js:1691 -#: templates/js/translated/stock.js:2558 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/stock.js:2703 msgid "Date" msgstr "" -#: part/models.py:2992 +#: part/models.py:3035 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3000 +#: part/models.py:3043 msgid "Additional notes" msgstr "" -#: part/models.py:3008 +#: part/models.py:3051 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3013 +#: part/models.py:3056 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3014 +#: part/models.py:3057 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3019 +#: part/models.py:3062 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3020 +#: part/models.py:3063 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3081 templates/InvenTree/settings/settings_staff_js.html:349 +#: part/models.py:3124 templates/InvenTree/settings/settings_staff_js.html:349 msgid "Report" msgstr "" -#: part/models.py:3082 +#: part/models.py:3125 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3087 templates/InvenTree/settings/settings_staff_js.html:356 +#: part/models.py:3130 templates/InvenTree/settings/settings_staff_js.html:356 msgid "Part Count" msgstr "" -#: part/models.py:3088 +#: part/models.py:3131 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3096 +#: part/models.py:3139 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3232 +#: part/models.py:3275 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3249 +#: part/models.py:3292 msgid "Test with this name already exists for this part" msgstr "" -#: part/models.py:3269 templates/js/translated/part.js:2821 +#: part/models.py:3312 templates/js/translated/part.js:2800 msgid "Test Name" msgstr "" -#: part/models.py:3270 +#: part/models.py:3313 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3275 +#: part/models.py:3318 msgid "Test Description" msgstr "" -#: part/models.py:3276 +#: part/models.py:3319 msgid "Enter description for this test" msgstr "" -#: part/models.py:3281 templates/js/translated/part.js:2830 -#: templates/js/translated/table_filters.js:423 +#: part/models.py:3324 templates/js/translated/part.js:2809 +#: templates/js/translated/table_filters.js:429 msgid "Required" msgstr "" -#: part/models.py:3282 +#: part/models.py:3325 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3287 templates/js/translated/part.js:2838 +#: part/models.py:3330 templates/js/translated/part.js:2817 msgid "Requires Value" msgstr "" -#: part/models.py:3288 +#: part/models.py:3331 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3293 templates/js/translated/part.js:2845 +#: part/models.py:3336 templates/js/translated/part.js:2824 msgid "Requires Attachment" msgstr "" -#: part/models.py:3294 +#: part/models.py:3337 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3340 +#: part/models.py:3383 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3345 +#: part/models.py:3388 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3363 +#: part/models.py:3406 #, fuzzy #| msgid "Key string must be unique" msgid "Choices must be unique" msgstr "关键字必须是唯一的" -#: part/models.py:3379 +#: part/models.py:3422 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3395 +#: part/models.py:3438 msgid "Parameter Name" msgstr "" -#: part/models.py:3401 +#: part/models.py:3444 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3411 +#: part/models.py:3454 msgid "Parameter description" msgstr "" -#: part/models.py:3417 templates/js/translated/part.js:1600 -#: templates/js/translated/table_filters.js:723 +#: part/models.py:3460 templates/js/translated/part.js:1599 +#: templates/js/translated/table_filters.js:756 msgid "Checkbox" msgstr "" -#: part/models.py:3418 +#: part/models.py:3461 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3423 templates/js/translated/part.js:1609 +#: part/models.py:3466 templates/js/translated/part.js:1608 msgid "Choices" msgstr "" -#: part/models.py:3424 +#: part/models.py:3467 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3505 +#: part/models.py:3539 #, fuzzy #| msgid "Invalid choice for parent build" msgid "Invalid choice for parameter value" msgstr "上级生产选项无效" -#: part/models.py:3531 +#: part/models.py:3583 msgid "Parent Part" msgstr "" -#: part/models.py:3536 part/models.py:3597 part/models.py:3598 +#: part/models.py:3588 part/models.py:3664 part/models.py:3665 #: templates/InvenTree/settings/settings_staff_js.html:199 msgid "Parameter Template" msgstr "参数模板" -#: part/models.py:3541 +#: part/models.py:3593 msgid "Data" msgstr "" -#: part/models.py:3541 +#: part/models.py:3593 msgid "Parameter Value" msgstr "" -#: part/models.py:3602 templates/InvenTree/settings/settings_staff_js.html:208 +#: part/models.py:3669 templates/InvenTree/settings/settings_staff_js.html:208 msgid "Default Value" msgstr "默认值" -#: part/models.py:3603 +#: part/models.py:3670 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3640 +#: part/models.py:3707 msgid "Part ID or part name" msgstr "" -#: part/models.py:3644 +#: part/models.py:3711 msgid "Unique part ID value" msgstr "" -#: part/models.py:3652 +#: part/models.py:3719 msgid "Part IPN value" msgstr "" -#: part/models.py:3655 +#: part/models.py:3722 msgid "Level" msgstr "" -#: part/models.py:3656 +#: part/models.py:3723 msgid "BOM level" msgstr "" -#: part/models.py:3740 +#: part/models.py:3729 part/models.py:4107 +msgid "BOM Item" +msgstr "BOM项" + +#: part/models.py:3802 msgid "Select parent part" msgstr "" -#: part/models.py:3748 +#: part/models.py:3810 msgid "Sub part" msgstr "" -#: part/models.py:3749 +#: part/models.py:3811 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:3755 +#: part/models.py:3817 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:3759 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:971 templates/js/translated/bom.js:998 -#: templates/js/translated/build.js:2113 -#: templates/js/translated/table_filters.js:156 -#: templates/js/translated/table_filters.js:185 -#: templates/js/translated/table_filters.js:489 -msgid "Optional" -msgstr "可选项" - -#: part/models.py:3760 +#: part/models.py:3822 msgid "This BOM item is optional" msgstr "" -#: part/models.py:3765 templates/js/translated/bom.js:967 -#: templates/js/translated/bom.js:1007 templates/js/translated/build.js:2104 -#: templates/js/translated/table_filters.js:160 -#: templates/js/translated/table_filters.js:485 -msgid "Consumable" -msgstr "" - -#: part/models.py:3766 +#: part/models.py:3828 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:3770 part/templates/part/upload_bom.html:55 +#: part/models.py:3832 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:3771 +#: part/models.py:3833 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:3774 +#: part/models.py:3836 msgid "BOM item reference" msgstr "" -#: part/models.py:3777 +#: part/models.py:3839 msgid "BOM item notes" msgstr "" -#: part/models.py:3781 +#: part/models.py:3843 msgid "Checksum" msgstr "" -#: part/models.py:3781 +#: part/models.py:3843 msgid "BOM line checksum" msgstr "" -#: part/models.py:3786 templates/js/translated/table_filters.js:144 +#: part/models.py:3848 templates/js/translated/table_filters.js:150 msgid "Validated" msgstr "" -#: part/models.py:3787 +#: part/models.py:3849 #, fuzzy #| msgid "Some stock items have been overallocated" msgid "This BOM item has been validated" msgstr "一些库存项已被过度分配" -#: part/models.py:3792 part/templates/part/upload_bom.html:57 -#: templates/js/translated/bom.js:1024 -#: templates/js/translated/table_filters.js:148 -#: templates/js/translated/table_filters.js:181 +#: part/models.py:3854 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1042 +#: templates/js/translated/table_filters.js:154 +#: templates/js/translated/table_filters.js:187 msgid "Gets inherited" msgstr "" -#: part/models.py:3793 +#: part/models.py:3855 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:3798 part/templates/part/upload_bom.html:56 -#: templates/js/translated/bom.js:1016 +#: part/models.py:3860 part/templates/part/upload_bom.html:56 +#: templates/js/translated/bom.js:1034 msgid "Allow Variants" msgstr "" -#: part/models.py:3799 +#: part/models.py:3861 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:3885 stock/models.py:577 +#: part/models.py:3947 stock/models.py:577 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:3894 part/models.py:3896 +#: part/models.py:3956 part/models.py:3958 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4012 +#: part/models.py:4074 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4033 +#: part/models.py:4095 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4046 +#: part/models.py:4108 msgid "Parent BOM item" msgstr "" -#: part/models.py:4054 +#: part/models.py:4116 msgid "Substitute part" msgstr "" -#: part/models.py:4069 +#: part/models.py:4131 msgid "Part 1" msgstr "" -#: part/models.py:4073 +#: part/models.py:4135 msgid "Part 2" msgstr "" -#: part/models.py:4073 +#: part/models.py:4135 msgid "Select Related Part" msgstr "" -#: part/models.py:4091 +#: part/models.py:4153 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4095 +#: part/models.py:4157 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:257 +#: part/serializers.py:152 part/serializers.py:175 stock/serializers.py:319 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:324 +#, fuzzy +#| msgid "Rejected" +msgid "No parts selected" +msgstr "已拒绝" + +#: part/serializers.py:332 +#, fuzzy +#| msgid "Set category" +msgid "Select category" +msgstr "设置类别" + +#: part/serializers.py:363 msgid "Original Part" msgstr "" -#: part/serializers.py:302 +#: part/serializers.py:363 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy Image" msgstr "" -#: part/serializers.py:307 +#: part/serializers.py:368 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:312 part/templates/part/detail.html:296 +#: part/serializers.py:373 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:312 +#: part/serializers.py:373 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:317 +#: part/serializers.py:378 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:327 +#: part/serializers.py:388 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:333 +#: part/serializers.py:394 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:343 +#: part/serializers.py:404 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:354 +#: part/serializers.py:415 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:360 +#: part/serializers.py:421 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:367 +#: part/serializers.py:428 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:375 +#: part/serializers.py:436 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:387 +#: part/serializers.py:448 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:395 +#: part/serializers.py:456 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:620 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:449 +#: part/serializers.py:698 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:448 msgid "Duplicate Part" msgstr "复制部件" -#: part/serializers.py:620 +#: part/serializers.py:698 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:625 templates/js/translated/part.js:103 +#: part/serializers.py:703 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:625 +#: part/serializers.py:703 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Supplier Information" msgstr "" -#: part/serializers.py:630 +#: part/serializers.py:708 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:636 +#: part/serializers.py:714 msgid "Copy Category Parameters" msgstr "复制类别参数" -#: part/serializers.py:637 +#: part/serializers.py:715 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:842 +#: part/serializers.py:920 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:848 +#: part/serializers.py:926 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:854 +#: part/serializers.py:932 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:859 +#: part/serializers.py:937 msgid "Generate Report" msgstr "" -#: part/serializers.py:860 +#: part/serializers.py:938 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:865 +#: part/serializers.py:943 msgid "Update Parts" msgstr "" -#: part/serializers.py:866 +#: part/serializers.py:944 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:874 +#: part/serializers.py:952 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:963 +#: part/serializers.py:1041 msgid "Update" msgstr "" -#: part/serializers.py:964 +#: part/serializers.py:1042 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1246 +#: part/serializers.py:1329 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1254 +#: part/serializers.py:1337 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1255 +#: part/serializers.py:1338 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1260 +#: part/serializers.py:1343 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1261 +#: part/serializers.py:1344 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1266 +#: part/serializers.py:1349 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1267 +#: part/serializers.py:1350 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1272 +#: part/serializers.py:1355 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1273 +#: part/serializers.py:1356 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1313 +#: part/serializers.py:1396 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1314 +#: part/serializers.py:1397 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1344 +#: part/serializers.py:1427 msgid "No part column specified" msgstr "" -#: part/serializers.py:1387 +#: part/serializers.py:1470 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1390 +#: part/serializers.py:1473 msgid "No matching part found" msgstr "" -#: part/serializers.py:1393 +#: part/serializers.py:1476 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1402 +#: part/serializers.py:1485 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1410 +#: part/serializers.py:1493 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1431 +#: part/serializers.py:1514 msgid "At least one BOM item is required" msgstr "" @@ -6585,9 +6653,9 @@ msgstr "" msgid "The available stock for {part.name} has fallen below the configured minimum level" msgstr "" -#: part/tasks.py:294 templates/js/translated/part.js:1040 -#: templates/js/translated/part.js:1793 templates/js/translated/part.js:1848 -#: templates/js/translated/purchase_order.js:2052 +#: part/tasks.py:294 templates/js/translated/part.js:1039 +#: templates/js/translated/part.js:1792 templates/js/translated/part.js:1847 +#: templates/js/translated/purchase_order.js:2059 msgid "Total Quantity" msgstr "" @@ -6627,14 +6695,6 @@ msgstr "" msgid "The BOM for %(part)s has not been validated." msgstr "" -#: part/templates/part/bom.html:30 part/templates/part/detail.html:291 -msgid "BOM actions" -msgstr "" - -#: part/templates/part/bom.html:34 -msgid "Delete Items" -msgstr "" - #: part/templates/part/category.html:34 msgid "Perform stocktake for this part category" msgstr "" @@ -6671,7 +6731,7 @@ msgstr "" msgid "Top level part category" msgstr "" -#: part/templates/part/category.html:121 part/templates/part/category.html:225 +#: part/templates/part/category.html:121 part/templates/part/category.html:206 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "子类别" @@ -6684,33 +6744,20 @@ msgstr "商品 (包括子类别)" msgid "Create new part" msgstr "新建商品" -#: part/templates/part/category.html:165 templates/js/translated/bom.js:443 +#: part/templates/part/category.html:165 templates/js/translated/bom.js:444 msgid "New Part" msgstr "新商品" -#: part/templates/part/category.html:175 part/templates/part/detail.html:390 -#: part/templates/part/detail.html:421 -msgid "Options" -msgstr "选项" - -#: part/templates/part/category.html:179 -msgid "Set category" -msgstr "设置类别" - -#: part/templates/part/category.html:180 -msgid "Set Category" -msgstr "设置类别" - -#: part/templates/part/category.html:208 +#: part/templates/part/category.html:191 #: templates/InvenTree/settings/sidebar.html:47 msgid "Part Parameters" msgstr "商品参数" -#: part/templates/part/category.html:229 +#: part/templates/part/category.html:210 msgid "Create new part category" msgstr "新建商品类别" -#: part/templates/part/category.html:230 +#: part/templates/part/category.html:211 msgid "New Category" msgstr "" @@ -6747,7 +6794,7 @@ msgid "Refresh scheduling data" msgstr "" #: part/templates/part/detail.html:45 part/templates/part/prices.html:15 -#: templates/js/translated/tables.js:584 +#: templates/js/translated/tables.js:552 msgid "Refresh" msgstr "" @@ -6758,7 +6805,7 @@ msgstr "" #: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 #: stock/admin.py:130 templates/InvenTree/settings/part_stocktake.html:29 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/stock.js:1952 users/models.py:39 +#: templates/js/translated/stock.js:2125 users/models.py:39 msgid "Stocktake" msgstr "" @@ -6770,101 +6817,101 @@ msgstr "" msgid "Add Test Template" msgstr "" -#: part/templates/part/detail.html:145 stock/templates/stock/item.html:53 +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 msgid "Sales Order Allocations" msgstr "" -#: part/templates/part/detail.html:165 +#: part/templates/part/detail.html:156 msgid "Part Notes" msgstr "" -#: part/templates/part/detail.html:180 +#: part/templates/part/detail.html:171 msgid "Part Variants" msgstr "" -#: part/templates/part/detail.html:184 +#: part/templates/part/detail.html:175 msgid "Create new variant" msgstr "" -#: part/templates/part/detail.html:185 +#: part/templates/part/detail.html:176 msgid "New Variant" msgstr "" -#: part/templates/part/detail.html:212 +#: part/templates/part/detail.html:199 msgid "Add new parameter" msgstr "" -#: part/templates/part/detail.html:249 part/templates/part/part_sidebar.html:58 +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 msgid "Related Parts" msgstr "" -#: part/templates/part/detail.html:253 part/templates/part/detail.html:254 +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 msgid "Add Related" msgstr "" -#: part/templates/part/detail.html:274 part/templates/part/part_sidebar.html:17 +#: 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:279 +#: part/templates/part/detail.html:260 msgid "Export actions" msgstr "" -#: part/templates/part/detail.html:283 templates/js/translated/bom.js:339 +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 msgid "Export BOM" msgstr "" -#: part/templates/part/detail.html:285 +#: part/templates/part/detail.html:266 msgid "Print BOM Report" msgstr "" -#: part/templates/part/detail.html:295 +#: 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:297 +#: part/templates/part/detail.html:278 msgid "Validate BOM" msgstr "" -#: part/templates/part/detail.html:302 part/templates/part/detail.html:303 -#: templates/js/translated/bom.js:1279 templates/js/translated/bom.js:1280 +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1299 templates/js/translated/bom.js:1300 msgid "Add BOM Item" msgstr "" -#: part/templates/part/detail.html:316 +#: part/templates/part/detail.html:297 msgid "Assemblies" msgstr "" -#: part/templates/part/detail.html:334 +#: part/templates/part/detail.html:313 msgid "Part Builds" msgstr "" -#: part/templates/part/detail.html:361 stock/templates/stock/item.html:38 +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 msgid "Build Order Allocations" msgstr "" -#: part/templates/part/detail.html:377 +#: part/templates/part/detail.html:352 msgid "Part Suppliers" msgstr "商品供应商" -#: part/templates/part/detail.html:407 +#: part/templates/part/detail.html:372 msgid "Part Manufacturers" msgstr "商品制造商" -#: part/templates/part/detail.html:423 -msgid "Delete manufacturer parts" -msgstr "删除制造商商品" - -#: part/templates/part/detail.html:707 +#: part/templates/part/detail.html:654 msgid "Related Part" msgstr "" -#: part/templates/part/detail.html:715 +#: part/templates/part/detail.html:662 msgid "Add Related Part" msgstr "" -#: part/templates/part/detail.html:800 +#: part/templates/part/detail.html:747 msgid "Add Test Result Template" msgstr "" @@ -6898,13 +6945,13 @@ msgid "Download Part Import Template" msgstr "" #: part/templates/part/import_wizard/part_upload.html:92 -#: templates/js/translated/bom.js:308 templates/js/translated/bom.js:342 +#: 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:309 templates/js/translated/bom.js:343 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 #: templates/js/translated/order.js:130 msgid "Select file format" msgstr "" @@ -6945,7 +6992,7 @@ msgstr "清点商品库存" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:93 +#: part/templates/part/part_base.html:93 templates/js/translated/part.js:2258 msgid "Part actions" msgstr "" @@ -6992,10 +7039,10 @@ msgid "Part is not active" msgstr "打印操作" #: part/templates/part/part_base.html:148 -#: templates/js/translated/company.js:945 -#: templates/js/translated/company.js:1185 -#: templates/js/translated/model_renderers.js:273 -#: templates/js/translated/part.js:792 templates/js/translated/part.js:1192 +#: templates/js/translated/company.js:1318 +#: templates/js/translated/company.js:1606 +#: templates/js/translated/model_renderers.js:287 +#: templates/js/translated/part.js:791 templates/js/translated/part.js:1191 msgid "Inactive" msgstr "" @@ -7018,7 +7065,7 @@ msgstr "" msgid "Allocated to Sales Orders" msgstr "" -#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1178 +#: part/templates/part/part_base.html:237 templates/js/translated/bom.js:1198 msgid "Can Build" msgstr "" @@ -7026,8 +7073,8 @@ msgstr "" msgid "Minimum stock level" msgstr "" -#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1041 -#: templates/js/translated/part.js:1238 templates/js/translated/part.js:2304 +#: part/templates/part/part_base.html:324 templates/js/translated/bom.js:1059 +#: templates/js/translated/part.js:1237 templates/js/translated/part.js:2377 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1040 msgid "Price Range" @@ -7050,7 +7097,7 @@ msgstr "商品二维码" msgid "Link Barcode to Part" msgstr "" -#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2191 +#: part/templates/part/part_base.html:474 templates/js/translated/part.js:2252 #, fuzzy #| msgid "Edit part" msgid "part" @@ -7126,9 +7173,9 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:49 -#: templates/js/translated/part.js:1216 templates/js/translated/part.js:2120 -#: templates/js/translated/part.js:2284 templates/js/translated/stock.js:1022 -#: templates/js/translated/stock.js:1829 templates/navbar.html:31 +#: templates/js/translated/part.js:1215 templates/js/translated/part.js:2115 +#: templates/js/translated/part.js:2357 templates/js/translated/stock.js:1021 +#: templates/js/translated/stock.js:2002 templates/navbar.html:31 msgid "Stock" msgstr "库存" @@ -7159,9 +7206,9 @@ msgstr "" #: part/templates/part/prices.html:25 stock/admin.py:129 #: stock/templates/stock/item_base.html:442 -#: templates/js/translated/company.js:1313 -#: templates/js/translated/company.js:1323 -#: templates/js/translated/stock.js:1982 +#: templates/js/translated/company.js:1734 +#: templates/js/translated/company.js:1744 +#: templates/js/translated/stock.js:2155 msgid "Last Updated" msgstr "" @@ -7224,12 +7271,12 @@ msgstr "" msgid "Add Sell Price Break" msgstr "" -#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:682 -#: templates/js/translated/part.js:2115 templates/js/translated/part.js:2117 +#: part/templates/part/stock_count.html:7 templates/js/translated/part.js:681 +#: templates/js/translated/part.js:2110 templates/js/translated/part.js:2112 msgid "No Stock" msgstr "" -#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:167 +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 msgid "Low Stock" msgstr "" @@ -7312,10 +7359,6 @@ msgstr "未找到商品图像" msgid "Part Pricing" msgstr "商品价格" -#: plugin/apps.py:55 -msgid "Your environment has an outdated git version. This prevents InvenTree from loading plugin details." -msgstr "" - #: plugin/base/action/api.py:27 msgid "No action specified" msgstr "未指定操作" @@ -7337,7 +7380,7 @@ msgid "Match found for barcode data" msgstr "找到匹配条形码数据" #: plugin/base/barcodes/api.py:120 -#: templates/js/translated/purchase_order.js:1372 +#: templates/js/translated/purchase_order.js:1387 msgid "Barcode matches existing item" msgstr "" @@ -7367,7 +7410,7 @@ msgid "InvenTree Notifications" msgstr "" #: plugin/builtin/integration/core_notifications.py:35 -msgid "Integrated outgoing notificaton methods" +msgid "Integrated outgoing notification methods" msgstr "" #: plugin/builtin/integration/core_notifications.py:40 @@ -7400,47 +7443,43 @@ msgstr "" msgid "Open link" msgstr "" -#: plugin/models.py:27 +#: plugin/models.py:28 msgid "Plugin Configuration" msgstr "" -#: plugin/models.py:28 +#: plugin/models.py:29 msgid "Plugin Configurations" msgstr "" -#: plugin/models.py:33 templates/InvenTree/settings/plugin.html:60 +#: plugin/models.py:34 msgid "Key" msgstr "" -#: plugin/models.py:34 +#: plugin/models.py:35 msgid "Key of plugin" msgstr "" -#: plugin/models.py:42 +#: plugin/models.py:43 msgid "PluginName of the plugin" msgstr "" -#: plugin/models.py:48 +#: plugin/models.py:49 msgid "Is the plugin active" msgstr "" -#: plugin/models.py:82 templates/InvenTree/settings/plugin_details.html:47 -msgid "Unvailable" -msgstr "" - -#: plugin/models.py:113 +#: plugin/models.py:125 msgid "Sample plugin" msgstr "" -#: plugin/models.py:122 +#: plugin/models.py:134 msgid "Builtin Plugin" msgstr "" -#: plugin/models.py:148 templates/InvenTree/settings/plugin_settings.html:9 +#: plugin/models.py:160 templates/InvenTree/settings/plugin_settings.html:9 msgid "Plugin" msgstr "" -#: plugin/models.py:199 +#: plugin/models.py:211 msgid "Method" msgstr "" @@ -7448,21 +7487,17 @@ msgstr "" msgid "No author found" msgstr "" -#: plugin/plugin.py:279 -msgid "No date found" -msgstr "" - -#: plugin/registry.py:463 +#: plugin/registry.py:466 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" msgstr "" -#: plugin/registry.py:465 +#: plugin/registry.py:468 #, python-brace-format msgid "Plugin requires at least version {v}" msgstr "" -#: plugin/registry.py:467 +#: plugin/registry.py:470 #, python-brace-format msgid "Plugin requires at most version {v}" msgstr "" @@ -7499,38 +7534,46 @@ msgstr "" msgid "A setting with multiple choices" msgstr "" -#: plugin/serializers.py:81 +#: plugin/serializers.py:90 msgid "Source URL" msgstr "" -#: plugin/serializers.py:82 +#: plugin/serializers.py:91 msgid "Source for the package - this can be a custom registry or a VCS path" msgstr "" -#: plugin/serializers.py:87 +#: plugin/serializers.py:96 msgid "Package Name" msgstr "" -#: plugin/serializers.py:88 +#: plugin/serializers.py:97 msgid "Name for the Plugin Package - can also contain a version indicator" msgstr "" -#: plugin/serializers.py:91 +#: plugin/serializers.py:100 msgid "Confirm plugin installation" msgstr "" -#: plugin/serializers.py:92 +#: plugin/serializers.py:101 msgid "This will install this plugin now into the current instance. The instance will go into maintenance." msgstr "" -#: plugin/serializers.py:104 +#: plugin/serializers.py:113 msgid "Installation not confirmed" msgstr "" -#: plugin/serializers.py:106 +#: plugin/serializers.py:115 msgid "Either packagename of URL must be provided" msgstr "" +#: plugin/serializers.py:193 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:194 +msgid "Activate this plugin" +msgstr "" + #: report/api.py:171 msgid "No valid objects provided to template" msgstr "没有为模板提供有效对象" @@ -7544,91 +7587,91 @@ msgstr "" msgid "Test report" msgstr "" -#: report/models.py:161 +#: report/models.py:160 msgid "Template name" msgstr "" -#: report/models.py:167 +#: report/models.py:166 msgid "Report template file" msgstr "" -#: report/models.py:174 +#: report/models.py:173 msgid "Report template description" msgstr "" -#: report/models.py:180 +#: report/models.py:179 msgid "Report revision number (auto-increments)" msgstr "" -#: report/models.py:267 +#: report/models.py:266 msgid "Pattern for generating report filenames" msgstr "" -#: report/models.py:274 +#: report/models.py:273 msgid "Report template is enabled" msgstr "" -#: report/models.py:295 +#: report/models.py:294 msgid "StockItem query filters (comma-separated list of key=value pairs)" msgstr "" -#: report/models.py:303 +#: report/models.py:302 msgid "Include Installed Tests" msgstr "" -#: report/models.py:304 +#: report/models.py:303 msgid "Include test results for stock items installed inside assembled item" msgstr "" -#: report/models.py:378 +#: report/models.py:364 msgid "Build Filters" msgstr "" -#: report/models.py:379 +#: report/models.py:365 msgid "Build query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:418 +#: report/models.py:406 msgid "Part Filters" msgstr "商品过滤器" -#: report/models.py:419 +#: report/models.py:407 msgid "Part query filters (comma-separated list of key=value pairs" msgstr "" -#: report/models.py:453 +#: report/models.py:441 msgid "Purchase order query filters" msgstr "" -#: report/models.py:491 +#: report/models.py:479 msgid "Sales order query filters" msgstr "" -#: report/models.py:529 +#: report/models.py:517 msgid "Return order query filters" msgstr "" -#: report/models.py:582 +#: report/models.py:570 msgid "Snippet" msgstr "" -#: report/models.py:583 +#: report/models.py:571 msgid "Report snippet file" msgstr "" -#: report/models.py:587 +#: report/models.py:575 msgid "Snippet file description" msgstr "" -#: report/models.py:624 +#: report/models.py:612 msgid "Asset" msgstr "" -#: report/models.py:625 +#: report/models.py:613 msgid "Report asset file" msgstr "" -#: report/models.py:632 +#: report/models.py:620 msgid "Asset file description" msgstr "" @@ -7649,8 +7692,8 @@ msgstr "" #: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 #: templates/js/translated/pricing.js:596 #: templates/js/translated/pricing.js:820 -#: templates/js/translated/purchase_order.js:2083 -#: templates/js/translated/sales_order.js:1817 +#: templates/js/translated/purchase_order.js:2090 +#: templates/js/translated/sales_order.js:1826 msgid "Unit Price" msgstr "单价" @@ -7664,23 +7707,23 @@ msgstr "额外的生产备注" #: report/templates/report/inventree_po_report_base.html:72 #: report/templates/report/inventree_so_report_base.html:72 -#: templates/js/translated/purchase_order.js:1985 -#: templates/js/translated/sales_order.js:1792 +#: templates/js/translated/purchase_order.js:1992 +#: templates/js/translated/sales_order.js:1801 msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report_base.html:25 #: report/templates/report/inventree_test_report_base.html:88 #: stock/models.py:725 stock/templates/stock/item_base.html:312 -#: templates/js/translated/build.js:502 templates/js/translated/build.js:1423 -#: templates/js/translated/build.js:1989 -#: templates/js/translated/model_renderers.js:201 -#: templates/js/translated/return_order.js:528 -#: templates/js/translated/return_order.js:708 -#: templates/js/translated/sales_order.js:300 -#: templates/js/translated/sales_order.js:1597 -#: templates/js/translated/sales_order.js:1682 -#: templates/js/translated/stock.js:563 +#: templates/js/translated/build.js:508 templates/js/translated/build.js:1302 +#: templates/js/translated/build.js:2274 +#: templates/js/translated/model_renderers.js:215 +#: templates/js/translated/return_order.js:537 +#: templates/js/translated/return_order.js:717 +#: templates/js/translated/sales_order.js:312 +#: templates/js/translated/sales_order.js:1606 +#: templates/js/translated/sales_order.js:1691 +#: templates/js/translated/stock.js:562 msgid "Serial Number" msgstr "序列号" @@ -7693,12 +7736,12 @@ msgid "Test Results" msgstr "" #: report/templates/report/inventree_test_report_base.html:102 -#: stock/models.py:2242 templates/js/translated/stock.js:1419 +#: stock/models.py:2243 templates/js/translated/stock.js:1437 msgid "Test" msgstr "" #: report/templates/report/inventree_test_report_base.html:103 -#: stock/models.py:2248 +#: stock/models.py:2249 msgid "Result" msgstr "" @@ -7726,8 +7769,8 @@ msgid "Installed Items" msgstr "" #: report/templates/report/inventree_test_report_base.html:168 -#: stock/admin.py:104 templates/js/translated/stock.js:667 -#: templates/js/translated/stock.js:838 templates/js/translated/stock.js:2849 +#: stock/admin.py:104 templates/js/translated/stock.js:666 +#: templates/js/translated/stock.js:837 templates/js/translated/stock.js:2990 msgid "Serial" msgstr "" @@ -7799,31 +7842,31 @@ msgstr "删除模板" #: stock/admin.py:131 stock/models.py:789 #: stock/templates/stock/item_base.html:429 -#: templates/js/translated/stock.js:1966 +#: templates/js/translated/stock.js:2139 msgid "Expiry Date" msgstr "" -#: stock/api.py:419 templates/js/translated/table_filters.js:373 +#: stock/api.py:426 templates/js/translated/table_filters.js:379 msgid "External Location" msgstr "" -#: stock/api.py:580 +#: stock/api.py:632 msgid "Quantity is required" msgstr "" -#: stock/api.py:587 +#: stock/api.py:639 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:613 +#: stock/api.py:665 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:622 +#: stock/api.py:674 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:640 +#: stock/api.py:692 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" @@ -7834,7 +7877,7 @@ msgid "Stock Location" msgstr "仓储地点" #: stock/models.py:55 stock/templates/stock/location.html:177 -#: templates/InvenTree/search.html:166 templates/js/translated/search.js:220 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:40 msgid "Stock Locations" msgstr "仓储地点" @@ -7852,8 +7895,8 @@ msgstr "" msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:132 templates/js/translated/stock.js:2529 -#: templates/js/translated/table_filters.js:213 +#: stock/models.py:132 templates/js/translated/stock.js:2674 +#: templates/js/translated/table_filters.js:219 msgid "External" msgstr "" @@ -7869,7 +7912,7 @@ msgstr "" msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:583 stock/serializers.py:174 +#: stock/models.py:583 stock/serializers.py:223 msgid "Stock item cannot be created for virtual parts" msgstr "" @@ -7986,233 +8029,246 @@ msgstr "" msgid "Converted to part" msgstr "" -#: stock/models.py:1377 +#: stock/models.py:1378 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1383 +#: stock/models.py:1384 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1389 +#: stock/models.py:1390 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({n})" msgstr "" -#: stock/models.py:1392 +#: stock/models.py:1393 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1395 +#: stock/models.py:1396 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1402 stock/serializers.py:374 +#: stock/models.py:1403 stock/serializers.py:440 msgid "Serial numbers already exist" msgstr "序列号已存在" -#: stock/models.py:1473 +#: stock/models.py:1474 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1476 +#: stock/models.py:1477 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1479 +#: stock/models.py:1480 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1482 +#: stock/models.py:1483 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1485 +#: stock/models.py:1486 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1488 +#: stock/models.py:1489 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1495 stock/serializers.py:975 +#: stock/models.py:1496 stock/serializers.py:1092 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1499 +#: stock/models.py:1500 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1503 +#: stock/models.py:1504 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1507 +#: stock/models.py:1508 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1678 +#: stock/models.py:1679 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2160 +#: stock/models.py:2161 msgid "Entry notes" msgstr "" -#: stock/models.py:2218 +#: stock/models.py:2219 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2224 +#: stock/models.py:2225 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2243 +#: stock/models.py:2244 msgid "Test name" msgstr "" -#: stock/models.py:2249 +#: stock/models.py:2250 msgid "Test result" msgstr "" -#: stock/models.py:2255 +#: stock/models.py:2256 msgid "Test output value" msgstr "" -#: stock/models.py:2262 +#: stock/models.py:2263 msgid "Test result attachment" msgstr "" -#: stock/models.py:2268 +#: stock/models.py:2269 msgid "Test notes" msgstr "" -#: stock/serializers.py:76 +#: stock/serializers.py:121 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:215 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:254 +#: stock/serializers.py:316 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:307 +#: stock/serializers.py:373 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:319 +#: stock/serializers.py:385 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:325 +#: stock/serializers.py:391 msgid "Enter serial numbers for new items" msgstr "输入新项目的序列号" -#: stock/serializers.py:336 stock/serializers.py:932 stock/serializers.py:1174 +#: stock/serializers.py:402 stock/serializers.py:1049 stock/serializers.py:1291 msgid "Destination stock location" msgstr "目标库存位置" -#: stock/serializers.py:343 +#: stock/serializers.py:409 msgid "Optional note field" msgstr "" -#: stock/serializers.py:353 +#: stock/serializers.py:419 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:414 +#: stock/serializers.py:480 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:427 -msgid "Stock item is unavailable" -msgstr "" - -#: stock/serializers.py:434 -msgid "Selected part is not in the Bill of Materials" -msgstr "" - -#: stock/serializers.py:471 -msgid "Destination location for uninstalled item" -msgstr "" - -#: stock/serializers.py:476 stock/serializers.py:557 +#: stock/serializers.py:485 stock/serializers.py:543 stock/serializers.py:624 +#: stock/serializers.py:682 msgid "Add transaction note (optional)" msgstr "添加交易备注 (可选)" -#: stock/serializers.py:510 +#: stock/serializers.py:494 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:501 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:538 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:577 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:521 +#: stock/serializers.py:588 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:552 +#: stock/serializers.py:619 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:787 +#: stock/serializers.py:663 +#, fuzzy +#| msgid "Selected stock item not found in BOM" +msgid "Select stock items to change status" +msgstr "在BOM中找不到选定的库存项" + +#: stock/serializers.py:670 +#, fuzzy +#| msgid "Stock item created" +msgid "No stock items selected" +msgstr "库存项已创建" + +#: stock/serializers.py:904 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:791 +#: stock/serializers.py:908 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:795 +#: stock/serializers.py:912 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:826 +#: stock/serializers.py:943 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:832 +#: stock/serializers.py:949 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:840 +#: stock/serializers.py:957 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:850 stock/serializers.py:1081 +#: stock/serializers.py:967 stock/serializers.py:1198 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:939 +#: stock/serializers.py:1056 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:944 +#: stock/serializers.py:1061 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:945 +#: stock/serializers.py:1062 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:950 +#: stock/serializers.py:1067 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:951 +#: stock/serializers.py:1068 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:961 +#: stock/serializers.py:1078 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1043 +#: stock/serializers.py:1160 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1071 +#: stock/serializers.py:1188 msgid "Stock transaction notes" msgstr "" @@ -8220,48 +8276,48 @@ msgstr "" msgid "Stock Tracking Information" msgstr "" -#: stock/templates/stock/item.html:69 +#: stock/templates/stock/item.html:63 msgid "Child Stock Items" msgstr "" -#: stock/templates/stock/item.html:77 +#: stock/templates/stock/item.html:72 msgid "This stock item does not have any child items" msgstr "" -#: stock/templates/stock/item.html:86 +#: stock/templates/stock/item.html:81 #: stock/templates/stock/stock_sidebar.html:12 msgid "Test Data" msgstr "" -#: stock/templates/stock/item.html:90 stock/templates/stock/item_base.html:66 +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:66 msgid "Test Report" msgstr "" -#: stock/templates/stock/item.html:94 stock/templates/stock/item.html:288 +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:279 msgid "Delete Test Data" msgstr "" -#: stock/templates/stock/item.html:98 +#: stock/templates/stock/item.html:93 msgid "Add Test Data" msgstr "" -#: stock/templates/stock/item.html:132 +#: stock/templates/stock/item.html:125 msgid "Stock Item Notes" msgstr "" -#: stock/templates/stock/item.html:147 +#: stock/templates/stock/item.html:140 msgid "Installed Stock Items" msgstr "" -#: stock/templates/stock/item.html:152 templates/js/translated/stock.js:2996 +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3137 msgid "Install Stock Item" msgstr "" -#: stock/templates/stock/item.html:276 +#: stock/templates/stock/item.html:267 msgid "Delete all test results for this stock item" msgstr "" -#: stock/templates/stock/item.html:305 templates/js/translated/stock.js:1611 +#: stock/templates/stock/item.html:296 templates/js/translated/stock.js:1629 msgid "Add Test Result" msgstr "" @@ -8269,13 +8325,13 @@ msgstr "" msgid "Locate stock item" msgstr "" -#: stock/templates/stock/item_base.html:52 templates/stock_table.html:21 +#: stock/templates/stock/item_base.html:52 msgid "Scan to Location" msgstr "" #: stock/templates/stock/item_base.html:60 #: stock/templates/stock/location.html:69 -#: templates/js/translated/filters.js:322 +#: templates/js/translated/filters.js:431 msgid "Printing actions" msgstr "" @@ -8284,15 +8340,17 @@ msgid "Stock adjustment actions" msgstr "" #: stock/templates/stock/item_base.html:80 -#: stock/templates/stock/location.html:88 templates/stock_table.html:35 +#: stock/templates/stock/location.html:88 templates/js/translated/stock.js:1754 msgid "Count stock" msgstr "" -#: stock/templates/stock/item_base.html:82 templates/stock_table.html:33 +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1736 msgid "Add stock" msgstr "" -#: stock/templates/stock/item_base.html:83 templates/stock_table.html:34 +#: stock/templates/stock/item_base.html:83 +#: templates/js/translated/stock.js:1745 msgid "Remove stock" msgstr "" @@ -8301,11 +8359,12 @@ msgid "Serialize stock" msgstr "" #: stock/templates/stock/item_base.html:89 -#: stock/templates/stock/location.html:94 templates/stock_table.html:36 +#: stock/templates/stock/location.html:94 templates/js/translated/stock.js:1763 msgid "Transfer stock" msgstr "" -#: stock/templates/stock/item_base.html:92 templates/stock_table.html:39 +#: stock/templates/stock/item_base.html:92 +#: templates/js/translated/stock.js:1817 msgid "Assign to customer" msgstr "" @@ -8345,6 +8404,11 @@ msgstr "" msgid "Delete stock item" msgstr "" +#: stock/templates/stock/item_base.html:170 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2042 templates/navbar.html:38 +msgid "Build" +msgstr "生产" + #: stock/templates/stock/item_base.html:194 msgid "Parent Item" msgstr "" @@ -8409,7 +8473,7 @@ msgid "Available Quantity" msgstr "" #: stock/templates/stock/item_base.html:394 -#: templates/js/translated/build.js:2015 +#: templates/js/translated/build.js:2299 msgid "No location set" msgstr "未设置仓储地点" @@ -8427,7 +8491,7 @@ msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:433 -#: templates/js/translated/table_filters.js:381 +#: templates/js/translated/table_filters.js:387 msgid "Expired" msgstr "" @@ -8437,7 +8501,7 @@ msgid "This StockItem expires on %(item.expiry_date)s" msgstr "" #: stock/templates/stock/item_base.html:435 -#: templates/js/translated/table_filters.js:387 +#: templates/js/translated/table_filters.js:393 msgid "Stale" msgstr "" @@ -8446,7 +8510,7 @@ msgid "No stocktake performed" msgstr "" #: stock/templates/stock/item_base.html:503 -#: templates/js/translated/stock.js:1745 +#: templates/js/translated/stock.js:1884 #, fuzzy #| msgid "Stock Item" msgid "stock item" @@ -8554,22 +8618,22 @@ msgstr "新建仓储地点" msgid "New Location" msgstr "新建仓储地点" -#: stock/templates/stock/location.html:287 -#: templates/js/translated/stock.js:2318 +#: stock/templates/stock/location.html:278 +#: templates/js/translated/stock.js:2465 #, fuzzy #| msgid "Stock Location" msgid "stock location" msgstr "仓储地点" -#: stock/templates/stock/location.html:304 +#: stock/templates/stock/location.html:295 msgid "Scanned stock container into this location" msgstr "" -#: stock/templates/stock/location.html:377 +#: stock/templates/stock/location.html:368 msgid "Stock Location QR Code" msgstr "" -#: stock/templates/stock/location.html:388 +#: stock/templates/stock/location.html:379 msgid "Link Barcode to Stock Location" msgstr "" @@ -8643,71 +8707,71 @@ msgstr "" msgid "Index" msgstr "" -#: templates/InvenTree/index.html:89 +#: templates/InvenTree/index.html:39 msgid "Subscribed Parts" msgstr "" -#: templates/InvenTree/index.html:102 +#: templates/InvenTree/index.html:52 msgid "Subscribed Categories" msgstr "" -#: templates/InvenTree/index.html:112 +#: templates/InvenTree/index.html:62 msgid "Latest Parts" msgstr "最近商品" -#: templates/InvenTree/index.html:126 +#: templates/InvenTree/index.html:77 msgid "BOM Waiting Validation" msgstr "" -#: templates/InvenTree/index.html:155 +#: templates/InvenTree/index.html:106 msgid "Recently Updated" msgstr "" -#: templates/InvenTree/index.html:180 +#: templates/InvenTree/index.html:134 msgid "Depleted Stock" msgstr "" -#: templates/InvenTree/index.html:193 +#: templates/InvenTree/index.html:148 msgid "Required for Build Orders" msgstr "" -#: templates/InvenTree/index.html:208 +#: templates/InvenTree/index.html:156 msgid "Expired Stock" msgstr "" -#: templates/InvenTree/index.html:222 +#: templates/InvenTree/index.html:172 msgid "Stale Stock" msgstr "" -#: templates/InvenTree/index.html:247 +#: templates/InvenTree/index.html:199 msgid "Build Orders In Progress" msgstr "" -#: templates/InvenTree/index.html:258 +#: templates/InvenTree/index.html:210 msgid "Overdue Build Orders" msgstr "" -#: templates/InvenTree/index.html:278 +#: templates/InvenTree/index.html:230 msgid "Outstanding Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:289 +#: templates/InvenTree/index.html:241 msgid "Overdue Purchase Orders" msgstr "" -#: templates/InvenTree/index.html:310 +#: templates/InvenTree/index.html:262 msgid "Outstanding Sales Orders" msgstr "" -#: templates/InvenTree/index.html:321 +#: templates/InvenTree/index.html:273 msgid "Overdue Sales Orders" msgstr "" -#: templates/InvenTree/index.html:347 +#: templates/InvenTree/index.html:299 msgid "InvenTree News" msgstr "" -#: templates/InvenTree/index.html:349 +#: templates/InvenTree/index.html:301 msgid "Current News" msgstr "" @@ -8864,59 +8928,42 @@ msgstr "" 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:37 +#: templates/InvenTree/settings/plugin.html:35 #: templates/InvenTree/settings/sidebar.html:64 msgid "Plugins" msgstr "" -#: templates/InvenTree/settings/plugin.html:43 -#: templates/js/translated/plugin.js:19 +#: templates/InvenTree/settings/plugin.html:41 +#: templates/js/translated/plugin.js:151 msgid "Install Plugin" msgstr "" -#: templates/InvenTree/settings/plugin.html:51 +#: templates/InvenTree/settings/plugin.html:49 msgid "External plugins are not enabled for this InvenTree installation" msgstr "" -#: templates/InvenTree/settings/plugin.html:63 -#: templates/InvenTree/settings/plugin_settings.html:42 -msgid "Version" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:71 -msgid "Active plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:79 -msgid "Inactive plugins" -msgstr "" - -#: templates/InvenTree/settings/plugin.html:92 +#: templates/InvenTree/settings/plugin.html:64 msgid "Plugin Error Stack" msgstr "" -#: templates/InvenTree/settings/plugin.html:101 +#: templates/InvenTree/settings/plugin.html:73 msgid "Stage" msgstr "" -#: templates/InvenTree/settings/plugin.html:103 +#: templates/InvenTree/settings/plugin.html:75 #: templates/js/translated/notification.js:75 msgid "Message" msgstr "" -#: templates/InvenTree/settings/plugin_details.html:32 -#: templates/InvenTree/settings/plugin_settings.html:100 -msgid "Builtin" -msgstr "" - -#: templates/InvenTree/settings/plugin_details.html:38 -msgid "Sample" -msgstr "" - #: templates/InvenTree/settings/plugin_settings.html:16 msgid "Plugin information" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:89 +msgid "Version" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:47 msgid "no version information supplied" msgstr "" @@ -8949,6 +8996,11 @@ msgstr "" msgid "Installation path" msgstr "" +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:77 +msgid "Builtin" +msgstr "" + #: templates/InvenTree/settings/plugin_settings.html:101 msgid "This is a builtin plugin which cannot be disabled" msgstr "" @@ -8971,14 +9023,6 @@ msgstr "" msgid "Commit Message" msgstr "" -#: templates/InvenTree/settings/plugin_settings.html:126 -msgid "Sign Status" -msgstr "" - -#: templates/InvenTree/settings/plugin_settings.html:131 -msgid "Sign Key" -msgstr "" - #: templates/InvenTree/settings/po.html:7 msgid "Purchase Order Settings" msgstr "采购订单设置" @@ -9088,12 +9132,12 @@ msgid "No category parameter templates found" msgstr "未找到类别参数模板" #: templates/InvenTree/settings/settings_staff_js.html:212 -#: templates/js/translated/part.js:1618 +#: templates/js/translated/part.js:1617 msgid "Edit Template" msgstr "编辑模板" #: templates/InvenTree/settings/settings_staff_js.html:213 -#: templates/js/translated/part.js:1619 +#: templates/js/translated/part.js:1618 msgid "Delete Template" msgstr "删除模板" @@ -9135,7 +9179,7 @@ msgid "Home Page" msgstr "" #: templates/InvenTree/settings/sidebar.html:15 -#: templates/js/translated/tables.js:575 templates/navbar.html:107 +#: 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" @@ -9214,6 +9258,7 @@ msgid "Unverified" msgstr "" #: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:984 msgid "Primary" msgstr "" @@ -9361,7 +9406,7 @@ msgid "Some languages are not complete" msgstr "" #: templates/InvenTree/settings/user_display.html:97 -msgid "Show only sufficent" +msgid "Show only sufficient" msgstr "" #: templates/InvenTree/settings/user_display.html:99 @@ -9430,44 +9475,48 @@ msgstr "" msgid "Update Available" msgstr "" -#: templates/about.html:42 +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 msgid "InvenTree Documentation" msgstr "" -#: templates/about.html:47 +#: templates/about.html:54 msgid "API Version" msgstr "" -#: templates/about.html:52 +#: templates/about.html:59 msgid "Python Version" msgstr "" -#: templates/about.html:57 +#: templates/about.html:64 msgid "Django Version" msgstr "" -#: templates/about.html:62 +#: templates/about.html:69 msgid "View Code on GitHub" msgstr "" -#: templates/about.html:67 +#: templates/about.html:74 msgid "Credits" msgstr "" -#: templates/about.html:72 +#: templates/about.html:79 msgid "Mobile App" msgstr "" -#: templates/about.html:77 +#: templates/about.html:84 msgid "Submit Bug Report" msgstr "" -#: templates/about.html:84 templates/clip.html:4 +#: templates/about.html:91 templates/clip.html:4 #: templates/js/translated/helpers.js:585 msgid "copy to clipboard" msgstr "" -#: templates/about.html:84 +#: templates/about.html:91 msgid "copy version information" msgstr "" @@ -9663,14 +9712,6 @@ msgstr "" msgid "Add Attachment" msgstr "添加附件" -#: templates/attachment_table.html:11 -msgid "Delete selected attachments" -msgstr "" - -#: templates/attachment_table.html:12 templates/js/translated/attachment.js:129 -msgid "Delete Attachments" -msgstr "" - #: templates/barcode_data.html:5 msgid "Barcode Identifier" msgstr "" @@ -9715,7 +9756,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1633 +#: templates/js/translated/bom.js:1653 templates/js/translated/build.js:2478 msgid "Required Quantity" msgstr "" @@ -9729,7 +9770,7 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3140 +#: templates/js/translated/part.js:3119 msgid "Minimum Quantity" msgstr "" @@ -9801,23 +9842,39 @@ msgstr "" msgid "All selected attachments will be deleted" msgstr "" -#: templates/js/translated/attachment.js:255 +#: templates/js/translated/attachment.js:129 +msgid "Delete Attachments" +msgstr "" + +#: templates/js/translated/attachment.js:205 +#, fuzzy +#| msgid "Delete parameters" +msgid "Delete attachments" +msgstr "删除参数" + +#: templates/js/translated/attachment.js:253 +#, fuzzy +#| msgid "Attachments" +msgid "Attachment actions" +msgstr "附件" + +#: templates/js/translated/attachment.js:275 msgid "No attachments found" msgstr "" -#: templates/js/translated/attachment.js:285 +#: templates/js/translated/attachment.js:305 msgid "Edit Attachment" msgstr "编辑附件" -#: templates/js/translated/attachment.js:326 +#: templates/js/translated/attachment.js:336 msgid "Upload Date" msgstr "" -#: templates/js/translated/attachment.js:346 +#: templates/js/translated/attachment.js:356 msgid "Edit attachment" msgstr "" -#: templates/js/translated/attachment.js:354 +#: templates/js/translated/attachment.js:364 msgid "Delete attachment" msgstr "" @@ -9874,7 +9931,7 @@ msgstr "" msgid "Unlink" msgstr "" -#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1118 +#: templates/js/translated/barcode.js:550 templates/js/translated/stock.js:1117 msgid "Remove stock item" msgstr "" @@ -9932,783 +9989,925 @@ msgstr "" msgid "Barcode does not match a valid location" msgstr "" -#: templates/js/translated/bom.js:77 +#: templates/js/translated/bom.js:78 msgid "Create BOM Item" msgstr "" -#: templates/js/translated/bom.js:131 +#: templates/js/translated/bom.js:132 msgid "Display row data" msgstr "" -#: templates/js/translated/bom.js:187 +#: templates/js/translated/bom.js:188 msgid "Row Data" msgstr "" -#: templates/js/translated/bom.js:188 templates/js/translated/bom.js:699 +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 #: templates/js/translated/modals.js:71 templates/js/translated/modals.js:622 #: templates/js/translated/modals.js:746 templates/js/translated/modals.js:1054 -#: templates/js/translated/purchase_order.js:791 templates/modals.html:15 +#: templates/js/translated/purchase_order.js:802 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" msgstr "" -#: templates/js/translated/bom.js:305 +#: templates/js/translated/bom.js:306 msgid "Download BOM Template" msgstr "" -#: templates/js/translated/bom.js:350 +#: templates/js/translated/bom.js:351 msgid "Multi Level BOM" msgstr "" -#: templates/js/translated/bom.js:351 +#: templates/js/translated/bom.js:352 msgid "Include BOM data for subassemblies" msgstr "" -#: templates/js/translated/bom.js:356 +#: templates/js/translated/bom.js:357 msgid "Levels" msgstr "等级" -#: templates/js/translated/bom.js:357 +#: templates/js/translated/bom.js:358 msgid "Select maximum number of BOM levels to export (0 = all levels)" msgstr "" -#: templates/js/translated/bom.js:364 +#: templates/js/translated/bom.js:365 msgid "Include Alternative Parts" msgstr "" -#: templates/js/translated/bom.js:365 +#: templates/js/translated/bom.js:366 msgid "Include alternative parts in exported BOM" msgstr "" -#: templates/js/translated/bom.js:370 +#: templates/js/translated/bom.js:371 msgid "Include Parameter Data" msgstr "包含参数数据" -#: templates/js/translated/bom.js:371 +#: templates/js/translated/bom.js:372 msgid "Include part parameter data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:376 +#: templates/js/translated/bom.js:377 msgid "Include Stock Data" msgstr "包括库存数据" -#: templates/js/translated/bom.js:377 +#: templates/js/translated/bom.js:378 msgid "Include part stock data in exported BOM" msgstr "在导出 BOM 中包括库存数据" -#: templates/js/translated/bom.js:382 +#: templates/js/translated/bom.js:383 msgid "Include Manufacturer Data" msgstr "包括制造商数据" -#: templates/js/translated/bom.js:383 +#: templates/js/translated/bom.js:384 msgid "Include part manufacturer data in exported BOM" msgstr "在导出 BOM 中包含制造商数据" -#: templates/js/translated/bom.js:388 +#: templates/js/translated/bom.js:389 msgid "Include Supplier Data" msgstr "包含供应商数据" -#: templates/js/translated/bom.js:389 +#: templates/js/translated/bom.js:390 msgid "Include part supplier data in exported BOM" msgstr "在导出 BOM 中包含供应商数据" -#: templates/js/translated/bom.js:394 +#: templates/js/translated/bom.js:395 msgid "Include Pricing Data" msgstr "" -#: templates/js/translated/bom.js:395 +#: templates/js/translated/bom.js:396 msgid "Include part pricing data in exported BOM" msgstr "" -#: templates/js/translated/bom.js:590 +#: templates/js/translated/bom.js:591 msgid "Remove substitute part" msgstr "" -#: templates/js/translated/bom.js:644 +#: templates/js/translated/bom.js:645 msgid "Select and add a new substitute part using the input below" msgstr "" -#: templates/js/translated/bom.js:655 +#: templates/js/translated/bom.js:656 msgid "Are you sure you wish to remove this substitute part link?" msgstr "" -#: templates/js/translated/bom.js:661 +#: templates/js/translated/bom.js:662 msgid "Remove Substitute Part" msgstr "" -#: templates/js/translated/bom.js:700 +#: templates/js/translated/bom.js:701 msgid "Add Substitute" msgstr "" -#: templates/js/translated/bom.js:701 +#: templates/js/translated/bom.js:702 msgid "Edit BOM Item Substitutes" msgstr "" -#: templates/js/translated/bom.js:763 +#: templates/js/translated/bom.js:764 msgid "All selected BOM items will be deleted" msgstr "" -#: templates/js/translated/bom.js:779 +#: templates/js/translated/bom.js:780 msgid "Delete selected BOM items?" msgstr "" -#: templates/js/translated/bom.js:906 +#: templates/js/translated/bom.js:826 +#, fuzzy +#| msgid "Delete parameters" +msgid "Delete items" +msgstr "删除参数" + +#: templates/js/translated/bom.js:924 msgid "Load BOM for subassembly" msgstr "" -#: templates/js/translated/bom.js:916 +#: templates/js/translated/bom.js:934 msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:920 templates/js/translated/build.js:2090 +#: templates/js/translated/bom.js:938 templates/js/translated/build.js:2422 msgid "Variant stock allowed" msgstr "" -#: templates/js/translated/bom.js:984 +#: templates/js/translated/bom.js:1002 msgid "Substitutes" msgstr "" -#: templates/js/translated/bom.js:1104 +#: templates/js/translated/bom.js:1122 msgid "BOM pricing is complete" msgstr "" -#: templates/js/translated/bom.js:1109 +#: templates/js/translated/bom.js:1127 msgid "BOM pricing is incomplete" msgstr "" -#: templates/js/translated/bom.js:1116 +#: templates/js/translated/bom.js:1134 msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1147 templates/js/translated/build.js:2173 -#: templates/js/translated/sales_order.js:1887 +#: templates/js/translated/bom.js:1165 templates/js/translated/build.js:2516 +#: templates/js/translated/sales_order.js:1896 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1152 templates/js/translated/build.js:2177 +#: templates/js/translated/bom.js:1170 templates/js/translated/build.js:2520 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1154 templates/js/translated/build.js:2179 -#: templates/js/translated/part.js:1230 +#: templates/js/translated/bom.js:1172 templates/js/translated/build.js:2522 +#: templates/js/translated/part.js:1229 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1156 templates/js/translated/build.js:2181 +#: templates/js/translated/bom.js:1174 templates/js/translated/build.js:2524 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2164 -#: templates/js/translated/build.js:2255 +#: templates/js/translated/bom.js:1204 templates/js/translated/build.js:2507 msgid "Consumable item" msgstr "" -#: templates/js/translated/bom.js:1244 +#: templates/js/translated/bom.js:1264 msgid "Validate BOM Item" msgstr "" -#: templates/js/translated/bom.js:1246 +#: templates/js/translated/bom.js:1266 msgid "This line has been validated" msgstr "" -#: templates/js/translated/bom.js:1248 +#: templates/js/translated/bom.js:1268 msgid "Edit substitute parts" msgstr "" -#: templates/js/translated/bom.js:1250 templates/js/translated/bom.js:1445 +#: templates/js/translated/bom.js:1270 templates/js/translated/bom.js:1465 msgid "Edit BOM Item" msgstr "" -#: templates/js/translated/bom.js:1252 +#: templates/js/translated/bom.js:1272 msgid "Delete BOM Item" msgstr "" -#: templates/js/translated/bom.js:1272 +#: templates/js/translated/bom.js:1292 msgid "View BOM" msgstr "" -#: templates/js/translated/bom.js:1356 templates/js/translated/build.js:1927 +#: templates/js/translated/bom.js:1376 msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1616 templates/js/translated/build.js:2073 +#: templates/js/translated/bom.js:1636 templates/js/translated/build.js:2407 msgid "Required Part" msgstr "" -#: templates/js/translated/bom.js:1642 +#: templates/js/translated/bom.js:1662 msgid "Inherited from parent BOM" msgstr "" -#: templates/js/translated/build.js:126 +#: templates/js/translated/build.js:136 msgid "Edit Build Order" msgstr "" -#: templates/js/translated/build.js:169 +#: templates/js/translated/build.js:179 msgid "Create Build Order" msgstr "" -#: templates/js/translated/build.js:202 +#: templates/js/translated/build.js:211 msgid "Cancel Build Order" msgstr "" -#: templates/js/translated/build.js:211 +#: templates/js/translated/build.js:220 msgid "Are you sure you wish to cancel this build?" msgstr "是否确定取消生产?" -#: templates/js/translated/build.js:217 +#: templates/js/translated/build.js:226 msgid "Stock items have been allocated to this build order" msgstr "" -#: templates/js/translated/build.js:224 +#: templates/js/translated/build.js:233 msgid "There are incomplete outputs remaining for this build order" msgstr "" -#: templates/js/translated/build.js:276 +#: templates/js/translated/build.js:285 msgid "Build order is ready to be completed" msgstr "" -#: templates/js/translated/build.js:284 +#: templates/js/translated/build.js:293 msgid "This build order cannot be completed as there are incomplete outputs" msgstr "" -#: templates/js/translated/build.js:289 +#: templates/js/translated/build.js:298 msgid "Build Order is incomplete" msgstr "生产订单未完成" -#: templates/js/translated/build.js:307 +#: templates/js/translated/build.js:316 msgid "Complete Build Order" msgstr "生产订单完成" -#: templates/js/translated/build.js:348 templates/js/translated/stock.js:119 -#: templates/js/translated/stock.js:265 +#: templates/js/translated/build.js:357 templates/js/translated/stock.js:118 +#: templates/js/translated/stock.js:264 msgid "Next available serial number" msgstr "" -#: templates/js/translated/build.js:350 templates/js/translated/stock.js:121 -#: templates/js/translated/stock.js:267 +#: templates/js/translated/build.js:359 templates/js/translated/stock.js:120 +#: templates/js/translated/stock.js:266 msgid "Latest serial number" msgstr "" -#: templates/js/translated/build.js:359 +#: templates/js/translated/build.js:368 msgid "The Bill of Materials contains trackable parts" msgstr "" -#: templates/js/translated/build.js:360 +#: templates/js/translated/build.js:369 msgid "Build outputs must be generated individually" msgstr "" -#: templates/js/translated/build.js:368 +#: templates/js/translated/build.js:377 msgid "Trackable parts can have serial numbers specified" msgstr "可追踪商品可以指定序列号" -#: templates/js/translated/build.js:369 +#: templates/js/translated/build.js:378 msgid "Enter serial numbers to generate multiple single build outputs" msgstr "" -#: templates/js/translated/build.js:376 +#: templates/js/translated/build.js:385 msgid "Create Build Output" msgstr "创建创建生产产出" -#: templates/js/translated/build.js:407 +#: templates/js/translated/build.js:416 msgid "Allocate stock items to this build output" msgstr "" -#: templates/js/translated/build.js:418 -msgid "Unallocate stock from build output" -msgstr "" +#: templates/js/translated/build.js:424 +#, fuzzy +#| msgid "Manually allocate stock to build" +msgid "Deallocate stock from build output" +msgstr "手动分配存货进行生成" -#: templates/js/translated/build.js:427 +#: templates/js/translated/build.js:433 msgid "Complete build output" msgstr "" -#: templates/js/translated/build.js:435 +#: templates/js/translated/build.js:441 #, fuzzy #| msgid "Build output" msgid "Scrap build output" msgstr "生产产出" -#: templates/js/translated/build.js:442 +#: templates/js/translated/build.js:448 msgid "Delete build output" msgstr "" -#: templates/js/translated/build.js:462 -msgid "Are you sure you wish to unallocate stock items from this build?" -msgstr "" +#: templates/js/translated/build.js:468 +#, fuzzy +#| msgid "Are you sure you wish to cancel this build?" +msgid "Are you sure you wish to deallocate the selected stock items from this build?" +msgstr "是否确定取消生产?" -#: templates/js/translated/build.js:480 -msgid "Unallocate Stock Items" -msgstr "" +#: templates/js/translated/build.js:486 +#, fuzzy +#| msgid "Select Stock Items" +msgid "Deallocate Stock Items" +msgstr "选择库存项" -#: templates/js/translated/build.js:566 templates/js/translated/build.js:690 -#: templates/js/translated/build.js:812 +#: templates/js/translated/build.js:572 templates/js/translated/build.js:696 +#: templates/js/translated/build.js:818 msgid "Select Build Outputs" msgstr "" -#: templates/js/translated/build.js:567 templates/js/translated/build.js:691 -#: templates/js/translated/build.js:813 +#: templates/js/translated/build.js:573 templates/js/translated/build.js:697 +#: templates/js/translated/build.js:819 msgid "At least one build output must be selected" msgstr "" -#: templates/js/translated/build.js:581 +#: templates/js/translated/build.js:587 #, fuzzy #| msgid "Delete any build outputs which have not been completed" msgid "Selected build outputs will be marked as complete" msgstr "删除所有未完成的生产产出" -#: templates/js/translated/build.js:585 templates/js/translated/build.js:715 -#: templates/js/translated/build.js:835 +#: templates/js/translated/build.js:591 templates/js/translated/build.js:721 +#: templates/js/translated/build.js:841 msgid "Output" msgstr "" -#: templates/js/translated/build.js:609 +#: templates/js/translated/build.js:615 msgid "Complete Build Outputs" msgstr "" -#: templates/js/translated/build.js:706 +#: templates/js/translated/build.js:712 #, fuzzy #| msgid "Delete any build outputs which have not been completed" msgid "Selected build outputs will be marked as scrapped" msgstr "删除所有未完成的生产产出" -#: templates/js/translated/build.js:708 +#: templates/js/translated/build.js:714 #, fuzzy #| msgid "Delete any build outputs which have not been completed" msgid "Scrapped output are marked as rejected" msgstr "删除所有未完成的生产产出" -#: templates/js/translated/build.js:709 +#: templates/js/translated/build.js:715 #, fuzzy #| msgid "Stock item is over-allocated" msgid "Allocated stock items will no longer be available" msgstr "库存物品分配过度!" -#: templates/js/translated/build.js:710 +#: templates/js/translated/build.js:716 msgid "The completion status of the build order will not be adjusted" msgstr "" -#: templates/js/translated/build.js:737 +#: templates/js/translated/build.js:743 #, fuzzy #| msgid "Create Build Output" msgid "Scrap Build Outputs" msgstr "创建创建生产产出" -#: templates/js/translated/build.js:827 +#: templates/js/translated/build.js:833 #, fuzzy #| msgid "All selected supplier parts will be deleted" msgid "Selected build outputs will be deleted" msgstr "删除所有选定的供应商商品" -#: templates/js/translated/build.js:829 +#: templates/js/translated/build.js:835 #, fuzzy #| msgid "Build output is already completed" msgid "Build output data will be permanently deleted" msgstr "生产产出已完成" -#: templates/js/translated/build.js:830 +#: templates/js/translated/build.js:836 #, fuzzy #| msgid "All selected supplier parts will be deleted" msgid "Allocated stock items will be returned to stock" msgstr "删除所有选定的供应商商品" -#: templates/js/translated/build.js:848 +#: templates/js/translated/build.js:854 msgid "Delete Build Outputs" msgstr "" -#: templates/js/translated/build.js:934 +#: templates/js/translated/build.js:941 msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:971 +#: templates/js/translated/build.js:970 templates/js/translated/build.js:2263 +#, fuzzy +#| msgid "Allocated Parts" +msgid "Allocated Quantity" +msgstr "已分配的部件" + +#: templates/js/translated/build.js:984 msgid "Location not specified" msgstr "未指定仓储地点" -#: templates/js/translated/build.js:1047 +#: templates/js/translated/build.js:1006 +msgid "Complete outputs" +msgstr "已完成输出" + +#: templates/js/translated/build.js:1024 +#, fuzzy +#| msgid "Complete outputs" +msgid "Scrap outputs" +msgstr "已完成输出" + +#: templates/js/translated/build.js:1042 +msgid "Delete outputs" +msgstr "删除输出" + +#: templates/js/translated/build.js:1096 #, fuzzy #| msgid "Build output" msgid "build output" msgstr "生产产出" -#: templates/js/translated/build.js:1048 +#: templates/js/translated/build.js:1097 #, fuzzy #| msgid "Build output" msgid "build outputs" msgstr "生产产出" -#: templates/js/translated/build.js:1383 +#: templates/js/translated/build.js:1101 +#, fuzzy +#| msgid "Build actions" +msgid "Build output actions" +msgstr "生产操作" + +#: templates/js/translated/build.js:1270 msgid "No active build outputs found" msgstr "" -#: templates/js/translated/build.js:1457 -msgid "Allocated Stock" +#: templates/js/translated/build.js:1325 +#, fuzzy +#| msgid "Allocated Parts" +msgid "Allocated Lines" +msgstr "已分配的部件" + +#: templates/js/translated/build.js:1339 +msgid "Required Tests" msgstr "" -#: templates/js/translated/build.js:1464 -msgid "No tracked BOM items for this build" -msgstr "" - -#: templates/js/translated/build.js:1486 -msgid "Completed Tests" -msgstr "" - -#: templates/js/translated/build.js:1491 -msgid "No required tests for this build" -msgstr "" - -#: templates/js/translated/build.js:2032 templates/js/translated/build.js:3056 -#: templates/js/translated/sales_order.js:1632 -msgid "Edit stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2034 templates/js/translated/build.js:3057 -#: templates/js/translated/sales_order.js:1633 -msgid "Delete stock allocation" -msgstr "" - -#: templates/js/translated/build.js:2050 -msgid "Edit Allocation" -msgstr "" - -#: templates/js/translated/build.js:2060 -msgid "Remove Allocation" -msgstr "" - -#: templates/js/translated/build.js:2086 -msgid "Substitute parts available" -msgstr "" - -#: templates/js/translated/build.js:2122 -msgid "Quantity Per" -msgstr "" - -#: templates/js/translated/build.js:2167 -#: templates/js/translated/sales_order.js:1894 -msgid "Insufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2169 -#: templates/js/translated/sales_order.js:1892 -msgid "Sufficient stock available" -msgstr "" - -#: templates/js/translated/build.js:2263 -#: templates/js/translated/sales_order.js:1993 -msgid "Build stock" -msgstr "" - -#: templates/js/translated/build.js:2267 templates/stock_table.html:38 -msgid "Order stock" -msgstr "" - -#: templates/js/translated/build.js:2270 -#: templates/js/translated/sales_order.js:1987 -msgid "Allocate stock" -msgstr "" - -#: templates/js/translated/build.js:2310 -#: templates/js/translated/purchase_order.js:616 -#: templates/js/translated/sales_order.js:1159 +#: templates/js/translated/build.js:1498 +#: templates/js/translated/purchase_order.js:627 +#: templates/js/translated/sales_order.js:1168 msgid "Select Parts" msgstr "选择商品" -#: templates/js/translated/build.js:2311 -#: templates/js/translated/sales_order.js:1160 +#: templates/js/translated/build.js:1499 +#: templates/js/translated/sales_order.js:1169 msgid "You must select at least one part to allocate" msgstr "" -#: templates/js/translated/build.js:2359 -#: templates/js/translated/sales_order.js:1109 +#: templates/js/translated/build.js:1562 +#: templates/js/translated/sales_order.js:1118 msgid "Specify stock allocation quantity" msgstr "" -#: templates/js/translated/build.js:2438 +#: templates/js/translated/build.js:1639 msgid "All Parts Allocated" msgstr "" -#: templates/js/translated/build.js:2439 +#: templates/js/translated/build.js:1640 msgid "All selected parts have been fully allocated" msgstr "" -#: templates/js/translated/build.js:2453 -#: templates/js/translated/sales_order.js:1174 +#: templates/js/translated/build.js:1654 +#: templates/js/translated/sales_order.js:1183 msgid "Select source location (leave blank to take from all locations)" msgstr "" -#: templates/js/translated/build.js:2481 +#: templates/js/translated/build.js:1682 msgid "Allocate Stock Items to Build Order" msgstr "" -#: templates/js/translated/build.js:2492 -#: templates/js/translated/sales_order.js:1271 +#: templates/js/translated/build.js:1693 +#: templates/js/translated/sales_order.js:1280 msgid "No matching stock locations" msgstr "" -#: templates/js/translated/build.js:2565 -#: templates/js/translated/sales_order.js:1348 +#: templates/js/translated/build.js:1766 +#: templates/js/translated/sales_order.js:1357 msgid "No matching stock items" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:1863 msgid "Automatic Stock Allocation" msgstr "" -#: templates/js/translated/build.js:2663 +#: templates/js/translated/build.js:1864 msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" msgstr "" -#: templates/js/translated/build.js:2665 +#: templates/js/translated/build.js:1866 msgid "If a location is specified, stock will only be allocated from that location" msgstr "" -#: templates/js/translated/build.js:2666 +#: templates/js/translated/build.js:1867 msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" msgstr "" -#: templates/js/translated/build.js:2667 +#: templates/js/translated/build.js:1868 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:2694 +#: templates/js/translated/build.js:1895 msgid "Allocate Stock Items" msgstr "" -#: templates/js/translated/build.js:2800 +#: templates/js/translated/build.js:2001 msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2835 templates/js/translated/part.js:2208 -#: templates/js/translated/part.js:2692 templates/js/translated/stock.js:1759 -#: templates/js/translated/stock.js:2458 +#: templates/js/translated/build.js:2036 templates/js/translated/build.js:2401 +#: templates/js/translated/part.js:2281 templates/js/translated/part.js:2674 +#: templates/js/translated/stock.js:1915 templates/js/translated/stock.js:2603 msgid "Select" msgstr "" -#: templates/js/translated/build.js:2849 +#: templates/js/translated/build.js:2050 msgid "Build order is overdue" msgstr "" -#: templates/js/translated/build.js:2883 +#: templates/js/translated/build.js:2096 msgid "Progress" msgstr "" -#: templates/js/translated/build.js:2919 templates/js/translated/stock.js:2779 +#: templates/js/translated/build.js:2132 templates/js/translated/stock.js:2924 msgid "No user information" msgstr "没有用户信息" -#: templates/js/translated/build.js:2934 +#: templates/js/translated/build.js:2147 msgid "group" msgstr "" -#: templates/js/translated/build.js:3033 -msgid "No parts allocated for" +#: templates/js/translated/build.js:2308 +#: templates/js/translated/sales_order.js:1641 +msgid "Edit stock allocation" msgstr "" -#: templates/js/translated/company.js:87 +#: templates/js/translated/build.js:2309 +#: templates/js/translated/sales_order.js:1642 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2324 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2336 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2377 +#, fuzzy +#| msgid "Build actions" +msgid "build line" +msgstr "生产操作" + +#: templates/js/translated/build.js:2378 +#, fuzzy +#| msgid "Build actions" +msgid "build lines" +msgstr "生产操作" + +#: templates/js/translated/build.js:2396 +#, fuzzy +#| msgid "Subcategories" +msgid "No build lines found" +msgstr "子类别" + +#: templates/js/translated/build.js:2426 templates/js/translated/part.js:767 +#: templates/js/translated/part.js:1175 +msgid "Trackable part" +msgstr "可追溯商品" + +#: templates/js/translated/build.js:2461 +#, fuzzy +#| msgid "Quantity" +msgid "Unit Quantity" +msgstr "数量" + +#: templates/js/translated/build.js:2510 +#: templates/js/translated/sales_order.js:1903 +msgid "Insufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2512 +#: templates/js/translated/sales_order.js:1901 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2559 +#, fuzzy +#| msgid "Minimum Stock" +msgid "Consumable Item" +msgstr "最低库存" + +#: templates/js/translated/build.js:2564 +#, fuzzy +#| msgid "Stock Item" +msgid "Tracked item" +msgstr "库存项" + +#: templates/js/translated/build.js:2571 +#: templates/js/translated/sales_order.js:2002 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2576 templates/js/translated/stock.js:1798 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2580 +#: templates/js/translated/sales_order.js:1996 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2584 +#, fuzzy +#| msgid "Confirm stock allocation" +msgid "Remove stock allocation" +msgstr "确认库存分配" + +#: templates/js/translated/company.js:97 msgid "Add Manufacturer" msgstr "添加制造商" -#: templates/js/translated/company.js:100 -#: templates/js/translated/company.js:202 +#: templates/js/translated/company.js:110 +#: templates/js/translated/company.js:212 msgid "Add Manufacturer Part" msgstr "添加制造商商品" -#: templates/js/translated/company.js:121 +#: templates/js/translated/company.js:131 msgid "Edit Manufacturer Part" msgstr "编辑制造商商品" -#: templates/js/translated/company.js:190 -#: templates/js/translated/purchase_order.js:94 +#: templates/js/translated/company.js:200 +#: templates/js/translated/purchase_order.js:93 msgid "Add Supplier" msgstr "添加供应商" -#: templates/js/translated/company.js:232 -#: templates/js/translated/purchase_order.js:338 +#: templates/js/translated/company.js:242 +#: templates/js/translated/purchase_order.js:349 msgid "Add Supplier Part" msgstr "添加供应商商品" -#: templates/js/translated/company.js:333 +#: templates/js/translated/company.js:343 msgid "All selected supplier parts will be deleted" msgstr "删除所有选定的供应商商品" -#: templates/js/translated/company.js:349 +#: templates/js/translated/company.js:359 msgid "Delete Supplier Parts" msgstr "" -#: templates/js/translated/company.js:457 +#: templates/js/translated/company.js:464 msgid "Add new Company" msgstr "增加新的公司信息" -#: templates/js/translated/company.js:528 +#: templates/js/translated/company.js:535 msgid "Parts Supplied" msgstr "" -#: templates/js/translated/company.js:537 +#: templates/js/translated/company.js:544 msgid "Parts Manufactured" msgstr "" -#: templates/js/translated/company.js:552 +#: templates/js/translated/company.js:559 msgid "No company information found" msgstr "未找到该公司信息" -#: templates/js/translated/company.js:601 +#: templates/js/translated/company.js:608 #, fuzzy #| msgid "Create new part" msgid "Create New Contact" msgstr "新建商品" -#: templates/js/translated/company.js:617 -#: templates/js/translated/company.js:740 +#: templates/js/translated/company.js:624 +#: templates/js/translated/company.js:747 #, fuzzy #| msgid "Contact" msgid "Edit Contact" msgstr "联系人" -#: templates/js/translated/company.js:654 +#: templates/js/translated/company.js:661 #, fuzzy #| msgid "All selected supplier parts will be deleted" msgid "All selected contacts will be deleted" msgstr "删除所有选定的供应商商品" -#: templates/js/translated/company.js:660 -#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:667 +#: templates/js/translated/company.js:731 msgid "Role" msgstr "" -#: templates/js/translated/company.js:668 +#: templates/js/translated/company.js:675 #, fuzzy #| msgid "Delete outputs" msgid "Delete Contacts" msgstr "删除输出" -#: templates/js/translated/company.js:699 +#: templates/js/translated/company.js:706 #, fuzzy #| msgid "No matching action found" msgid "No contacts found" msgstr "未找到指定操作" -#: templates/js/translated/company.js:712 +#: templates/js/translated/company.js:719 #, fuzzy #| msgid "Phone number" msgid "Phone Number" msgstr "电话号码" -#: templates/js/translated/company.js:718 +#: templates/js/translated/company.js:725 #, fuzzy #| msgid "Address" msgid "Email Address" msgstr "地址" -#: templates/js/translated/company.js:744 +#: templates/js/translated/company.js:751 #, fuzzy #| msgid "Delete part" msgid "Delete Contact" msgstr "删除商品" -#: templates/js/translated/company.js:818 +#: templates/js/translated/company.js:886 +#, fuzzy +#| msgid "Create new part" +msgid "Create New Address" +msgstr "新建商品" + +#: templates/js/translated/company.js:901 +#: templates/js/translated/company.js:1066 +#, fuzzy +#| msgid "Address" +msgid "Edit Address" +msgstr "地址" + +#: templates/js/translated/company.js:936 +#, fuzzy +#| msgid "All selected supplier parts will be deleted" +msgid "All selected addresses will be deleted" +msgstr "删除所有选定的供应商商品" + +#: templates/js/translated/company.js:950 +#, fuzzy +#| msgid "Delete parameters" +msgid "Delete Addresses" +msgstr "删除参数" + +#: templates/js/translated/company.js:977 +#, fuzzy +#| msgid "No parameters found" +msgid "No addresses found" +msgstr "无指定参数" + +#: templates/js/translated/company.js:1020 +#, fuzzy +#| msgid "Install into" +msgid "Postal city" +msgstr "安装到" + +#: templates/js/translated/company.js:1026 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1038 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1044 +#, fuzzy +#| msgid "Internal Prices" +msgid "Internal notes" +msgstr "内部价格" + +#: templates/js/translated/company.js:1070 +#, fuzzy +#| msgid "Delete parts" +msgid "Delete Address" +msgstr "删除商品" + +#: templates/js/translated/company.js:1143 msgid "All selected manufacturer parts will be deleted" msgstr "" -#: templates/js/translated/company.js:833 +#: templates/js/translated/company.js:1158 msgid "Delete Manufacturer Parts" msgstr "删除制造商商品" -#: templates/js/translated/company.js:867 +#: templates/js/translated/company.js:1192 msgid "All selected parameters will be deleted" msgstr "" -#: templates/js/translated/company.js:881 +#: templates/js/translated/company.js:1206 msgid "Delete Parameters" msgstr "删除参数" -#: templates/js/translated/company.js:917 +#: templates/js/translated/company.js:1222 +#: templates/js/translated/company.js:1510 templates/js/translated/part.js:2209 +msgid "Order parts" +msgstr "订购商品" + +#: templates/js/translated/company.js:1239 +msgid "Delete manufacturer parts" +msgstr "删除制造商商品" + +#: templates/js/translated/company.js:1271 +#, fuzzy +#| msgid "Manufacturer part description" +msgid "Manufacturer part actions" +msgstr "制造商商品描述" + +#: templates/js/translated/company.js:1290 msgid "No manufacturer parts found" msgstr "" -#: templates/js/translated/company.js:937 -#: templates/js/translated/company.js:1177 templates/js/translated/part.js:776 -#: templates/js/translated/part.js:1184 +#: templates/js/translated/company.js:1310 +#: templates/js/translated/company.js:1598 templates/js/translated/part.js:775 +#: templates/js/translated/part.js:1183 msgid "Template part" msgstr "" -#: templates/js/translated/company.js:941 -#: templates/js/translated/company.js:1181 templates/js/translated/part.js:780 -#: templates/js/translated/part.js:1188 +#: templates/js/translated/company.js:1314 +#: templates/js/translated/company.js:1602 templates/js/translated/part.js:779 +#: templates/js/translated/part.js:1187 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1061 templates/js/translated/part.js:1437 +#: templates/js/translated/company.js:1434 templates/js/translated/part.js:1436 msgid "No parameters found" msgstr "无指定参数" -#: templates/js/translated/company.js:1096 templates/js/translated/part.js:1500 +#: templates/js/translated/company.js:1469 templates/js/translated/part.js:1499 msgid "Edit parameter" msgstr "编辑参数" -#: templates/js/translated/company.js:1097 templates/js/translated/part.js:1501 +#: templates/js/translated/company.js:1470 templates/js/translated/part.js:1500 msgid "Delete parameter" msgstr "删除参数" -#: templates/js/translated/company.js:1114 templates/js/translated/part.js:1407 +#: templates/js/translated/company.js:1487 templates/js/translated/part.js:1406 msgid "Edit Parameter" msgstr "编辑参数" -#: templates/js/translated/company.js:1123 templates/js/translated/part.js:1522 +#: templates/js/translated/company.js:1496 templates/js/translated/part.js:1521 msgid "Delete Parameter" msgstr "删除参数" -#: templates/js/translated/company.js:1156 +#: templates/js/translated/company.js:1527 +msgid "Delete supplier parts" +msgstr "删除供应商商品" + +#: templates/js/translated/company.js:1577 msgid "No supplier parts found" msgstr "未找到供应商商品" -#: templates/js/translated/company.js:1274 +#: templates/js/translated/company.js:1695 #, fuzzy #| msgid "Units" msgid "Base Units" msgstr "单位" -#: templates/js/translated/company.js:1304 +#: templates/js/translated/company.js:1725 msgid "Availability" msgstr "" -#: templates/js/translated/company.js:1335 +#: templates/js/translated/company.js:1756 msgid "Edit supplier part" msgstr "编辑供应商商品" -#: templates/js/translated/company.js:1336 +#: templates/js/translated/company.js:1757 msgid "Delete supplier part" msgstr "删除供应商商品" -#: templates/js/translated/company.js:1389 +#: templates/js/translated/company.js:1810 #: templates/js/translated/pricing.js:694 msgid "Delete Price Break" msgstr "" -#: templates/js/translated/company.js:1399 +#: templates/js/translated/company.js:1820 #: templates/js/translated/pricing.js:712 msgid "Edit Price Break" msgstr "" -#: templates/js/translated/company.js:1414 +#: templates/js/translated/company.js:1835 msgid "No price break information found" msgstr "" -#: templates/js/translated/company.js:1443 +#: templates/js/translated/company.js:1864 msgid "Last updated" msgstr "" -#: templates/js/translated/company.js:1450 +#: templates/js/translated/company.js:1871 msgid "Edit price break" msgstr "" -#: templates/js/translated/company.js:1451 +#: templates/js/translated/company.js:1872 msgid "Delete price break" msgstr "" #: templates/js/translated/filters.js:186 -#: templates/js/translated/filters.js:550 +#: templates/js/translated/filters.js:672 msgid "true" msgstr "" #: templates/js/translated/filters.js:190 -#: templates/js/translated/filters.js:551 +#: templates/js/translated/filters.js:673 msgid "false" msgstr "" @@ -10716,35 +10915,35 @@ msgstr "" msgid "Select filter" msgstr "选择筛选项" -#: templates/js/translated/filters.js:328 +#: templates/js/translated/filters.js:437 msgid "Print Labels" msgstr "打印标签" -#: templates/js/translated/filters.js:332 +#: templates/js/translated/filters.js:441 #, fuzzy #| msgid "Print Order Reports" msgid "Print Reports" msgstr "打印订单报表" -#: templates/js/translated/filters.js:344 +#: templates/js/translated/filters.js:453 #, fuzzy #| msgid "Download Image" msgid "Download table data" msgstr "下载图片" -#: templates/js/translated/filters.js:351 +#: templates/js/translated/filters.js:460 msgid "Reload table data" msgstr "" -#: templates/js/translated/filters.js:360 +#: templates/js/translated/filters.js:469 msgid "Add new filter" msgstr "" -#: templates/js/translated/filters.js:368 +#: templates/js/translated/filters.js:477 msgid "Clear all filters" msgstr "" -#: templates/js/translated/filters.js:460 +#: templates/js/translated/filters.js:582 msgid "Create filter" msgstr "" @@ -10769,6 +10968,12 @@ msgstr "" msgid "View operation not allowed" msgstr "" +#: templates/js/translated/forms.js:506 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:369 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:215 users/models.py:253 +msgid "Delete" +msgstr "删除" + #: templates/js/translated/forms.js:752 msgid "Keep this form open" msgstr "" @@ -10786,23 +10991,23 @@ msgstr "" msgid "No results found" msgstr "" -#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:281 +#: templates/js/translated/forms.js:2071 templates/js/translated/search.js:239 msgid "Searching" msgstr "" -#: templates/js/translated/forms.js:2276 +#: templates/js/translated/forms.js:2285 msgid "Clear input" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "File Column" msgstr "" -#: templates/js/translated/forms.js:2733 +#: templates/js/translated/forms.js:2742 msgid "Field Name" msgstr "" -#: templates/js/translated/forms.js:2745 +#: templates/js/translated/forms.js:2754 msgid "Select Columns" msgstr "" @@ -10822,6 +11027,16 @@ msgstr "" msgid "False" msgstr "" +#: templates/js/translated/index.js:104 +#, fuzzy +#| msgid "Stock required for build order" +msgid "No parts required for builds" +msgstr "生产订单所需的库存" + +#: templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + #: templates/js/translated/label.js:58 msgid "Select Printer" msgstr "" @@ -10931,7 +11146,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:45 -#: templates/js/translated/part.js:1577 +#: templates/js/translated/part.js:1576 msgid "ID" msgstr "" @@ -10980,7 +11195,7 @@ msgid "Delete Line" msgstr "" #: templates/js/translated/order.js:281 -#: templates/js/translated/purchase_order.js:1958 +#: templates/js/translated/purchase_order.js:1965 msgid "No line items found" msgstr "" @@ -10996,378 +11211,434 @@ msgstr "" msgid "Delete line" msgstr "" -#: templates/js/translated/part.js:91 +#: templates/js/translated/part.js:90 msgid "Part Attributes" msgstr "商品属性" -#: templates/js/translated/part.js:95 +#: templates/js/translated/part.js:94 msgid "Part Creation Options" msgstr "商品创建选项" -#: templates/js/translated/part.js:99 +#: templates/js/translated/part.js:98 msgid "Part Duplication Options" msgstr "商品重复选项" -#: templates/js/translated/part.js:122 +#: templates/js/translated/part.js:121 msgid "Add Part Category" msgstr "增加商品类别" -#: templates/js/translated/part.js:294 +#: templates/js/translated/part.js:293 msgid "Parent part category" msgstr "" -#: templates/js/translated/part.js:310 templates/js/translated/stock.js:147 +#: templates/js/translated/part.js:309 templates/js/translated/stock.js:146 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:330 +#: templates/js/translated/part.js:329 msgid "Create Part Category" msgstr "创建商品类别" -#: templates/js/translated/part.js:333 +#: templates/js/translated/part.js:332 #, fuzzy #| msgid "Create new part category" msgid "Create new category after this one" msgstr "新建商品类别" -#: templates/js/translated/part.js:334 +#: templates/js/translated/part.js:333 #, fuzzy #| msgid "Part category" msgid "Part category created" msgstr "商品类别" -#: templates/js/translated/part.js:348 +#: templates/js/translated/part.js:347 msgid "Edit Part Category" msgstr "编辑商品类别" -#: templates/js/translated/part.js:361 +#: templates/js/translated/part.js:360 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:366 +#: templates/js/translated/part.js:365 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:375 +#: templates/js/translated/part.js:374 msgid "Delete Part Category" msgstr "删除商品类别" -#: templates/js/translated/part.js:379 +#: templates/js/translated/part.js:378 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:408 +#: templates/js/translated/part.js:407 msgid "Create Part" msgstr "创建商品" -#: templates/js/translated/part.js:410 +#: templates/js/translated/part.js:409 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:411 +#: templates/js/translated/part.js:410 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:439 +#: templates/js/translated/part.js:438 msgid "Edit Part" msgstr "编辑商品" -#: templates/js/translated/part.js:441 +#: templates/js/translated/part.js:440 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:452 +#: templates/js/translated/part.js:451 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:509 +#: templates/js/translated/part.js:508 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:510 +#: templates/js/translated/part.js:509 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:524 +#: templates/js/translated/part.js:523 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:526 +#: templates/js/translated/part.js:525 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:527 +#: templates/js/translated/part.js:526 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:528 +#: templates/js/translated/part.js:527 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:535 +#: templates/js/translated/part.js:534 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:571 +#: templates/js/translated/part.js:570 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:573 +#: templates/js/translated/part.js:572 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:578 +#: templates/js/translated/part.js:577 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:580 +#: templates/js/translated/part.js:579 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:597 +#: templates/js/translated/part.js:596 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:607 +#: templates/js/translated/part.js:606 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:610 +#: templates/js/translated/part.js:609 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:635 +#: templates/js/translated/part.js:634 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:663 -#: templates/js/translated/table_filters.js:649 +#: templates/js/translated/part.js:662 +#: templates/js/translated/table_filters.js:682 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:666 +#: templates/js/translated/part.js:665 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:726 +#: templates/js/translated/part.js:725 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:768 templates/js/translated/part.js:1176 -msgid "Trackable part" -msgstr "可追溯商品" - -#: templates/js/translated/part.js:772 templates/js/translated/part.js:1180 +#: templates/js/translated/part.js:771 templates/js/translated/part.js:1179 msgid "Virtual part" msgstr "虚拟商品" -#: templates/js/translated/part.js:784 +#: templates/js/translated/part.js:783 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:788 +#: templates/js/translated/part.js:787 msgid "Salable part" msgstr "可销售商品" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:863 +#: templates/js/translated/part.js:862 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:871 +#: templates/js/translated/part.js:870 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:875 +#: templates/js/translated/part.js:874 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1024 +#: templates/js/translated/part.js:1023 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1082 templates/js/translated/part.js:1118 +#: templates/js/translated/part.js:1081 templates/js/translated/part.js:1117 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1086 templates/js/translated/part.js:1128 +#: templates/js/translated/part.js:1085 templates/js/translated/part.js:1127 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1255 +#: templates/js/translated/part.js:1254 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1572 +#: templates/js/translated/part.js:1571 msgid "No part parameter templates found" msgstr "未找到商品参数模板" -#: templates/js/translated/part.js:1635 +#: templates/js/translated/part.js:1634 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1646 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1655 +#: templates/js/translated/part.js:1654 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1689 -#: templates/js/translated/purchase_order.js:1618 +#: templates/js/translated/part.js:1688 +#: templates/js/translated/purchase_order.js:1633 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1832 -#: templates/js/translated/purchase_order.js:2121 -#: templates/js/translated/return_order.js:740 -#: templates/js/translated/sales_order.js:1855 +#: templates/js/translated/part.js:1831 +#: templates/js/translated/purchase_order.js:2128 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:1864 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1877 -#: templates/js/translated/purchase_order.js:2188 +#: templates/js/translated/part.js:1876 +#: templates/js/translated/purchase_order.js:2195 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1944 +#: templates/js/translated/part.js:1939 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1966 +#: templates/js/translated/part.js:1961 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2054 templates/js/translated/part.js:2366 +#: templates/js/translated/part.js:2049 templates/js/translated/part.js:2439 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2192 +#: templates/js/translated/part.js:2170 +msgid "Set the part category for the selected parts" +msgstr "" + +#: templates/js/translated/part.js:2175 +msgid "Set Part Category" +msgstr "设置商品类别" + +#: templates/js/translated/part.js:2200 +msgid "Set category" +msgstr "设置类别" + +#: templates/js/translated/part.js:2253 #, fuzzy #| msgid "Parts" msgid "parts" msgstr "商品" -#: templates/js/translated/part.js:2276 +#: templates/js/translated/part.js:2349 msgid "No category" msgstr "没有分类" -#: templates/js/translated/part.js:2390 templates/js/translated/part.js:2611 -#: templates/js/translated/stock.js:2417 +#: templates/js/translated/part.js:2463 templates/js/translated/part.js:2593 +#: templates/js/translated/stock.js:2562 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2406 +#: templates/js/translated/part.js:2479 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2472 -msgid "Set the part category for the selected parts" -msgstr "" - -#: templates/js/translated/part.js:2477 -msgid "Set Part Category" -msgstr "设置商品类别" - -#: templates/js/translated/part.js:2482 -msgid "Select Part Category" -msgstr "" - -#: templates/js/translated/part.js:2495 -msgid "Category is required" -msgstr "" - -#: templates/js/translated/part.js:2595 +#: templates/js/translated/part.js:2577 #, fuzzy #| msgid "Subcategories" msgid "No subcategories found" msgstr "子类别" -#: templates/js/translated/part.js:2631 templates/js/translated/stock.js:2437 +#: templates/js/translated/part.js:2613 templates/js/translated/stock.js:2582 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2711 +#: templates/js/translated/part.js:2693 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2727 +#: templates/js/translated/part.js:2709 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2807 +#: templates/js/translated/part.js:2786 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2858 templates/js/translated/stock.js:1380 +#: templates/js/translated/part.js:2837 templates/js/translated/stock.js:1398 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2859 templates/js/translated/stock.js:1381 -#: templates/js/translated/stock.js:1643 +#: templates/js/translated/part.js:2838 templates/js/translated/stock.js:1399 +#: templates/js/translated/stock.js:1661 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2863 +#: templates/js/translated/part.js:2842 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2879 +#: templates/js/translated/part.js:2858 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2893 +#: templates/js/translated/part.js:2872 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 templates/js/translated/part.js:2973 +#: templates/js/translated/part.js:2951 templates/js/translated/part.js:2952 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:2975 +#: templates/js/translated/part.js:2954 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:2981 +#: templates/js/translated/part.js:2960 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3031 +#: templates/js/translated/part.js:3010 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3037 +#: templates/js/translated/part.js:3016 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3133 +#: templates/js/translated/part.js:3112 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3149 +#: templates/js/translated/part.js:3128 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3194 +#: templates/js/translated/part.js:3173 msgid "Minimum Stock Level" msgstr "" -#: templates/js/translated/plugin.js:26 +#: templates/js/translated/plugin.js:45 +#, fuzzy +#| msgid "Subcategories" +msgid "No plugins found" +msgstr "子类别" + +#: templates/js/translated/plugin.js:54 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:56 +#, fuzzy +#| msgid "Print actions" +msgid "This plugin is not active" +msgstr "打印操作" + +#: templates/js/translated/plugin.js:62 +#, fuzzy +#| msgid "Build Description" +msgid "Plugin Description" +msgstr "构建描述" + +#: templates/js/translated/plugin.js:81 +msgid "Sample" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:183 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:183 +#, fuzzy +#| msgid "Enabled" +msgid "Enable Plugin" +msgstr "已启用" + +#: templates/js/translated/plugin.js:158 msgid "The Plugin was installed" msgstr "" +#: templates/js/translated/plugin.js:174 +#, fuzzy +#| msgid "Are you sure you want to delete this stock location?" +msgid "Are you sure you want to enable this plugin?" +msgstr "确实要删除此仓储地点吗?" + +#: templates/js/translated/plugin.js:178 +#, fuzzy +#| msgid "Are you sure you want to delete this stock location?" +msgid "Are you sure you want to disable this plugin?" +msgstr "确实要删除此仓储地点吗?" + +#: templates/js/translated/plugin.js:186 +#, fuzzy +#| msgid "Enabled" +msgid "Enable" +msgstr "已启用" + +#: templates/js/translated/plugin.js:186 +#, fuzzy +#| msgid "Available" +msgid "Disable" +msgstr "空闲" + +#: templates/js/translated/plugin.js:200 +msgid "Plugin updated" +msgstr "" + #: templates/js/translated/pricing.js:159 msgid "Error fetching currency data" msgstr "" @@ -11408,250 +11679,250 @@ msgstr "" msgid "Variant Part" msgstr "" -#: templates/js/translated/purchase_order.js:155 +#: templates/js/translated/purchase_order.js:166 msgid "Select purchase order to duplicate" msgstr "" -#: templates/js/translated/purchase_order.js:162 +#: templates/js/translated/purchase_order.js:173 msgid "Duplicate Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:163 +#: templates/js/translated/purchase_order.js:174 msgid "Duplicate all line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:170 +#: templates/js/translated/purchase_order.js:181 msgid "Duplicate Extra Lines" msgstr "" -#: templates/js/translated/purchase_order.js:171 +#: templates/js/translated/purchase_order.js:182 msgid "Duplicate extra line items from the selected order" msgstr "" -#: templates/js/translated/purchase_order.js:192 +#: templates/js/translated/purchase_order.js:203 msgid "Edit Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:209 +#: templates/js/translated/purchase_order.js:220 msgid "Duplication Options" msgstr "" -#: templates/js/translated/purchase_order.js:436 +#: templates/js/translated/purchase_order.js:447 msgid "Complete Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:453 -#: templates/js/translated/return_order.js:195 -#: templates/js/translated/sales_order.js:485 +#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/return_order.js:207 +#: templates/js/translated/sales_order.js:497 msgid "Mark this order as complete?" msgstr "" -#: templates/js/translated/purchase_order.js:459 +#: templates/js/translated/purchase_order.js:470 msgid "All line items have been received" msgstr "" -#: templates/js/translated/purchase_order.js:464 +#: templates/js/translated/purchase_order.js:475 msgid "This order has line items which have not been marked as received." msgstr "" -#: templates/js/translated/purchase_order.js:465 -#: templates/js/translated/sales_order.js:499 +#: templates/js/translated/purchase_order.js:476 +#: templates/js/translated/sales_order.js:511 msgid "Completing this order means that the order and line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:488 +#: templates/js/translated/purchase_order.js:499 msgid "Cancel Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:493 +#: templates/js/translated/purchase_order.js:504 msgid "Are you sure you wish to cancel this purchase order?" msgstr "" -#: templates/js/translated/purchase_order.js:499 +#: templates/js/translated/purchase_order.js:510 msgid "This purchase order can not be cancelled" msgstr "" -#: templates/js/translated/purchase_order.js:520 -#: templates/js/translated/return_order.js:149 +#: templates/js/translated/purchase_order.js:531 +#: templates/js/translated/return_order.js:161 msgid "After placing this order, line items will no longer be editable." msgstr "" -#: templates/js/translated/purchase_order.js:525 +#: templates/js/translated/purchase_order.js:536 msgid "Issue Purchase Order" msgstr "" -#: templates/js/translated/purchase_order.js:617 +#: templates/js/translated/purchase_order.js:628 msgid "At least one purchaseable part must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:642 +#: templates/js/translated/purchase_order.js:653 msgid "Quantity to order" msgstr "" -#: templates/js/translated/purchase_order.js:651 +#: templates/js/translated/purchase_order.js:662 msgid "New supplier part" msgstr "" -#: templates/js/translated/purchase_order.js:669 +#: templates/js/translated/purchase_order.js:680 msgid "New purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:701 +#: templates/js/translated/purchase_order.js:712 msgid "Add to purchase order" msgstr "" -#: templates/js/translated/purchase_order.js:845 +#: templates/js/translated/purchase_order.js:860 msgid "No matching supplier parts" msgstr "" -#: templates/js/translated/purchase_order.js:864 +#: templates/js/translated/purchase_order.js:879 msgid "No matching purchase orders" msgstr "" -#: templates/js/translated/purchase_order.js:1043 +#: templates/js/translated/purchase_order.js:1058 msgid "Select Line Items" msgstr "" -#: templates/js/translated/purchase_order.js:1044 -#: templates/js/translated/return_order.js:480 +#: templates/js/translated/purchase_order.js:1059 +#: templates/js/translated/return_order.js:489 msgid "At least one line item must be selected" msgstr "" -#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/purchase_order.js:1089 msgid "Received Quantity" msgstr "" -#: templates/js/translated/purchase_order.js:1085 +#: templates/js/translated/purchase_order.js:1100 msgid "Quantity to receive" msgstr "" -#: templates/js/translated/purchase_order.js:1161 +#: templates/js/translated/purchase_order.js:1176 msgid "Stock Status" msgstr "" -#: templates/js/translated/purchase_order.js:1175 +#: templates/js/translated/purchase_order.js:1190 #, fuzzy #| msgid "Barcode" msgid "Add barcode" msgstr "条形码" -#: templates/js/translated/purchase_order.js:1176 +#: templates/js/translated/purchase_order.js:1191 #, fuzzy #| msgid "Remove row" msgid "Remove barcode" msgstr "移除行" -#: templates/js/translated/purchase_order.js:1179 +#: templates/js/translated/purchase_order.js:1194 #, fuzzy #| msgid "Edit location" msgid "Specify location" msgstr "编辑仓储地" -#: templates/js/translated/purchase_order.js:1187 +#: templates/js/translated/purchase_order.js:1202 msgid "Add batch code" msgstr "" -#: templates/js/translated/purchase_order.js:1198 +#: templates/js/translated/purchase_order.js:1213 msgid "Add serial numbers" msgstr "" -#: templates/js/translated/purchase_order.js:1250 +#: templates/js/translated/purchase_order.js:1265 #, fuzzy #| msgid "Serial Numbers" msgid "Serials" msgstr "序列号" -#: templates/js/translated/purchase_order.js:1275 +#: templates/js/translated/purchase_order.js:1290 msgid "Order Code" msgstr "订单编码" -#: templates/js/translated/purchase_order.js:1277 +#: templates/js/translated/purchase_order.js:1292 msgid "Quantity to Receive" msgstr "" -#: templates/js/translated/purchase_order.js:1299 -#: templates/js/translated/return_order.js:545 +#: templates/js/translated/purchase_order.js:1314 +#: templates/js/translated/return_order.js:554 msgid "Confirm receipt of items" msgstr "" -#: templates/js/translated/purchase_order.js:1300 +#: templates/js/translated/purchase_order.js:1315 msgid "Receive Purchase Order Items" msgstr "" -#: templates/js/translated/purchase_order.js:1368 +#: templates/js/translated/purchase_order.js:1383 #, fuzzy #| msgid "Scan Barcode" msgid "Scan Item Barcode" msgstr "扫描条形码" -#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:1384 msgid "Scan barcode on incoming item (must not match any existing stock items)" msgstr "" -#: templates/js/translated/purchase_order.js:1383 +#: templates/js/translated/purchase_order.js:1398 #, fuzzy #| msgid "Enter barcode data" msgid "Invalid barcode data" msgstr "输入条形码数据" -#: templates/js/translated/purchase_order.js:1645 -#: templates/js/translated/return_order.js:274 -#: templates/js/translated/sales_order.js:762 -#: templates/js/translated/sales_order.js:986 +#: templates/js/translated/purchase_order.js:1660 +#: templates/js/translated/return_order.js:283 +#: templates/js/translated/sales_order.js:771 +#: templates/js/translated/sales_order.js:995 msgid "Order is overdue" msgstr "" -#: templates/js/translated/purchase_order.js:1707 -#: templates/js/translated/return_order.js:342 -#: templates/js/translated/sales_order.js:839 -#: templates/js/translated/sales_order.js:999 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:351 +#: templates/js/translated/sales_order.js:848 +#: templates/js/translated/sales_order.js:1008 msgid "Items" msgstr "" -#: templates/js/translated/purchase_order.js:1806 +#: templates/js/translated/purchase_order.js:1818 #, fuzzy #| msgid "All selected supplier parts will be deleted" msgid "All selected Line items will be deleted" msgstr "删除所有选定的供应商商品" -#: templates/js/translated/purchase_order.js:1824 +#: templates/js/translated/purchase_order.js:1836 #, fuzzy #| msgid "Allocate selected items" msgid "Delete selected Line items?" msgstr "分配选定项目" -#: templates/js/translated/purchase_order.js:1884 -#: templates/js/translated/sales_order.js:2047 +#: templates/js/translated/purchase_order.js:1891 +#: templates/js/translated/sales_order.js:2056 msgid "Duplicate Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1899 -#: templates/js/translated/return_order.js:464 -#: templates/js/translated/return_order.js:653 -#: templates/js/translated/sales_order.js:2060 +#: templates/js/translated/purchase_order.js:1906 +#: templates/js/translated/return_order.js:473 +#: templates/js/translated/return_order.js:662 +#: templates/js/translated/sales_order.js:2069 msgid "Edit Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:1910 -#: templates/js/translated/return_order.js:666 -#: templates/js/translated/sales_order.js:2071 +#: templates/js/translated/purchase_order.js:1917 +#: templates/js/translated/return_order.js:675 +#: templates/js/translated/sales_order.js:2080 msgid "Delete Line Item" msgstr "" -#: templates/js/translated/purchase_order.js:2192 -#: templates/js/translated/sales_order.js:2001 +#: templates/js/translated/purchase_order.js:2199 +#: templates/js/translated/sales_order.js:2010 msgid "Duplicate line item" msgstr "" -#: templates/js/translated/purchase_order.js:2193 -#: templates/js/translated/return_order.js:785 -#: templates/js/translated/sales_order.js:2002 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:794 +#: templates/js/translated/sales_order.js:2011 msgid "Edit line item" msgstr "" -#: templates/js/translated/purchase_order.js:2194 -#: templates/js/translated/return_order.js:789 -#: templates/js/translated/sales_order.js:2008 +#: templates/js/translated/purchase_order.js:2201 +#: templates/js/translated/return_order.js:798 +#: templates/js/translated/sales_order.js:2017 msgid "Delete line item" msgstr "" @@ -11682,975 +11953,1019 @@ msgstr "没有找到与所选商品相匹配的标签" msgid "Add Customer" msgstr "" -#: templates/js/translated/return_order.js:119 +#: templates/js/translated/return_order.js:131 #, fuzzy #| msgid "Create Purchase Order" msgid "Create Return Order" msgstr "创建采购订单" -#: templates/js/translated/return_order.js:134 +#: templates/js/translated/return_order.js:146 msgid "Edit Return Order" msgstr "" -#: templates/js/translated/return_order.js:154 +#: templates/js/translated/return_order.js:166 msgid "Issue Return Order" msgstr "" -#: templates/js/translated/return_order.js:171 +#: templates/js/translated/return_order.js:183 #, fuzzy #| msgid "Are you sure you wish to cancel this build?" msgid "Are you sure you wish to cancel this Return Order?" msgstr "是否确定取消生产?" -#: templates/js/translated/return_order.js:178 +#: templates/js/translated/return_order.js:190 #, fuzzy #| msgid "Cancel order" msgid "Cancel Return Order" msgstr "取消订单" -#: templates/js/translated/return_order.js:203 +#: templates/js/translated/return_order.js:215 #, fuzzy #| msgid "Complete Build Order" msgid "Complete Return Order" msgstr "生产订单完成" -#: templates/js/translated/return_order.js:251 +#: templates/js/translated/return_order.js:263 #, fuzzy #| msgid "No parameters found" msgid "No return orders found" msgstr "无指定参数" -#: templates/js/translated/return_order.js:288 -#: templates/js/translated/sales_order.js:776 +#: templates/js/translated/return_order.js:297 +#: templates/js/translated/sales_order.js:785 msgid "Invalid Customer" msgstr "" -#: templates/js/translated/return_order.js:546 +#: templates/js/translated/return_order.js:555 msgid "Receive Return Order Items" msgstr "" -#: templates/js/translated/return_order.js:677 -#: templates/js/translated/sales_order.js:2207 +#: templates/js/translated/return_order.js:686 +#: templates/js/translated/sales_order.js:2216 msgid "No matching line items" msgstr "" -#: templates/js/translated/return_order.js:782 +#: templates/js/translated/return_order.js:791 msgid "Mark item as received" msgstr "" -#: templates/js/translated/sales_order.js:146 +#: templates/js/translated/sales_order.js:158 msgid "Create Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:161 +#: templates/js/translated/sales_order.js:173 msgid "Edit Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:276 +#: templates/js/translated/sales_order.js:288 msgid "No stock items have been allocated to this shipment" msgstr "" -#: templates/js/translated/sales_order.js:281 +#: templates/js/translated/sales_order.js:293 msgid "The following stock items will be shipped" msgstr "" -#: templates/js/translated/sales_order.js:321 +#: templates/js/translated/sales_order.js:333 msgid "Complete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:345 +#: templates/js/translated/sales_order.js:357 msgid "Confirm Shipment" msgstr "" -#: templates/js/translated/sales_order.js:401 +#: templates/js/translated/sales_order.js:413 msgid "No pending shipments found" msgstr "" -#: templates/js/translated/sales_order.js:405 +#: templates/js/translated/sales_order.js:417 msgid "No stock items have been allocated to pending shipments" msgstr "" -#: templates/js/translated/sales_order.js:415 +#: templates/js/translated/sales_order.js:427 msgid "Complete Shipments" msgstr "" -#: templates/js/translated/sales_order.js:437 +#: templates/js/translated/sales_order.js:449 msgid "Skip" msgstr "" -#: templates/js/translated/sales_order.js:498 +#: templates/js/translated/sales_order.js:510 msgid "This order has line items which have not been completed." msgstr "" -#: templates/js/translated/sales_order.js:520 +#: templates/js/translated/sales_order.js:532 #, fuzzy #| msgid "New Sales Order" msgid "Issue this Sales Order?" msgstr "新建销售订单" -#: templates/js/translated/sales_order.js:525 +#: templates/js/translated/sales_order.js:537 #, fuzzy #| msgid "New Sales Order" msgid "Issue Sales Order" msgstr "新建销售订单" -#: templates/js/translated/sales_order.js:544 +#: templates/js/translated/sales_order.js:556 msgid "Cancel Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:549 +#: templates/js/translated/sales_order.js:561 msgid "Cancelling this order means that the order will no longer be editable." msgstr "" -#: templates/js/translated/sales_order.js:603 +#: templates/js/translated/sales_order.js:615 msgid "Create New Shipment" msgstr "" -#: templates/js/translated/sales_order.js:713 +#: templates/js/translated/sales_order.js:725 msgid "No sales orders found" msgstr "" -#: templates/js/translated/sales_order.js:896 +#: templates/js/translated/sales_order.js:905 msgid "Edit shipment" msgstr "" -#: templates/js/translated/sales_order.js:899 +#: templates/js/translated/sales_order.js:908 msgid "Complete shipment" msgstr "" -#: templates/js/translated/sales_order.js:904 +#: templates/js/translated/sales_order.js:913 msgid "Delete shipment" msgstr "" -#: templates/js/translated/sales_order.js:921 +#: templates/js/translated/sales_order.js:930 msgid "Edit Shipment" msgstr "" -#: templates/js/translated/sales_order.js:936 +#: templates/js/translated/sales_order.js:945 msgid "Delete Shipment" msgstr "" -#: templates/js/translated/sales_order.js:969 +#: templates/js/translated/sales_order.js:978 msgid "No matching shipments found" msgstr "" -#: templates/js/translated/sales_order.js:994 +#: templates/js/translated/sales_order.js:1003 msgid "Shipment Reference" msgstr "" -#: templates/js/translated/sales_order.js:1018 -#: templates/js/translated/sales_order.js:1515 +#: templates/js/translated/sales_order.js:1027 +#: templates/js/translated/sales_order.js:1524 msgid "Not shipped" msgstr "" -#: templates/js/translated/sales_order.js:1036 +#: templates/js/translated/sales_order.js:1045 msgid "Tracking" msgstr "" -#: templates/js/translated/sales_order.js:1040 +#: templates/js/translated/sales_order.js:1049 msgid "Invoice" msgstr "" -#: templates/js/translated/sales_order.js:1207 +#: templates/js/translated/sales_order.js:1216 msgid "Add Shipment" msgstr "" -#: templates/js/translated/sales_order.js:1258 +#: templates/js/translated/sales_order.js:1267 msgid "Confirm stock allocation" msgstr "确认库存分配" -#: templates/js/translated/sales_order.js:1259 +#: templates/js/translated/sales_order.js:1268 msgid "Allocate Stock Items to Sales Order" msgstr "" -#: templates/js/translated/sales_order.js:1463 +#: templates/js/translated/sales_order.js:1472 msgid "No sales order allocations found" msgstr "" -#: templates/js/translated/sales_order.js:1555 +#: templates/js/translated/sales_order.js:1564 msgid "Edit Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1569 +#: templates/js/translated/sales_order.js:1578 msgid "Confirm Delete Operation" msgstr "确认删除操作" -#: templates/js/translated/sales_order.js:1570 +#: templates/js/translated/sales_order.js:1579 msgid "Delete Stock Allocation" msgstr "" -#: templates/js/translated/sales_order.js:1609 -#: templates/js/translated/sales_order.js:1696 -#: templates/js/translated/stock.js:1688 +#: templates/js/translated/sales_order.js:1618 +#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/stock.js:1706 msgid "Shipped to customer" msgstr "" -#: templates/js/translated/sales_order.js:1617 -#: templates/js/translated/sales_order.js:1705 +#: templates/js/translated/sales_order.js:1626 +#: templates/js/translated/sales_order.js:1714 msgid "Stock location not specified" msgstr "" -#: templates/js/translated/sales_order.js:1985 +#: templates/js/translated/sales_order.js:1994 msgid "Allocate serial numbers" msgstr "" -#: templates/js/translated/sales_order.js:1989 +#: templates/js/translated/sales_order.js:1998 msgid "Purchase stock" msgstr "" -#: templates/js/translated/sales_order.js:1998 -#: templates/js/translated/sales_order.js:2185 +#: templates/js/translated/sales_order.js:2007 +#: templates/js/translated/sales_order.js:2194 msgid "Calculate price" msgstr "" -#: templates/js/translated/sales_order.js:2012 +#: templates/js/translated/sales_order.js:2021 msgid "Cannot be deleted as items have been shipped" msgstr "" -#: templates/js/translated/sales_order.js:2015 +#: templates/js/translated/sales_order.js:2024 msgid "Cannot be deleted as items have been allocated" msgstr "" -#: templates/js/translated/sales_order.js:2086 +#: templates/js/translated/sales_order.js:2095 msgid "Allocate Serial Numbers" msgstr "" -#: templates/js/translated/sales_order.js:2193 +#: templates/js/translated/sales_order.js:2202 msgid "Update Unit Price" msgstr "" -#: templates/js/translated/search.js:312 +#: templates/js/translated/search.js:270 msgid "No results" msgstr "" -#: templates/js/translated/search.js:334 templates/search.html:25 +#: templates/js/translated/search.js:292 templates/search.html:25 msgid "Enter search query" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "result" msgstr "" -#: templates/js/translated/search.js:384 +#: templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/search.js:394 +#: templates/js/translated/search.js:352 msgid "Minimize results" msgstr "" -#: templates/js/translated/search.js:397 +#: templates/js/translated/search.js:355 msgid "Remove results" msgstr "" -#: templates/js/translated/stock.js:98 +#: templates/js/translated/stock.js:97 msgid "Serialize Stock Item" msgstr "" -#: templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:128 msgid "Confirm Stock Serialization" msgstr "" -#: templates/js/translated/stock.js:138 +#: templates/js/translated/stock.js:137 msgid "Parent stock location" msgstr "" -#: templates/js/translated/stock.js:173 +#: templates/js/translated/stock.js:172 msgid "Edit Stock Location" msgstr "编辑仓储地点" -#: templates/js/translated/stock.js:188 +#: templates/js/translated/stock.js:187 msgid "New Stock Location" msgstr "" -#: templates/js/translated/stock.js:190 +#: templates/js/translated/stock.js:189 msgid "Create another location after this one" msgstr "" -#: templates/js/translated/stock.js:191 +#: templates/js/translated/stock.js:190 #, fuzzy #| msgid "Stock item created" msgid "Stock location created" msgstr "库存项已创建" -#: templates/js/translated/stock.js:205 +#: templates/js/translated/stock.js:204 msgid "Are you sure you want to delete this stock location?" msgstr "确实要删除此仓储地点吗?" -#: templates/js/translated/stock.js:212 +#: templates/js/translated/stock.js:211 msgid "Move to parent stock location" msgstr "" -#: templates/js/translated/stock.js:221 +#: templates/js/translated/stock.js:220 msgid "Delete Stock Location" msgstr "删除仓储地点" -#: templates/js/translated/stock.js:225 +#: templates/js/translated/stock.js:224 msgid "Action for stock items in this stock location" msgstr "" -#: templates/js/translated/stock.js:230 +#: templates/js/translated/stock.js:229 msgid "Action for sub-locations" msgstr "" -#: templates/js/translated/stock.js:284 +#: templates/js/translated/stock.js:283 msgid "This part cannot be serialized" msgstr "" -#: templates/js/translated/stock.js:320 +#: templates/js/translated/stock.js:319 msgid "Add given quantity as packs instead of individual items" msgstr "" -#: templates/js/translated/stock.js:329 +#: templates/js/translated/stock.js:328 msgid "Enter initial quantity for this stock item" msgstr "" -#: templates/js/translated/stock.js:335 +#: templates/js/translated/stock.js:334 msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" -#: templates/js/translated/stock.js:406 +#: templates/js/translated/stock.js:405 msgid "Stock item duplicated" msgstr "" -#: templates/js/translated/stock.js:426 +#: templates/js/translated/stock.js:425 msgid "Duplicate Stock Item" msgstr "" -#: templates/js/translated/stock.js:442 +#: templates/js/translated/stock.js:441 msgid "Are you sure you want to delete this stock item?" msgstr "" -#: templates/js/translated/stock.js:447 +#: templates/js/translated/stock.js:446 msgid "Delete Stock Item" msgstr "" -#: templates/js/translated/stock.js:468 +#: templates/js/translated/stock.js:467 msgid "Edit Stock Item" msgstr "" -#: templates/js/translated/stock.js:510 +#: templates/js/translated/stock.js:509 msgid "Create another item after this one" msgstr "" -#: templates/js/translated/stock.js:522 +#: templates/js/translated/stock.js:521 msgid "Created new stock item" msgstr "" -#: templates/js/translated/stock.js:535 +#: templates/js/translated/stock.js:534 msgid "Created multiple stock items" msgstr "" -#: templates/js/translated/stock.js:560 +#: templates/js/translated/stock.js:559 msgid "Find Serial Number" msgstr "" -#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:565 +#: templates/js/translated/stock.js:563 templates/js/translated/stock.js:564 msgid "Enter serial number" msgstr "" -#: templates/js/translated/stock.js:581 +#: templates/js/translated/stock.js:580 msgid "Enter a serial number" msgstr "" -#: templates/js/translated/stock.js:601 +#: templates/js/translated/stock.js:600 msgid "No matching serial number" msgstr "" -#: templates/js/translated/stock.js:610 +#: templates/js/translated/stock.js:609 msgid "More than one matching result found" msgstr "" -#: templates/js/translated/stock.js:718 +#: templates/js/translated/stock.js:717 msgid "Confirm stock assignment" msgstr "" -#: templates/js/translated/stock.js:719 +#: templates/js/translated/stock.js:718 msgid "Assign Stock to Customer" msgstr "" -#: templates/js/translated/stock.js:796 +#: templates/js/translated/stock.js:795 msgid "Warning: Merge operation cannot be reversed" msgstr "" -#: templates/js/translated/stock.js:797 +#: templates/js/translated/stock.js:796 msgid "Some information will be lost when merging stock items" msgstr "" -#: templates/js/translated/stock.js:799 +#: templates/js/translated/stock.js:798 msgid "Stock transaction history will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:800 +#: templates/js/translated/stock.js:799 msgid "Supplier part information will be deleted for merged items" msgstr "" -#: templates/js/translated/stock.js:891 +#: templates/js/translated/stock.js:890 msgid "Confirm stock item merge" msgstr "" -#: templates/js/translated/stock.js:892 +#: templates/js/translated/stock.js:891 msgid "Merge Stock Items" msgstr "" -#: templates/js/translated/stock.js:987 +#: templates/js/translated/stock.js:986 msgid "Transfer Stock" msgstr "" -#: templates/js/translated/stock.js:988 +#: templates/js/translated/stock.js:987 msgid "Move" msgstr "" -#: templates/js/translated/stock.js:994 +#: templates/js/translated/stock.js:993 msgid "Count Stock" msgstr "" -#: templates/js/translated/stock.js:995 +#: templates/js/translated/stock.js:994 msgid "Count" msgstr "" -#: templates/js/translated/stock.js:999 +#: templates/js/translated/stock.js:998 msgid "Remove Stock" msgstr "" -#: templates/js/translated/stock.js:1000 +#: templates/js/translated/stock.js:999 msgid "Take" msgstr "" -#: templates/js/translated/stock.js:1004 +#: templates/js/translated/stock.js:1003 msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1005 users/models.py:243 +#: templates/js/translated/stock.js:1004 users/models.py:249 msgid "Add" msgstr "添加" -#: templates/js/translated/stock.js:1009 +#: templates/js/translated/stock.js:1008 msgid "Delete Stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Quantity cannot be adjusted for serialized stock" msgstr "" -#: templates/js/translated/stock.js:1106 +#: templates/js/translated/stock.js:1105 msgid "Specify stock quantity" msgstr "" -#: templates/js/translated/stock.js:1140 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:3165 msgid "Select Stock Items" msgstr "选择库存项" -#: templates/js/translated/stock.js:1141 -msgid "You must select at least one available stock item" +#: templates/js/translated/stock.js:1140 +msgid "Select at least one available stock item" msgstr "" -#: templates/js/translated/stock.js:1168 +#: templates/js/translated/stock.js:1186 msgid "Confirm stock adjustment" msgstr "" -#: templates/js/translated/stock.js:1304 +#: templates/js/translated/stock.js:1322 msgid "PASS" msgstr "" -#: templates/js/translated/stock.js:1306 +#: templates/js/translated/stock.js:1324 msgid "FAIL" msgstr "" -#: templates/js/translated/stock.js:1311 +#: templates/js/translated/stock.js:1329 msgid "NO RESULT" msgstr "" -#: templates/js/translated/stock.js:1373 +#: templates/js/translated/stock.js:1391 msgid "Pass test" msgstr "" -#: templates/js/translated/stock.js:1376 +#: templates/js/translated/stock.js:1394 msgid "Add test result" msgstr "" -#: templates/js/translated/stock.js:1400 +#: templates/js/translated/stock.js:1418 msgid "No test results found" msgstr "" -#: templates/js/translated/stock.js:1464 +#: templates/js/translated/stock.js:1482 msgid "Test Date" msgstr "" -#: templates/js/translated/stock.js:1626 +#: templates/js/translated/stock.js:1644 msgid "Edit Test Result" msgstr "" -#: templates/js/translated/stock.js:1648 +#: templates/js/translated/stock.js:1666 msgid "Delete Test Result" msgstr "" -#: templates/js/translated/stock.js:1680 +#: templates/js/translated/stock.js:1698 msgid "In production" msgstr "正在生产" -#: templates/js/translated/stock.js:1684 +#: templates/js/translated/stock.js:1702 msgid "Installed in Stock Item" msgstr "" -#: templates/js/translated/stock.js:1692 +#: templates/js/translated/stock.js:1710 msgid "Assigned to Sales Order" msgstr "" -#: templates/js/translated/stock.js:1698 +#: templates/js/translated/stock.js:1716 msgid "No stock location set" msgstr "未设置仓储地点" -#: templates/js/translated/stock.js:1746 +#: templates/js/translated/stock.js:1772 +msgid "Change stock status" +msgstr "" + +#: templates/js/translated/stock.js:1781 +msgid "Merge stock" +msgstr "" + +#: templates/js/translated/stock.js:1830 +msgid "Delete stock" +msgstr "" + +#: templates/js/translated/stock.js:1885 #, fuzzy #| msgid "Stock Items" msgid "stock items" msgstr "库存项" -#: templates/js/translated/stock.js:1850 +#: templates/js/translated/stock.js:1890 +#, fuzzy +#| msgid "Stock Location" +msgid "Scan to location" +msgstr "仓储地点" + +#: templates/js/translated/stock.js:1901 +#, fuzzy +#| msgid "Stock Locations" +msgid "Stock Actions" +msgstr "仓储地点" + +#: templates/js/translated/stock.js:1945 +#, fuzzy +#| msgid "Installed into assembly" +msgid "Load installed items" +msgstr "安装到组装中" + +#: templates/js/translated/stock.js:2023 msgid "Stock item is in production" msgstr "库存品正在生产" -#: templates/js/translated/stock.js:1855 +#: templates/js/translated/stock.js:2028 msgid "Stock item assigned to sales order" msgstr "" -#: templates/js/translated/stock.js:1858 +#: templates/js/translated/stock.js:2031 msgid "Stock item assigned to customer" msgstr "" -#: templates/js/translated/stock.js:1861 +#: templates/js/translated/stock.js:2034 msgid "Serialized stock item has been allocated" msgstr "" -#: templates/js/translated/stock.js:1863 +#: templates/js/translated/stock.js:2036 msgid "Stock item has been fully allocated" msgstr "" -#: templates/js/translated/stock.js:1865 +#: templates/js/translated/stock.js:2038 msgid "Stock item has been partially allocated" msgstr "" -#: templates/js/translated/stock.js:1868 +#: templates/js/translated/stock.js:2041 msgid "Stock item has been installed in another item" msgstr "" -#: templates/js/translated/stock.js:1870 +#: templates/js/translated/stock.js:2043 #, fuzzy #| msgid "Accept as consumed by this build order" msgid "Stock item has been consumed by a build order" msgstr "接受此构建订单所消耗的内容" -#: templates/js/translated/stock.js:1874 +#: templates/js/translated/stock.js:2047 msgid "Stock item has expired" msgstr "" -#: templates/js/translated/stock.js:1876 +#: templates/js/translated/stock.js:2049 msgid "Stock item will expire soon" msgstr "" -#: templates/js/translated/stock.js:1881 +#: templates/js/translated/stock.js:2054 msgid "Stock item has been rejected" msgstr "" -#: templates/js/translated/stock.js:1883 +#: templates/js/translated/stock.js:2056 msgid "Stock item is lost" msgstr "" -#: templates/js/translated/stock.js:1885 +#: templates/js/translated/stock.js:2058 msgid "Stock item is destroyed" msgstr "" -#: templates/js/translated/stock.js:1889 -#: templates/js/translated/table_filters.js:296 +#: templates/js/translated/stock.js:2062 +#: templates/js/translated/table_filters.js:302 msgid "Depleted" msgstr "" -#: templates/js/translated/stock.js:2031 +#: templates/js/translated/stock.js:2204 msgid "Supplier part not specified" msgstr "" -#: templates/js/translated/stock.js:2078 +#: templates/js/translated/stock.js:2251 #, fuzzy #| msgid "Stock Source" msgid "Stock Value" msgstr "库存来源" -#: templates/js/translated/stock.js:2170 +#: templates/js/translated/stock.js:2374 msgid "No stock items matching query" msgstr "" -#: templates/js/translated/stock.js:2319 +#: templates/js/translated/stock.js:2466 #, fuzzy #| msgid "Stock Locations" msgid "stock locations" msgstr "仓储地点" -#: templates/js/translated/stock.js:2476 +#: templates/js/translated/stock.js:2621 msgid "Load Subloactions" msgstr "" -#: templates/js/translated/stock.js:2583 +#: templates/js/translated/stock.js:2728 msgid "Details" msgstr "详情" -#: templates/js/translated/stock.js:2587 +#: templates/js/translated/stock.js:2732 #, fuzzy #| msgid "Change" msgid "No changes" msgstr "更改" -#: templates/js/translated/stock.js:2599 +#: templates/js/translated/stock.js:2744 msgid "Part information unavailable" msgstr "" -#: templates/js/translated/stock.js:2621 +#: templates/js/translated/stock.js:2766 msgid "Location no longer exists" msgstr "" -#: templates/js/translated/stock.js:2638 +#: templates/js/translated/stock.js:2783 #, fuzzy #| msgid "Sales Order Settings" msgid "Build order no longer exists" msgstr "销售订单设置" -#: templates/js/translated/stock.js:2653 +#: templates/js/translated/stock.js:2798 msgid "Purchase order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2670 +#: templates/js/translated/stock.js:2815 #, fuzzy #| msgid "Sales Order Settings" msgid "Sales Order no longer exists" msgstr "销售订单设置" -#: templates/js/translated/stock.js:2687 +#: templates/js/translated/stock.js:2832 msgid "Return Order no longer exists" msgstr "" -#: templates/js/translated/stock.js:2706 +#: templates/js/translated/stock.js:2851 msgid "Customer no longer exists" msgstr "" -#: templates/js/translated/stock.js:2724 +#: templates/js/translated/stock.js:2869 msgid "Stock item no longer exists" msgstr "" -#: templates/js/translated/stock.js:2742 +#: templates/js/translated/stock.js:2887 msgid "Added" msgstr "" -#: templates/js/translated/stock.js:2750 +#: templates/js/translated/stock.js:2895 msgid "Removed" msgstr "" -#: templates/js/translated/stock.js:2826 +#: templates/js/translated/stock.js:2967 msgid "No installed items" msgstr "" -#: templates/js/translated/stock.js:2876 templates/js/translated/stock.js:2911 +#: templates/js/translated/stock.js:3017 templates/js/translated/stock.js:3052 msgid "Uninstall Stock Item" msgstr "" -#: templates/js/translated/stock.js:2929 +#: templates/js/translated/stock.js:3070 msgid "Select stock item to uninstall" msgstr "" -#: templates/js/translated/stock.js:2950 +#: templates/js/translated/stock.js:3091 msgid "Install another stock item into this item" msgstr "" -#: templates/js/translated/stock.js:2951 +#: templates/js/translated/stock.js:3092 msgid "Stock items can only be installed if they meet the following criteria" msgstr "" -#: templates/js/translated/stock.js:2953 +#: templates/js/translated/stock.js:3094 msgid "The Stock Item links to a Part which is the BOM for this Stock Item" msgstr "" -#: templates/js/translated/stock.js:2954 +#: templates/js/translated/stock.js:3095 msgid "The Stock Item is currently available in stock" msgstr "" -#: templates/js/translated/stock.js:2955 +#: templates/js/translated/stock.js:3096 msgid "The Stock Item is not already installed in another item" msgstr "" -#: templates/js/translated/stock.js:2956 +#: templates/js/translated/stock.js:3097 msgid "The Stock Item is tracked by either a batch code or serial number" msgstr "" -#: templates/js/translated/stock.js:2969 +#: templates/js/translated/stock.js:3110 msgid "Select part to install" msgstr "" +#: templates/js/translated/stock.js:3166 +#, fuzzy +#| msgid "Select Stock Items" +msgid "Select one or more stock items" +msgstr "选择库存项" + +#: templates/js/translated/stock.js:3179 +#, fuzzy +#| msgid "Select Stock Items" +msgid "Selected stock items" +msgstr "选择库存项" + +#: templates/js/translated/stock.js:3183 +#, fuzzy +#| msgid "Stock Settings" +msgid "Change Stock Status" +msgstr "库存设置" + #: templates/js/translated/table_filters.js:50 msgid "Has project code" msgstr "" -#: templates/js/translated/table_filters.js:59 -#: templates/js/translated/table_filters.js:507 -#: templates/js/translated/table_filters.js:519 -#: templates/js/translated/table_filters.js:560 +#: templates/js/translated/table_filters.js:65 +#: templates/js/translated/table_filters.js:540 +#: templates/js/translated/table_filters.js:552 +#: templates/js/translated/table_filters.js:593 msgid "Order status" msgstr "" -#: templates/js/translated/table_filters.js:64 -#: templates/js/translated/table_filters.js:524 -#: templates/js/translated/table_filters.js:550 -#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:70 +#: templates/js/translated/table_filters.js:557 +#: templates/js/translated/table_filters.js:583 +#: templates/js/translated/table_filters.js:598 msgid "Outstanding" msgstr "" -#: templates/js/translated/table_filters.js:72 -#: templates/js/translated/table_filters.js:447 -#: templates/js/translated/table_filters.js:532 -#: templates/js/translated/table_filters.js:573 +#: templates/js/translated/table_filters.js:78 +#: templates/js/translated/table_filters.js:464 +#: templates/js/translated/table_filters.js:565 +#: templates/js/translated/table_filters.js:606 msgid "Assigned to me" msgstr "" -#: templates/js/translated/table_filters.js:128 +#: templates/js/translated/table_filters.js:134 msgid "Trackable Part" msgstr "可追溯商品" -#: templates/js/translated/table_filters.js:132 +#: templates/js/translated/table_filters.js:138 msgid "Assembled Part" msgstr "" -#: templates/js/translated/table_filters.js:136 +#: templates/js/translated/table_filters.js:142 msgid "Has Available Stock" msgstr "" -#: templates/js/translated/table_filters.js:152 +#: templates/js/translated/table_filters.js:158 msgid "Allow Variant Stock" msgstr "" -#: templates/js/translated/table_filters.js:164 -#: templates/js/translated/table_filters.js:681 +#: templates/js/translated/table_filters.js:170 +#: templates/js/translated/table_filters.js:714 msgid "Has Pricing" msgstr "" -#: templates/js/translated/table_filters.js:204 -#: templates/js/translated/table_filters.js:291 +#: templates/js/translated/table_filters.js:210 +#: templates/js/translated/table_filters.js:297 msgid "Include sublocations" msgstr "" -#: templates/js/translated/table_filters.js:205 +#: templates/js/translated/table_filters.js:211 msgid "Include locations" msgstr "" -#: templates/js/translated/table_filters.js:224 -#: templates/js/translated/table_filters.js:225 -#: templates/js/translated/table_filters.js:613 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:231 +#: templates/js/translated/table_filters.js:646 msgid "Include subcategories" msgstr "" -#: templates/js/translated/table_filters.js:233 -#: templates/js/translated/table_filters.js:661 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:694 msgid "Subscribed" msgstr "" -#: templates/js/translated/table_filters.js:244 -#: templates/js/translated/table_filters.js:326 +#: templates/js/translated/table_filters.js:250 +#: templates/js/translated/table_filters.js:332 msgid "Is Serialized" msgstr "" -#: templates/js/translated/table_filters.js:247 -#: templates/js/translated/table_filters.js:333 +#: templates/js/translated/table_filters.js:253 +#: templates/js/translated/table_filters.js:339 msgid "Serial number GTE" msgstr "" -#: templates/js/translated/table_filters.js:248 -#: templates/js/translated/table_filters.js:334 +#: templates/js/translated/table_filters.js:254 +#: templates/js/translated/table_filters.js:340 msgid "Serial number greater than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:251 -#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:257 +#: templates/js/translated/table_filters.js:343 msgid "Serial number LTE" msgstr "" -#: templates/js/translated/table_filters.js:252 -#: templates/js/translated/table_filters.js:338 +#: templates/js/translated/table_filters.js:258 +#: templates/js/translated/table_filters.js:344 msgid "Serial number less than or equal to" msgstr "" -#: templates/js/translated/table_filters.js:255 -#: templates/js/translated/table_filters.js:256 -#: templates/js/translated/table_filters.js:329 -#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:261 +#: templates/js/translated/table_filters.js:262 +#: templates/js/translated/table_filters.js:335 +#: templates/js/translated/table_filters.js:336 msgid "Serial number" msgstr "" -#: templates/js/translated/table_filters.js:260 -#: templates/js/translated/table_filters.js:351 +#: templates/js/translated/table_filters.js:266 +#: templates/js/translated/table_filters.js:357 msgid "Batch code" msgstr "" -#: templates/js/translated/table_filters.js:271 -#: templates/js/translated/table_filters.js:602 +#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:635 msgid "Active parts" msgstr "" -#: templates/js/translated/table_filters.js:272 +#: templates/js/translated/table_filters.js:278 msgid "Show stock for active parts" msgstr "" -#: templates/js/translated/table_filters.js:277 +#: templates/js/translated/table_filters.js:283 msgid "Part is an assembly" msgstr "" -#: templates/js/translated/table_filters.js:281 +#: templates/js/translated/table_filters.js:287 msgid "Is allocated" msgstr "" -#: templates/js/translated/table_filters.js:282 +#: templates/js/translated/table_filters.js:288 msgid "Item has been allocated" msgstr "" -#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:293 msgid "Stock is available for use" msgstr "" -#: templates/js/translated/table_filters.js:292 +#: templates/js/translated/table_filters.js:298 msgid "Include stock in sublocations" msgstr "" -#: templates/js/translated/table_filters.js:297 +#: templates/js/translated/table_filters.js:303 msgid "Show stock items which are depleted" msgstr "" -#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:308 msgid "Show items which are in stock" msgstr "" -#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:312 msgid "In Production" msgstr "正在生产" -#: templates/js/translated/table_filters.js:307 +#: templates/js/translated/table_filters.js:313 msgid "Show items which are in production" msgstr "显示正在生产的项目" -#: templates/js/translated/table_filters.js:311 +#: templates/js/translated/table_filters.js:317 msgid "Include Variants" msgstr "" -#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:318 msgid "Include stock items for variant parts" msgstr "" -#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:322 msgid "Installed" msgstr "" -#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:323 msgid "Show stock items which are installed in another item" msgstr "" -#: templates/js/translated/table_filters.js:322 +#: templates/js/translated/table_filters.js:328 msgid "Show items which have been assigned to a customer" msgstr "" -#: templates/js/translated/table_filters.js:342 -#: templates/js/translated/table_filters.js:343 +#: templates/js/translated/table_filters.js:348 +#: templates/js/translated/table_filters.js:349 msgid "Stock status" msgstr "" -#: templates/js/translated/table_filters.js:346 +#: templates/js/translated/table_filters.js:352 msgid "Has batch code" msgstr "" -#: templates/js/translated/table_filters.js:354 -msgid "Tracked" -msgstr "" - -#: templates/js/translated/table_filters.js:355 +#: templates/js/translated/table_filters.js:361 msgid "Stock item is tracked by either batch code or serial number" msgstr "" -#: templates/js/translated/table_filters.js:360 +#: templates/js/translated/table_filters.js:366 msgid "Has purchase price" msgstr "" -#: templates/js/translated/table_filters.js:361 +#: templates/js/translated/table_filters.js:367 msgid "Show stock items which have a purchase price set" msgstr "" -#: templates/js/translated/table_filters.js:365 +#: templates/js/translated/table_filters.js:371 msgid "Expiry Date before" msgstr "" -#: templates/js/translated/table_filters.js:369 +#: templates/js/translated/table_filters.js:375 msgid "Expiry Date after" msgstr "" -#: templates/js/translated/table_filters.js:382 +#: templates/js/translated/table_filters.js:388 msgid "Show stock items which have expired" msgstr "" -#: templates/js/translated/table_filters.js:388 +#: templates/js/translated/table_filters.js:394 msgid "Show stock which is close to expiring" msgstr "" -#: templates/js/translated/table_filters.js:402 +#: templates/js/translated/table_filters.js:408 msgid "Test Passed" msgstr "" -#: templates/js/translated/table_filters.js:406 +#: templates/js/translated/table_filters.js:412 msgid "Include Installed Items" msgstr "" -#: templates/js/translated/table_filters.js:434 +#: templates/js/translated/table_filters.js:451 msgid "Build status" msgstr "生产状态" -#: templates/js/translated/table_filters.js:614 +#: templates/js/translated/table_filters.js:647 msgid "Include parts in subcategories" msgstr "" -#: templates/js/translated/table_filters.js:619 +#: templates/js/translated/table_filters.js:652 msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:627 +#: templates/js/translated/table_filters.js:660 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:635 -#: templates/js/translated/table_filters.js:731 +#: templates/js/translated/table_filters.js:668 +#: templates/js/translated/table_filters.js:764 #, fuzzy #| msgid "Units" msgid "Has Units" msgstr "单位" -#: templates/js/translated/table_filters.js:636 +#: templates/js/translated/table_filters.js:669 #, fuzzy #| msgid "Parameter units" msgid "Part has defined units" msgstr "参数单位" -#: templates/js/translated/table_filters.js:640 +#: templates/js/translated/table_filters.js:673 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:641 +#: templates/js/translated/table_filters.js:674 msgid "Part has internal part number" msgstr "商品有内部编号" -#: templates/js/translated/table_filters.js:645 +#: templates/js/translated/table_filters.js:678 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:653 +#: templates/js/translated/table_filters.js:686 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:665 +#: templates/js/translated/table_filters.js:698 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:727 +#: templates/js/translated/table_filters.js:760 #, fuzzy #| msgid "Units" msgid "Has Choices" @@ -12684,51 +12999,51 @@ msgstr "" msgid "Select File Format" msgstr "" -#: templates/js/translated/tables.js:561 +#: templates/js/translated/tables.js:529 msgid "Loading data" msgstr "" -#: templates/js/translated/tables.js:564 +#: templates/js/translated/tables.js:532 msgid "rows per page" msgstr "" -#: templates/js/translated/tables.js:569 +#: templates/js/translated/tables.js:537 msgid "Showing all rows" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "Showing" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "to" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "of" msgstr "" -#: templates/js/translated/tables.js:571 +#: templates/js/translated/tables.js:539 msgid "rows" msgstr "" -#: templates/js/translated/tables.js:578 +#: templates/js/translated/tables.js:546 msgid "No matching results" msgstr "" -#: templates/js/translated/tables.js:581 +#: templates/js/translated/tables.js:549 msgid "Hide/Show pagination" msgstr "" -#: templates/js/translated/tables.js:587 +#: templates/js/translated/tables.js:555 msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:590 +#: templates/js/translated/tables.js:558 msgid "Columns" msgstr "" -#: templates/js/translated/tables.js:593 +#: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -12915,50 +13230,6 @@ msgstr "电子邮件设置" msgid "Email settings not configured" msgstr "电子邮件设置未配置" -#: templates/stock_table.html:17 -msgid "Barcode Actions" -msgstr "" - -#: templates/stock_table.html:28 -msgid "Stock Options" -msgstr "" - -#: templates/stock_table.html:33 -msgid "Add to selected stock items" -msgstr "" - -#: templates/stock_table.html:34 -msgid "Remove from selected stock items" -msgstr "" - -#: templates/stock_table.html:35 -msgid "Stocktake selected stock items" -msgstr "" - -#: templates/stock_table.html:36 -msgid "Move selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge selected stock items" -msgstr "" - -#: templates/stock_table.html:37 -msgid "Merge stock" -msgstr "" - -#: templates/stock_table.html:38 -msgid "Order selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete selected items" -msgstr "" - -#: templates/stock_table.html:42 -msgid "Delete stock" -msgstr "" - #: templates/yesnolabel.html:4 msgid "Yes" msgstr "确定" @@ -12991,38 +13262,88 @@ msgstr "权限" msgid "Important dates" msgstr "重要日期" -#: users/models.py:230 +#: users/models.py:236 msgid "Permission set" msgstr "权限设置" -#: users/models.py:238 +#: users/models.py:244 msgid "Group" msgstr "群组" -#: users/models.py:241 +#: users/models.py:247 msgid "View" msgstr "视图" -#: users/models.py:241 +#: users/models.py:247 msgid "Permission to view items" msgstr "查看项目权限" -#: users/models.py:243 +#: users/models.py:249 msgid "Permission to add items" msgstr "添加项目权限" -#: users/models.py:245 +#: users/models.py:251 msgid "Change" msgstr "更改" -#: users/models.py:245 +#: users/models.py:251 msgid "Permissions to edit items" msgstr "编辑项目权限" -#: users/models.py:247 +#: users/models.py:253 msgid "Permission to delete items" msgstr "删除项目权限" +#~ msgid "Query filters (comma-separated list of key=value pairs)," +#~ msgstr "查询筛选器 (逗号分隔的键值对列表)" + +#~ msgid "Query filters (comma-separated list of key=value pairs" +#~ msgstr "查询筛选器 (逗号分隔的键值对列表" + +#~ msgid "Part query filters (comma-separated value of key=value pairs)" +#~ msgstr "商品查询筛选器 (逗号分隔的键值对列表)" + +#~ msgid "Build to allocate parts" +#~ msgstr "生产以分配部件" + +#~ msgid "Untracked stock has been fully allocated for this Build Order" +#~ msgstr "未跟踪的库存已完全分配给此生产订单" + +#~ msgid "Untracked stock has not been fully allocated for this Build Order" +#~ msgstr "未跟踪的库存尚未完全分配给此生产订单" + +#~ msgid "Allocate selected items" +#~ msgstr "分配选定项目" + +#~ msgid "This Build Order does not have any associated untracked BOM items" +#~ msgstr "此构建订单没有任何关联的 BOM 项目" + +#~ msgid "Output Actions" +#~ msgstr "输出操作" + +#~ msgid "Complete selected build outputs" +#~ msgstr "完成选定的构建输出" + +#, fuzzy +#~| msgid "Complete selected build outputs" +#~ msgid "Scrap selected build outputs" +#~ msgstr "完成选定的构建输出" + +#~ msgid "Delete selected build outputs" +#~ msgstr "删除选中的构建输出" + +#~ msgid "All untracked stock items have been allocated" +#~ msgstr "所有未跟踪的库存项目都已分配" + +#~ msgid "Delete Parts" +#~ msgstr "删除商品" + +#~ msgid "Options" +#~ msgstr "选项" + +#~ msgid "Set Category" +#~ msgstr "设置类别" + #, python-format #~ msgid "This Build Order is a child of Build Order %(link)s" #~ msgstr "此构建订单是 %(link)s 订单的一个子订单" diff --git a/InvenTree/order/api.py b/InvenTree/order/api.py index 322ec71ab8..99f04c5b2a 100644 --- a/InvenTree/order/api.py +++ b/InvenTree/order/api.py @@ -13,18 +13,21 @@ from rest_framework import status from rest_framework.exceptions import ValidationError from rest_framework.response import Response -from common.models import InvenTreeSetting, ProjectCode +import common.models as common_models from common.settings import settings from company.models import SupplierPart +from generic.states.api import StatusView from InvenTree.api import (APIDownloadMixin, AttachmentMixin, - ListCreateDestroyAPIView, MetadataView, StatusView) + ListCreateDestroyAPIView, MetadataView) from InvenTree.filters import SEARCH_ORDER_FILTER, SEARCH_ORDER_FILTER_ALIAS from InvenTree.helpers import DownloadFile, str2bool from InvenTree.helpers_model import construct_absolute_url, get_base_url from InvenTree.mixins import (CreateAPI, ListAPI, ListCreateAPI, RetrieveUpdateDestroyAPI) -from InvenTree.status_codes import (PurchaseOrderStatus, ReturnOrderLineStatus, - ReturnOrderStatus, SalesOrderStatus) +from InvenTree.status_codes import (PurchaseOrderStatus, + PurchaseOrderStatusGroups, + ReturnOrderLineStatus, ReturnOrderStatus, + SalesOrderStatus, SalesOrderStatusGroups) from order import models, serializers from order.admin import (PurchaseOrderExtraLineResource, PurchaseOrderLineItemResource, PurchaseOrderResource, @@ -136,7 +139,7 @@ class OrderFilter(rest_filters.FilterSet): return queryset.exclude(status__in=self.Meta.model.get_status_class().OPEN) project_code = rest_filters.ModelChoiceFilter( - queryset=ProjectCode.objects.all(), + queryset=common_models.ProjectCode.objects.all(), field_name='project_code' ) @@ -431,9 +434,9 @@ class PurchaseOrderLineItemFilter(LineItemFilter): """Filter by "pending" status (order status = pending)""" if str2bool(value): - return queryset.filter(order__status__in=PurchaseOrderStatus.OPEN) + return queryset.filter(order__status__in=PurchaseOrderStatusGroups.OPEN) else: - return queryset.exclude(order__status__in=PurchaseOrderStatus.OPEN) + return queryset.exclude(order__status__in=PurchaseOrderStatusGroups.OPEN) received = rest_filters.BooleanFilter(label='received', method='filter_received') @@ -448,7 +451,7 @@ class PurchaseOrderLineItemFilter(LineItemFilter): return queryset.filter(q) else: # Only count "pending" orders - return queryset.exclude(q).filter(order__status__in=PurchaseOrderStatus.OPEN) + return queryset.exclude(q).filter(order__status__in=PurchaseOrderStatusGroups.OPEN) class PurchaseOrderLineItemMixin: @@ -984,12 +987,12 @@ class SalesOrderAllocationList(ListAPI): # Filter only "open" orders # Filter only allocations which have *not* shipped queryset = queryset.filter( - line__order__status__in=SalesOrderStatus.OPEN, + line__order__status__in=SalesOrderStatusGroups.OPEN, shipment__shipment_date=None, ) else: queryset = queryset.exclude( - line__order__status__in=SalesOrderStatus.OPEN, + line__order__status__in=SalesOrderStatusGroups.OPEN, shipment__shipment_date=None ) @@ -1454,7 +1457,7 @@ class OrderCalendarExport(ICalFeed): else: ordertype_title = _('Unknown') - return f'{InvenTreeSetting.get_setting("INVENTREE_COMPANY_NAME")} {ordertype_title}' + return f'{common_models.InvenTreeSetting.get_setting("INVENTREE_COMPANY_NAME")} {ordertype_title}' def product_id(self, obj): """Return calendar product id.""" @@ -1471,21 +1474,21 @@ class OrderCalendarExport(ICalFeed): if obj['include_completed'] is False: # Do not include completed orders from list in this case # Completed status = 30 - outlist = models.PurchaseOrder.objects.filter(target_date__isnull=False).filter(status__lt=PurchaseOrderStatus.COMPLETE) + outlist = models.PurchaseOrder.objects.filter(target_date__isnull=False).filter(status__lt=PurchaseOrderStatus.COMPLETE.value) else: outlist = models.PurchaseOrder.objects.filter(target_date__isnull=False) elif obj["ordertype"] == 'sales-order': if obj['include_completed'] is False: # Do not include completed (=shipped) orders from list in this case # Shipped status = 20 - outlist = models.SalesOrder.objects.filter(target_date__isnull=False).filter(status__lt=SalesOrderStatus.SHIPPED) + outlist = models.SalesOrder.objects.filter(target_date__isnull=False).filter(status__lt=SalesOrderStatus.SHIPPED.value) else: outlist = models.SalesOrder.objects.filter(target_date__isnull=False) elif obj["ordertype"] == 'return-order': if obj['include_completed'] is False: # Do not include completed orders from list in this case # Complete status = 30 - outlist = models.ReturnOrder.objects.filter(target_date__isnull=False).filter(status__lt=ReturnOrderStatus.COMPLETE) + outlist = models.ReturnOrder.objects.filter(target_date__isnull=False).filter(status__lt=ReturnOrderStatus.COMPLETE.value) else: outlist = models.ReturnOrder.objects.filter(target_date__isnull=False) else: diff --git a/InvenTree/order/migrations/0038_auto_20201112_1737.py b/InvenTree/order/migrations/0038_auto_20201112_1737.py index cdad4fe72f..121bdbe64f 100644 --- a/InvenTree/order/migrations/0038_auto_20201112_1737.py +++ b/InvenTree/order/migrations/0038_auto_20201112_1737.py @@ -8,6 +8,7 @@ import common.settings class Migration(migrations.Migration): dependencies = [ + ('common', '0004_inventreesetting'), ('order', '0037_auto_20201110_0911'), ] diff --git a/InvenTree/order/migrations/0096_alter_returnorderlineitem_outcome.py b/InvenTree/order/migrations/0096_alter_returnorderlineitem_outcome.py new file mode 100644 index 0000000000..ac95830807 --- /dev/null +++ b/InvenTree/order/migrations/0096_alter_returnorderlineitem_outcome.py @@ -0,0 +1,19 @@ +# Generated by Django 3.2.19 on 2023-06-04 17:43 + +from django.db import migrations, models +import InvenTree.status_codes + + +class Migration(migrations.Migration): + + dependencies = [ + ('order', '0095_salesordershipment_delivery_date'), + ] + + operations = [ + migrations.AlterField( + model_name='returnorderlineitem', + name='outcome', + field=models.PositiveIntegerField(choices=InvenTree.status_codes.ReturnOrderLineStatus.items(), default=10, help_text='Outcome for this line item', verbose_name='Outcome'), + ), + ] diff --git a/InvenTree/order/migrations/0097_auto_20230529_0107.py b/InvenTree/order/migrations/0097_auto_20230529_0107.py new file mode 100644 index 0000000000..cacf50ba4c --- /dev/null +++ b/InvenTree/order/migrations/0097_auto_20230529_0107.py @@ -0,0 +1,30 @@ +# Generated by Django 3.2.19 on 2023-05-29 01:07 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('company', '0065_remove_company_address'), + ('order', '0096_alter_returnorderlineitem_outcome'), + ] + + operations = [ + migrations.AddField( + model_name='purchaseorder', + name='address', + field=models.ForeignKey(blank=True, help_text='Company address for this order', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='company.address', verbose_name='Address'), + ), + migrations.AddField( + model_name='returnorder', + name='address', + field=models.ForeignKey(blank=True, help_text='Company address for this order', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='company.address', verbose_name='Address'), + ), + migrations.AddField( + model_name='salesorder', + name='address', + field=models.ForeignKey(blank=True, help_text='Company address for this order', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='company.address', verbose_name='Address'), + ), + ] diff --git a/InvenTree/order/models.py b/InvenTree/order/models.py index 34cb951564..6aa3fa98e0 100644 --- a/InvenTree/order/models.py +++ b/InvenTree/order/models.py @@ -22,6 +22,7 @@ from djmoney.contrib.exchange.models import convert_money from djmoney.money import Money from mptt.models import TreeForeignKey +import common.models as common_models import InvenTree.helpers import InvenTree.ready import InvenTree.tasks @@ -29,10 +30,9 @@ import InvenTree.validators import order.validators import stock.models import users.models as UserModels -from common.models import ProjectCode from common.notifications import InvenTreeNotificationBodies from common.settings import currency_code_default -from company.models import Company, Contact, SupplierPart +from company.models import Address, Company, Contact, SupplierPart from InvenTree.exceptions import log_error from InvenTree.fields import (InvenTreeModelMoneyField, InvenTreeURLField, RoundingDecimalField) @@ -41,9 +41,12 @@ from InvenTree.helpers_model import getSetting, notify_responsible from InvenTree.models import (InvenTreeAttachment, InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, ReferenceIndexingMixin) -from InvenTree.status_codes import (PurchaseOrderStatus, ReturnOrderLineStatus, - ReturnOrderStatus, SalesOrderStatus, - StockHistoryCode, StockStatus) +from InvenTree.status_codes import (PurchaseOrderStatus, + PurchaseOrderStatusGroups, + ReturnOrderLineStatus, ReturnOrderStatus, + ReturnOrderStatusGroups, SalesOrderStatus, + SalesOrderStatusGroups, StockHistoryCode, + StockStatus) from part import models as PartModels from plugin.events import trigger_event @@ -228,7 +231,11 @@ class Order(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, Reference description = models.CharField(max_length=250, blank=True, verbose_name=_('Description'), help_text=_('Order description (optional)')) - project_code = models.ForeignKey(ProjectCode, on_delete=models.SET_NULL, blank=True, null=True, verbose_name=_('Project Code'), help_text=_('Select project code for this order')) + project_code = models.ForeignKey( + common_models.ProjectCode, on_delete=models.SET_NULL, + blank=True, null=True, + verbose_name=_('Project Code'), help_text=_('Select project code for this order') + ) link = InvenTreeURLField(blank=True, verbose_name=_('Link'), help_text=_('Link to external page')) @@ -265,6 +272,15 @@ class Order(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, Reference related_name='+', ) + address = models.ForeignKey( + Address, + on_delete=models.SET_NULL, + blank=True, null=True, + verbose_name=_('Address'), + help_text=_('Company address for this order'), + related_name='+', + ) + @classmethod def get_status_class(cls): """Return the enumeration class which represents the 'status' field for this model""" @@ -294,7 +310,7 @@ class PurchaseOrder(TotalPriceMixin, Order): @classmethod def get_status_class(cls): """Return the PurchasOrderStatus class""" - return PurchaseOrderStatus + return PurchaseOrderStatusGroups @classmethod def api_defaults(cls, request): @@ -333,10 +349,10 @@ class PurchaseOrder(TotalPriceMixin, Order): return queryset # Construct a queryset for "received" orders within the range - received = Q(status=PurchaseOrderStatus.COMPLETE) & Q(complete_date__gte=min_date) & Q(complete_date__lte=max_date) + received = Q(status=PurchaseOrderStatus.COMPLETE.value) & Q(complete_date__gte=min_date) & Q(complete_date__lte=max_date) # Construct a queryset for "pending" orders within the range - pending = Q(status__in=PurchaseOrderStatus.OPEN) & ~Q(target_date=None) & Q(target_date__gte=min_date) & Q(target_date__lte=max_date) + pending = Q(status__in=PurchaseOrderStatusGroups.OPEN) & ~Q(target_date=None) & Q(target_date__gte=min_date) & Q(target_date__lte=max_date) # TODO - Construct a queryset for "overdue" orders within the range @@ -361,7 +377,7 @@ class PurchaseOrder(TotalPriceMixin, Order): ] ) - status = models.PositiveIntegerField(default=PurchaseOrderStatus.PENDING, choices=PurchaseOrderStatus.items(), + status = models.PositiveIntegerField(default=PurchaseOrderStatus.PENDING.value, choices=PurchaseOrderStatus.items(), help_text=_('Purchase order status')) @property @@ -479,7 +495,7 @@ class PurchaseOrder(TotalPriceMixin, Order): Order must be currently PENDING. """ if self.status == PurchaseOrderStatus.PENDING: - self.status = PurchaseOrderStatus.PLACED + self.status = PurchaseOrderStatus.PLACED.value self.issue_date = datetime.now().date() self.save() @@ -500,7 +516,7 @@ class PurchaseOrder(TotalPriceMixin, Order): Order must be currently PLACED. """ if self.status == PurchaseOrderStatus.PLACED: - self.status = PurchaseOrderStatus.COMPLETE + self.status = PurchaseOrderStatus.COMPLETE.value self.complete_date = datetime.now().date() self.save() @@ -520,7 +536,7 @@ class PurchaseOrder(TotalPriceMixin, Order): @property def is_open(self): """Return True if the PurchaseOrder is 'open'""" - return self.status in PurchaseOrderStatus.OPEN + return self.status in PurchaseOrderStatusGroups.OPEN def can_cancel(self): """A PurchaseOrder can only be cancelled under the following circumstances. @@ -537,7 +553,7 @@ class PurchaseOrder(TotalPriceMixin, Order): def cancel_order(self): """Marks the PurchaseOrder as CANCELLED.""" if self.can_cancel(): - self.status = PurchaseOrderStatus.CANCELLED + self.status = PurchaseOrderStatus.CANCELLED.value self.save() trigger_event('purchaseorder.cancelled', id=self.pk) @@ -574,7 +590,7 @@ class PurchaseOrder(TotalPriceMixin, Order): return self.lines.count() > 0 and self.pending_line_items().count() == 0 @transaction.atomic - def receive_line_item(self, line, location, quantity, user, status=StockStatus.OK, **kwargs): + def receive_line_item(self, line, location, quantity, user, status=StockStatus.OK.value, **kwargs): """Receive a line item (or partial line item) against this PurchaseOrder.""" # Extract optional batch code for the new stock item batch_code = kwargs.get('batch_code', '') @@ -701,7 +717,7 @@ class SalesOrder(TotalPriceMixin, Order): @classmethod def get_status_class(cls): """Return the SalesOrderStatus class""" - return SalesOrderStatus + return SalesOrderStatusGroups @classmethod def api_defaults(cls, request): @@ -739,10 +755,10 @@ class SalesOrder(TotalPriceMixin, Order): return queryset # Construct a queryset for "completed" orders within the range - completed = Q(status__in=SalesOrderStatus.COMPLETE) & Q(shipment_date__gte=min_date) & Q(shipment_date__lte=max_date) + completed = Q(status__in=SalesOrderStatusGroups.COMPLETE) & Q(shipment_date__gte=min_date) & Q(shipment_date__lte=max_date) # Construct a queryset for "pending" orders within the range - pending = Q(status__in=SalesOrderStatus.OPEN) & ~Q(target_date=None) & Q(target_date__gte=min_date) & Q(target_date__lte=max_date) + pending = Q(status__in=SalesOrderStatusGroups.OPEN) & ~Q(target_date=None) & Q(target_date__gte=min_date) & Q(target_date__lte=max_date) # TODO: Construct a queryset for "overdue" orders within the range @@ -783,7 +799,7 @@ class SalesOrder(TotalPriceMixin, Order): return self.customer status = models.PositiveIntegerField( - default=SalesOrderStatus.PENDING, + default=SalesOrderStatus.PENDING.value, choices=SalesOrderStatus.items(), verbose_name=_('Status'), help_text=_('Purchase order status') ) @@ -813,7 +829,7 @@ class SalesOrder(TotalPriceMixin, Order): @property def is_open(self): """Return True if this order is 'open' (either 'pending' or 'in_progress')""" - return self.status in SalesOrderStatus.OPEN + return self.status in SalesOrderStatusGroups.OPEN @property def stock_allocations(self): @@ -830,10 +846,10 @@ class SalesOrder(TotalPriceMixin, Order): return True - def is_over_allocated(self): + def is_overallocated(self): """Return true if any lines in the order are over-allocated.""" for line in self.lines.all(): - if line.is_over_allocated(): + if line.is_overallocated(): return True return False @@ -881,7 +897,7 @@ class SalesOrder(TotalPriceMixin, Order): """Change this order from 'PENDING' to 'IN_PROGRESS'""" if self.status == SalesOrderStatus.PENDING: - self.status = SalesOrderStatus.IN_PROGRESS + self.status = SalesOrderStatus.IN_PROGRESS.value self.issue_date = datetime.now().date() self.save() @@ -892,7 +908,7 @@ class SalesOrder(TotalPriceMixin, Order): if not self.can_complete(**kwargs): return False - self.status = SalesOrderStatus.SHIPPED + self.status = SalesOrderStatus.SHIPPED.value self.shipped_by = user self.shipment_date = datetime.now() @@ -921,7 +937,7 @@ class SalesOrder(TotalPriceMixin, Order): if not self.can_cancel(): return False - self.status = SalesOrderStatus.CANCELLED + self.status = SalesOrderStatus.CANCELLED.value self.save() for line in self.lines.all(): @@ -1355,7 +1371,7 @@ class SalesOrderLineItem(OrderLineItem): return self.allocated_quantity() >= self.quantity - def is_over_allocated(self): + def is_overallocated(self): """Return True if this line item is over allocated.""" return self.allocated_quantity() > self.quantity @@ -1696,7 +1712,7 @@ class ReturnOrder(TotalPriceMixin, Order): @classmethod def get_status_class(cls): """Return the ReturnOrderStatus class""" - return ReturnOrderStatus + return ReturnOrderStatusGroups @classmethod def api_defaults(cls, request): @@ -1742,7 +1758,7 @@ class ReturnOrder(TotalPriceMixin, Order): return self.customer status = models.PositiveIntegerField( - default=ReturnOrderStatus.PENDING, + default=ReturnOrderStatus.PENDING.value, choices=ReturnOrderStatus.items(), verbose_name=_('Status'), help_text=_('Return order status') ) @@ -1773,7 +1789,7 @@ class ReturnOrder(TotalPriceMixin, Order): @property def is_open(self): """Return True if this order is outstanding""" - return self.status in ReturnOrderStatus.OPEN + return self.status in ReturnOrderStatusGroups.OPEN @property def is_received(self): @@ -1784,7 +1800,7 @@ class ReturnOrder(TotalPriceMixin, Order): def cancel_order(self): """Cancel this ReturnOrder (if not already cancelled)""" if self.status != ReturnOrderStatus.CANCELLED: - self.status = ReturnOrderStatus.CANCELLED + self.status = ReturnOrderStatus.CANCELLED.value self.save() trigger_event('returnorder.cancelled', id=self.pk) @@ -1794,7 +1810,7 @@ class ReturnOrder(TotalPriceMixin, Order): """Complete this ReturnOrder (if not already completed)""" if self.status == ReturnOrderStatus.IN_PROGRESS: - self.status = ReturnOrderStatus.COMPLETE + self.status = ReturnOrderStatus.COMPLETE.value self.complete_date = datetime.now().date() self.save() @@ -1809,7 +1825,7 @@ class ReturnOrder(TotalPriceMixin, Order): """Issue this ReturnOrder (if currently pending)""" if self.status == ReturnOrderStatus.PENDING: - self.status = ReturnOrderStatus.IN_PROGRESS + self.status = ReturnOrderStatus.IN_PROGRESS.value self.issue_date = datetime.now().date() self.save() @@ -1833,7 +1849,7 @@ class ReturnOrder(TotalPriceMixin, Order): stock_item = line.item deltas = { - 'status': StockStatus.QUARANTINED, + 'status': StockStatus.QUARANTINED.value, 'returnorder': self.pk, 'location': location.pk, } @@ -1842,7 +1858,7 @@ class ReturnOrder(TotalPriceMixin, Order): deltas['customer'] = stock_item.customer.pk # Update the StockItem - stock_item.status = StockStatus.QUARANTINED + stock_item.status = StockStatus.QUARANTINED.value stock_item.location = location stock_item.customer = None stock_item.sales_order = None @@ -1926,7 +1942,7 @@ class ReturnOrderLineItem(OrderLineItem): return self.received_date is not None outcome = models.PositiveIntegerField( - default=ReturnOrderLineStatus.PENDING, + default=ReturnOrderLineStatus.PENDING.value, choices=ReturnOrderLineStatus.items(), verbose_name=_('Outcome'), help_text=_('Outcome for this line item') ) diff --git a/InvenTree/order/serializers.py b/InvenTree/order/serializers.py index f8c3c0dcc4..fe27cd447e 100644 --- a/InvenTree/order/serializers.py +++ b/InvenTree/order/serializers.py @@ -13,12 +13,13 @@ from rest_framework import serializers from rest_framework.serializers import ValidationError from sql_util.utils import SubqueryCount -import common.serializers import order.models import part.filters import stock.models import stock.serializers -from company.serializers import (CompanyBriefSerializer, ContactSerializer, +from common.serializers import ProjectCodeSerializer +from company.serializers import (AddressBriefSerializer, + CompanyBriefSerializer, ContactSerializer, SupplierPartSerializer) from InvenTree.helpers import (extract_serial_numbers, hash_barcode, normalize, str2bool) @@ -27,8 +28,9 @@ from InvenTree.serializers import (InvenTreeAttachmentSerializer, InvenTreeDecimalField, InvenTreeModelSerializer, InvenTreeMoneySerializer) -from InvenTree.status_codes import (PurchaseOrderStatus, ReturnOrderStatus, - SalesOrderStatus, StockStatus) +from InvenTree.status_codes import (PurchaseOrderStatusGroups, + ReturnOrderStatus, SalesOrderStatusGroups, + StockStatus) from part.serializers import PartBriefSerializer from users.serializers import OwnerSerializer @@ -72,7 +74,10 @@ class AbstractOrderSerializer(serializers.Serializer): responsible_detail = OwnerSerializer(source='responsible', read_only=True, many=False) # Detail for project code field - project_code_detail = common.serializers.ProjectCodeSerializer(source='project_code', read_only=True, many=False) + project_code_detail = ProjectCodeSerializer(source='project_code', read_only=True, many=False) + + # Detail for address field + address_detail = AddressBriefSerializer(source='address', many=False, read_only=True) # Boolean field indicating if this order is overdue (Note: must be annotated) overdue = serializers.BooleanField(required=False, read_only=True) @@ -113,6 +118,8 @@ class AbstractOrderSerializer(serializers.Serializer): 'responsible_detail', 'contact', 'contact_detail', + 'address', + 'address_detail', 'status', 'status_text', 'notes', @@ -381,7 +388,7 @@ class PurchaseOrderLineItemSerializer(InvenTreeModelSerializer): def validate_purchase_order(self, purchase_order): """Validation for the 'purchase_order' field""" - if purchase_order.status not in PurchaseOrderStatus.OPEN: + if purchase_order.status not in PurchaseOrderStatusGroups.OPEN: raise ValidationError(_('Order is not open')) return purchase_order @@ -518,8 +525,8 @@ class PurchaseOrderLineItemReceiveSerializer(serializers.Serializer): ) status = serializers.ChoiceField( - choices=list(StockStatus.items()), - default=StockStatus.OK, + choices=StockStatus.items(), + default=StockStatus.OK.value, label=_('Status'), ) @@ -906,7 +913,7 @@ class SalesOrderLineItemSerializer(InvenTreeModelSerializer): queryset = queryset.annotate( overdue=Case( When( - Q(order__status__in=SalesOrderStatus.OPEN) & order.models.SalesOrderLineItem.OVERDUE_FILTER, then=Value(True, output_field=BooleanField()), + Q(order__status__in=SalesOrderStatusGroups.OPEN) & order.models.SalesOrderLineItem.OVERDUE_FILTER, then=Value(True, output_field=BooleanField()), ), default=Value(False, output_field=BooleanField()), ) diff --git a/InvenTree/order/tasks.py b/InvenTree/order/tasks.py index e04906bd00..225c3a7976 100644 --- a/InvenTree/order/tasks.py +++ b/InvenTree/order/tasks.py @@ -7,7 +7,8 @@ from django.utils.translation import gettext_lazy as _ import common.notifications import InvenTree.helpers_model import order.models -from InvenTree.status_codes import PurchaseOrderStatus, SalesOrderStatus +from InvenTree.status_codes import (PurchaseOrderStatusGroups, + SalesOrderStatusGroups) from InvenTree.tasks import ScheduledTask, scheduled_task from plugin.events import trigger_event @@ -68,7 +69,7 @@ def check_overdue_purchase_orders(): overdue_orders = order.models.PurchaseOrder.objects.filter( target_date=yesterday, - status__in=PurchaseOrderStatus.OPEN + status__in=PurchaseOrderStatusGroups.OPEN, ) for po in overdue_orders: @@ -131,7 +132,7 @@ def check_overdue_sales_orders(): overdue_orders = order.models.SalesOrder.objects.filter( target_date=yesterday, - status__in=SalesOrderStatus.OPEN + status__in=SalesOrderStatusGroups.OPEN, ) for po in overdue_orders: diff --git a/InvenTree/order/templates/order/order_base.html b/InvenTree/order/templates/order/order_base.html index 4eb6c55659..4f42be86d4 100644 --- a/InvenTree/order/templates/order/order_base.html +++ b/InvenTree/order/templates/order/order_base.html @@ -3,7 +3,7 @@ {% load i18n %} {% load static %} {% load inventree_extras %} -{% load status_codes %} +{% load generic %} {% block page_title %} {% inventree_title %} | {% trans "Purchase Order" %} @@ -80,10 +80,6 @@ {% trans "Issue Order" %} {% elif order.is_open %} - @@ -121,7 +117,7 @@ src="{% static 'img/blank_image.png' %}" {% trans "Order Status" %} - {% purchase_order_status_label order.status %} + {% status_label 'purchase_order' order.status %} {% if order.is_overdue %} {% trans "Overdue" %} {% endif %} @@ -208,6 +204,13 @@ src="{% static 'img/blank_image.png' %}" {{ order.contact.name }} {% endif %} + {% if order.address %} + + + {% trans "Address" %} + {{ order.address.title }}: {{ order.address }} + + {% endif %} {% if order.responsible %} @@ -270,22 +273,6 @@ $("#edit-order").click(function() { }); }); -$("#receive-order").click(function() { - - // Auto select items which have not been fully allocated - var items = getTableData('#po-line-table'); - - receivePurchaseOrderItems( - {{ order.id }}, - items, - { - success: function() { - $("#po-line-table").bootstrapTable('refresh'); - } - } - ); -}); - $("#complete-order").click(function() { completePurchaseOrder( diff --git a/InvenTree/order/templates/order/purchase_order_detail.html b/InvenTree/order/templates/order/purchase_order_detail.html index e484b245c4..85065ff46f 100644 --- a/InvenTree/order/templates/order/purchase_order_detail.html +++ b/InvenTree/order/templates/order/purchase_order_detail.html @@ -1,7 +1,7 @@ {% extends "order/order_base.html" %} {% load inventree_extras %} -{% load status_codes %} +{% load generic %} {% load i18n %} {% load static %} @@ -37,23 +37,7 @@
-
- {% if roles.purchase_order.change %} - {% if order.is_open or allow_extra_editing %} - - {% endif %} - {% endif %} - +
{% include "filter_list.html" with id="purchase-order-lines" %}
@@ -77,10 +61,8 @@
-
-
- {% include "filter_list.html" with id="purchase-order-extra-lines" %} -
+
+ {% include "filter_list.html" with id="purchase-order-extra-lines" %}
@@ -168,9 +150,6 @@ supplier_part_detail: true, location_detail: true, }, - buttons: [ - '#stock-options', - ], filterkey: "postock" }); @@ -187,8 +166,9 @@ $('#new-po-line').click(function() { } }); }); +{% endif %} -{% elif order.status == PurchaseOrderStatus.PLACED %} +{% if order.status == PurchaseOrderStatus.PLACED %} $('#receive-selected-items').click(function() { let items = getTableData('#po-line-table'); diff --git a/InvenTree/order/templates/order/purchase_orders.html b/InvenTree/order/templates/order/purchase_orders.html index 23b56baee1..d601b3fd17 100644 --- a/InvenTree/order/templates/order/purchase_orders.html +++ b/InvenTree/order/templates/order/purchase_orders.html @@ -24,11 +24,7 @@
-
-
- {% include "filter_list.html" with id="purchaseorder" %} -
-
+ {% include "filter_list.html" with id="purchaseorder" %}
diff --git a/InvenTree/order/templates/order/return_order_base.html b/InvenTree/order/templates/order/return_order_base.html index 9288e41f37..7c3a609c99 100644 --- a/InvenTree/order/templates/order/return_order_base.html +++ b/InvenTree/order/templates/order/return_order_base.html @@ -3,7 +3,7 @@ {% load i18n %} {% load static %} {% load inventree_extras %} -{% load status_codes %} +{% load generic %} {% block page_title %} {% inventree_title %} | {% trans "Return Order" %} @@ -113,7 +113,7 @@ src="{% static 'img/blank_image.png' %}" {% endif %} + {% if order.address %} + + + + + + {% endif %} {% if order.responsible %} diff --git a/InvenTree/order/templates/order/return_order_detail.html b/InvenTree/order/templates/order/return_order_detail.html index 56a943308f..9c11ff6270 100644 --- a/InvenTree/order/templates/order/return_order_detail.html +++ b/InvenTree/order/templates/order/return_order_detail.html @@ -1,7 +1,7 @@ {% extends "order/return_order_base.html" %} {% load inventree_extras %} -{% load status_codes %} +{% load generic %} {% load i18n %} {% load static %} @@ -34,10 +34,8 @@
-
-
- {% include "filter_list.html" with id="returnorderlines" %} -
+
+ {% include "filter_list.html" with id="returnorderlines" %}
{% trans "Order Status" %} - {% return_order_status_label order.status %} + {% status_label 'return_order' order.status %} {% if order.is_overdue %} {% trans "Overdue" %} {% endif %} @@ -176,6 +176,13 @@ src="{% static 'img/blank_image.png' %}" {{ order.contact.name }}
{% trans "Address" %}{{ order.address.title }}: {{ order.address }}
@@ -58,10 +56,8 @@
-
-
- {% include "filter_list.html" with id="return-order-extra-lines" %} -
+
+ {% include "filter_list.html" with id="return-order-extra-lines" %}
diff --git a/InvenTree/order/templates/order/return_orders.html b/InvenTree/order/templates/order/return_orders.html index 698b682be0..834047eb46 100644 --- a/InvenTree/order/templates/order/return_orders.html +++ b/InvenTree/order/templates/order/return_orders.html @@ -26,15 +26,11 @@ {% block page_info %}
-
-
-
- {% include "filter_list.html" with id="returnorder" %} -
-
+
+ {% include "filter_list.html" with id="returnorder" %}
- +
diff --git a/InvenTree/order/templates/order/sales_order_base.html b/InvenTree/order/templates/order/sales_order_base.html index be8dac2bab..2c5c28e05e 100644 --- a/InvenTree/order/templates/order/sales_order_base.html +++ b/InvenTree/order/templates/order/sales_order_base.html @@ -3,7 +3,7 @@ {% load i18n %} {% load static %} {% load inventree_extras %} -{% load status_codes %} +{% load generic %} {% block page_title %} {% inventree_title %} | {% trans "Sales Order" %} @@ -118,7 +118,7 @@ src="{% static 'img/blank_image.png' %}" {% trans "Order Status" %} - {% sales_order_status_label order.status %} + {% status_label 'sales_order' order.status %} {% if order.is_overdue %} {% trans "Overdue" %} {% endif %} @@ -216,6 +216,13 @@ src="{% static 'img/blank_image.png' %}" {{ order.contact.name }} {% endif %} + {% if order.address %} + + + {% trans "Address" %} + {{ order.address.title }}: {{ order.address }} + + {% endif %} {% if order.responsible %} diff --git a/InvenTree/order/templates/order/sales_order_detail.html b/InvenTree/order/templates/order/sales_order_detail.html index ede1e30711..24cb4e4b78 100644 --- a/InvenTree/order/templates/order/sales_order_detail.html +++ b/InvenTree/order/templates/order/sales_order_detail.html @@ -1,7 +1,7 @@ {% extends "order/sales_order_base.html" %} {% load inventree_extras %} -{% load status_codes %} +{% load generic %} {% load i18n %} {% load static %} @@ -29,10 +29,8 @@
-
-
- {% include "filter_list.html" with id="sales-order-lines" %} -
+
+ {% include "filter_list.html" with id="sales-order-lines" %}
@@ -54,10 +52,8 @@
-
-
- {% include "filter_list.html" with id="sales-order-extra-lines" %} -
+
+ {% include "filter_list.html" with id="sales-order-extra-lines" %}
@@ -89,10 +85,8 @@
{% if roles.sales_order.change %} -
-
- {% include "filter_list.html" with id="pending-shipments" %} -
+
+ {% include "filter_list.html" with id="pending-shipments" %}
{% endif %}
@@ -105,10 +99,8 @@

{% trans "Completed Shipments" %}

-
-
- {% include "filter_list.html" with id="completed-shipments" %} -
+
+ {% include "filter_list.html" with id="completed-shipments" %}
@@ -119,10 +111,8 @@

{% trans "Build Orders" %}

-
-
- {% include "filter_list.html" with id='build' %} -
+
+ {% include "filter_list.html" with id='build' %}
diff --git a/InvenTree/order/templates/order/sales_orders.html b/InvenTree/order/templates/order/sales_orders.html index 86c64fbe54..c4cc86cad1 100644 --- a/InvenTree/order/templates/order/sales_orders.html +++ b/InvenTree/order/templates/order/sales_orders.html @@ -27,10 +27,8 @@
-
-
- {% include "filter_list.html" with id="salesorder" %} -
+
+ {% include "filter_list.html" with id="salesorder" %}
diff --git a/InvenTree/order/test_api.py b/InvenTree/order/test_api.py index 436b21c938..99ee7bc894 100644 --- a/InvenTree/order/test_api.py +++ b/InvenTree/order/test_api.py @@ -17,7 +17,7 @@ from common.settings import currency_codes from company.models import Company from InvenTree.status_codes import (PurchaseOrderStatus, ReturnOrderLineStatus, ReturnOrderStatus, SalesOrderStatus, - StockStatus) + SalesOrderStatusGroups, StockStatus) from InvenTree.unit_test import InvenTreeAPITestCase from order import models from part.models import Part @@ -562,7 +562,7 @@ class PurchaseOrderTest(OrderTest): # Test without completed orders response = self.get(url, expected_code=200, format=None) - number_orders = len(models.PurchaseOrder.objects.filter(target_date__isnull=False).filter(status__lt=PurchaseOrderStatus.COMPLETE)) + number_orders = len(models.PurchaseOrder.objects.filter(target_date__isnull=False).filter(status__lt=PurchaseOrderStatus.COMPLETE.value)) # Transform content to a Calendar object calendar = Calendar.from_ical(response.content) @@ -743,7 +743,7 @@ class PurchaseOrderReceiveTest(OrderTest): # Mark the order as "placed" so we can receive line items order = models.PurchaseOrder.objects.get(pk=1) - order.status = PurchaseOrderStatus.PLACED + order.status = PurchaseOrderStatus.PLACED.value order.save() def test_empty(self): @@ -944,7 +944,7 @@ class PurchaseOrderReceiveTest(OrderTest): # Before posting "valid" data, we will mark the purchase order as "pending" # In this case we do expect an error! order = models.PurchaseOrder.objects.get(pk=1) - order.status = PurchaseOrderStatus.PENDING + order.status = PurchaseOrderStatus.PENDING.value order.save() response = self.post( @@ -956,7 +956,7 @@ class PurchaseOrderReceiveTest(OrderTest): self.assertIn('can only be received against', str(response.data)) # Now, set the PurchaseOrder back to "PLACED" so the items can be received - order.status = PurchaseOrderStatus.PLACED + order.status = PurchaseOrderStatus.PLACED.value order.save() # Receive two separate line items against this order @@ -1388,7 +1388,7 @@ class SalesOrderTest(OrderTest): # Test without completed orders response = self.get(url, expected_code=200, format=None) - number_orders = len(models.SalesOrder.objects.filter(target_date__isnull=False).filter(status__lt=SalesOrderStatus.SHIPPED)) + number_orders = len(models.SalesOrder.objects.filter(target_date__isnull=False).filter(status__lt=SalesOrderStatus.SHIPPED.value)) # Transform content to a Calendar object calendar = Calendar.from_ical(response.content) @@ -1621,7 +1621,7 @@ class SalesOrderDownloadTest(OrderTest): file, required_cols=required_cols, excluded_cols=excluded_cols, - required_rows=models.SalesOrder.objects.filter(status__in=SalesOrderStatus.OPEN).count(), + required_rows=models.SalesOrder.objects.filter(status__in=SalesOrderStatusGroups.OPEN).count(), delimiter='\t', ) diff --git a/InvenTree/order/test_migrations.py b/InvenTree/order/test_migrations.py index a45f09fc48..8bcdbeae8e 100644 --- a/InvenTree/order/test_migrations.py +++ b/InvenTree/order/test_migrations.py @@ -109,7 +109,7 @@ class TestShipmentMigration(MigratorTestCase): reference=f'SO{ii}', customer=customer, description='A sales order for stuffs', - status=SalesOrderStatus.PENDING, + status=SalesOrderStatus.PENDING.value, ) order.save() diff --git a/InvenTree/order/test_sales_order.py b/InvenTree/order/test_sales_order.py index 77c4a900aa..7d787b91ff 100644 --- a/InvenTree/order/test_sales_order.py +++ b/InvenTree/order/test_sales_order.py @@ -102,7 +102,7 @@ class SalesOrderTest(TestCase): self.assertEqual(self.line.allocated_quantity(), 0) self.assertEqual(self.line.fulfilled_quantity(), 0) self.assertFalse(self.line.is_fully_allocated()) - self.assertFalse(self.line.is_over_allocated()) + self.assertFalse(self.line.is_overallocated()) self.assertTrue(self.order.is_pending) self.assertFalse(self.order.is_fully_allocated()) diff --git a/InvenTree/part/api.py b/InvenTree/part/api.py index d18ac8ea20..d88791df09 100644 --- a/InvenTree/part/api.py +++ b/InvenTree/part/api.py @@ -29,8 +29,9 @@ from InvenTree.mixins import (CreateAPI, CustomRetrieveUpdateDestroyAPI, RetrieveUpdateAPI, RetrieveUpdateDestroyAPI, UpdateAPI) from InvenTree.permissions import RolePermission -from InvenTree.status_codes import (BuildStatus, PurchaseOrderStatus, - SalesOrderStatus) +from InvenTree.status_codes import (BuildStatusGroups, + PurchaseOrderStatusGroups, + SalesOrderStatusGroups) from part.admin import PartCategoryResource, PartResource from . import serializers as part_serializers @@ -349,7 +350,10 @@ class PartTestTemplateDetail(RetrieveUpdateDestroyAPI): class PartTestTemplateList(ListCreateAPI): - """API endpoint for listing (and creating) a PartTestTemplate.""" + """API endpoint for listing (and creating) a PartTestTemplate. + + TODO: Add filterset class for this view + """ queryset = PartTestTemplate.objects.all() serializer_class = part_serializers.PartTestTemplateSerializer @@ -479,7 +483,7 @@ class PartScheduling(RetrieveAPI): # Add purchase order (incoming stock) information po_lines = order.models.PurchaseOrderLineItem.objects.filter( part__part=part, - order__status__in=PurchaseOrderStatus.OPEN, + order__status__in=PurchaseOrderStatusGroups.OPEN, ) for line in po_lines: @@ -502,7 +506,7 @@ class PartScheduling(RetrieveAPI): # Add sales order (outgoing stock) information so_lines = order.models.SalesOrderLineItem.objects.filter( part=part, - order__status__in=SalesOrderStatus.OPEN, + order__status__in=SalesOrderStatusGroups.OPEN, ) for line in so_lines: @@ -522,7 +526,7 @@ class PartScheduling(RetrieveAPI): # Add build orders (incoming stock) information build_orders = Build.objects.filter( part=part, - status__in=BuildStatus.ACTIVE_CODES + status__in=BuildStatusGroups.ACTIVE_CODES ) for build in build_orders: @@ -567,12 +571,12 @@ class PartScheduling(RetrieveAPI): # An "inherited" BOM item filters down to variant parts also children = bom_item.part.get_descendants(include_self=True) builds = Build.objects.filter( - status__in=BuildStatus.ACTIVE_CODES, + status__in=BuildStatusGroups.ACTIVE_CODES, part__in=children, ) else: builds = Build.objects.filter( - status__in=BuildStatus.ACTIVE_CODES, + status__in=BuildStatusGroups.ACTIVE_CODES, part=bom_item.part, ) @@ -593,8 +597,8 @@ class PartScheduling(RetrieveAPI): # Grab all allocations against the specified BomItem allocations = BuildItem.objects.filter( - bom_item=bom_item, - build=build, + build_line__bom_item=bom_item, + build_line__build=build, ) # Total allocated for *this* part @@ -852,10 +856,10 @@ class PartFilter(rest_filters.FilterSet): if str2bool(value): # Ignore any parts which do not have a specified 'minimum_stock' level # Filter items which have an 'in_stock' level lower than 'minimum_stock' - return queryset.exclude(minimum_stock=0).filter(Q(in_stock__lt=F('minimum_stock'))) + return queryset.exclude(minimum_stock=0).filter(Q(total_in_stock__lt=F('minimum_stock'))) else: # Filter items which have an 'in_stock' level higher than 'minimum_stock' - return queryset.filter(Q(in_stock__gte=F('minimum_stock'))) + return queryset.filter(Q(total_in_stock__gte=F('minimum_stock'))) # has_stock filter has_stock = rest_filters.BooleanFilter(label='Has stock', method='filter_has_stock') @@ -944,6 +948,28 @@ class PartFilter(rest_filters.FilterSet): else: return queryset.filter(last_stocktake=None) + stock_to_build = rest_filters.BooleanFilter(label='Required for Build Order', method='filter_stock_to_build') + + def filter_stock_to_build(self, queryset, name, value): + """Filter the queryset based on whether part stock is required for a pending BuildOrder""" + + if str2bool(value): + # Return parts which are required for a build order, but have not yet been allocated + return queryset.filter(required_for_build_orders__gt=F('allocated_to_build_orders')) + else: + # Return parts which are not required for a build order, or have already been allocated + return queryset.filter(required_for_build_orders__lte=F('allocated_to_build_orders')) + + depleted_stock = rest_filters.BooleanFilter(label='Depleted Stock', method='filter_depleted_stock') + + def filter_depleted_stock(self, queryset, name, value): + """Filter the queryset based on whether the part is fully depleted of stock""" + + if str2bool(value): + return queryset.filter(Q(in_stock=0) & ~Q(stock_item_count=0)) + else: + return queryset.exclude(Q(in_stock=0) & ~Q(stock_item_count=0)) + is_template = rest_filters.BooleanFilter() assembly = rest_filters.BooleanFilter() @@ -964,6 +990,10 @@ class PartFilter(rest_filters.FilterSet): tags_slug = rest_filters.CharFilter(field_name='tags__slug', lookup_expr='iexact') + # Created date filters + created_before = rest_filters.DateFilter(label='Updated before', field_name='creation_date', lookup_expr='lte') + created_after = rest_filters.DateFilter(label='Updated after', field_name='creation_date', lookup_expr='gte') + class PartMixin: """Mixin class for Part API endpoints""" @@ -1180,32 +1210,6 @@ class PartList(PartMixin, APIDownloadMixin, ListCreateAPI): except (ValueError, PartCategory.DoesNotExist): pass - # Filer by 'depleted_stock' status -> has no stock and stock items - depleted_stock = params.get('depleted_stock', None) - - if depleted_stock is not None: - depleted_stock = str2bool(depleted_stock) - - if depleted_stock: - queryset = queryset.filter(Q(in_stock=0) & ~Q(stock_item_count=0)) - - # Filter by "parts which need stock to complete build" - stock_to_build = params.get('stock_to_build', None) - - # TODO: This is super expensive, database query wise... - # TODO: Need to figure out a cheaper way of making this filter query - - if stock_to_build is not None: - # Get active builds - builds = Build.objects.filter(status__in=BuildStatus.ACTIVE_CODES) - # Store parts with builds needing stock - parts_needed_to_complete_builds = [] - # Filter required parts - for build in builds: - parts_needed_to_complete_builds += [part.pk for part in build.required_parts_to_complete_build] - - queryset = queryset.filter(pk__in=parts_needed_to_complete_builds) - queryset = self.filter_parameteric_data(queryset) return queryset @@ -1267,6 +1271,13 @@ class PartList(PartMixin, APIDownloadMixin, ListCreateAPI): ] +class PartChangeCategory(CreateAPI): + """API endpoint to change the location of multiple parts in bulk""" + + serializer_class = part_serializers.PartSetCategorySerializer + queryset = Part.objects.none() + + class PartDetail(PartMixin, RetrieveUpdateDestroyAPI): """API endpoint for detail view of a single Part object.""" @@ -1450,13 +1461,8 @@ class PartParameterTemplateDetail(RetrieveUpdateDestroyAPI): serializer_class = part_serializers.PartParameterTemplateSerializer -class PartParameterList(ListCreateAPI): - """API endpoint for accessing a list of PartParameter objects. - - - GET: Return list of PartParameter objects - - POST: Create a new PartParameter object - """ - +class PartParameterAPIMixin: + """Mixin class for PartParameter API endpoints.""" queryset = PartParameter.objects.all() serializer_class = part_serializers.PartParameterSerializer @@ -1474,21 +1480,35 @@ class PartParameterList(ListCreateAPI): return self.serializer_class(*args, **kwargs) - filter_backends = [ - DjangoFilterBackend + +class PartParameterList(PartParameterAPIMixin, ListCreateAPI): + """API endpoint for accessing a list of PartParameter objects. + + - GET: Return list of PartParameter objects + - POST: Create a new PartParameter object + """ + + filter_backends = SEARCH_ORDER_FILTER_ALIAS + + ordering_fields = [ + 'name', + 'data', ] + ordering_field_aliases = { + 'name': 'template__name', + 'data': ['data_numeric', 'data'], + } + filterset_fields = [ 'part', 'template', ] -class PartParameterDetail(RetrieveUpdateDestroyAPI): +class PartParameterDetail(PartParameterAPIMixin, RetrieveUpdateDestroyAPI): """API endpoint for detail view of a single PartParameter object.""" - - queryset = PartParameter.objects.all() - serializer_class = part_serializers.PartParameterSerializer + pass class PartStocktakeFilter(rest_filters.FilterSet): @@ -2016,6 +2036,8 @@ part_api_urls = [ re_path(r'^.*$', PartDetail.as_view(), name='api-part-detail'), ])), + re_path(r'^change_category/', PartChangeCategory.as_view(), name='api-part-change-category'), + re_path(r'^.*$', PartList.as_view(), name='api-part-list'), ] diff --git a/InvenTree/part/filters.py b/InvenTree/part/filters.py index aa0015ea94..dbdc907bfd 100644 --- a/InvenTree/part/filters.py +++ b/InvenTree/part/filters.py @@ -28,8 +28,9 @@ from sql_util.utils import SubquerySum import part.models import stock.models -from InvenTree.status_codes import (BuildStatus, PurchaseOrderStatus, - SalesOrderStatus) +from InvenTree.status_codes import (BuildStatusGroups, + PurchaseOrderStatusGroups, + SalesOrderStatusGroups) def annotate_on_order_quantity(reference: str = ''): @@ -46,7 +47,7 @@ def annotate_on_order_quantity(reference: str = ''): # Filter only 'active' purhase orders # Filter only line with outstanding quantity order_filter = Q( - order__status__in=PurchaseOrderStatus.OPEN, + order__status__in=PurchaseOrderStatusGroups.OPEN, quantity__gt=F('received'), ) @@ -98,6 +99,28 @@ def annotate_total_stock(reference: str = ''): ) +def annotate_build_order_requirements(reference: str = ''): + """Annotate the total quantity of each part required for build orders. + + - Only interested in 'active' build orders + - We are looking for any BuildLine items which required this part (bom_item.sub_part) + - We are interested in the 'quantity' of each BuildLine item + + """ + + # Active build orders only + build_filter = Q(build__status__in=BuildStatusGroups.ACTIVE_CODES) + + return Coalesce( + SubquerySum( + f'{reference}used_in__build_lines__quantity', + filter=build_filter, + ), + Decimal(0), + output_field=models.DecimalField(), + ) + + def annotate_build_order_allocations(reference: str = ''): """Annotate the total quantity of each part allocated to build orders: @@ -111,7 +134,7 @@ def annotate_build_order_allocations(reference: str = ''): """ # Build filter only returns 'active' build orders - build_filter = Q(build__status__in=BuildStatus.ACTIVE_CODES) + build_filter = Q(build_line__build__status__in=BuildStatusGroups.ACTIVE_CODES) return Coalesce( SubquerySum( @@ -137,7 +160,7 @@ def annotate_sales_order_allocations(reference: str = ''): # Order filter only returns incomplete shipments for open orders order_filter = Q( - line__order__status__in=SalesOrderStatus.OPEN, + line__order__status__in=SalesOrderStatusGroups.OPEN, shipment__shipment_date=None, ) diff --git a/InvenTree/part/fixtures/part.yaml b/InvenTree/part/fixtures/part.yaml index 39cbf74ccb..a25a919520 100644 --- a/InvenTree/part/fixtures/part.yaml +++ b/InvenTree/part/fixtures/part.yaml @@ -100,7 +100,7 @@ salable: true purchaseable: false category: 7 - active: False + active: True IPN: BOB revision: A2 tree_id: 0 diff --git a/InvenTree/part/migrations/0055_auto_20201110_1001.py b/InvenTree/part/migrations/0055_auto_20201110_1001.py index 5c31eb3250..911766ad6d 100644 --- a/InvenTree/part/migrations/0055_auto_20201110_1001.py +++ b/InvenTree/part/migrations/0055_auto_20201110_1001.py @@ -8,6 +8,7 @@ import common.settings class Migration(migrations.Migration): dependencies = [ + ('common', '0004_inventreesetting'), ('part', '0054_auto_20201109_1246'), ] diff --git a/InvenTree/part/models.py b/InvenTree/part/models.py index 984016ede0..8b1edb7870 100644 --- a/InvenTree/part/models.py +++ b/InvenTree/part/models.py @@ -10,6 +10,7 @@ import re from datetime import datetime, timedelta from decimal import Decimal, InvalidOperation +from django.conf import settings from django.contrib.auth.models import User from django.core.exceptions import ValidationError from django.core.validators import MinLengthValidator, MinValueValidator @@ -51,8 +52,9 @@ from InvenTree.helpers import (decimal2money, decimal2string, normalize, from InvenTree.models import (DataImportMixin, InvenTreeAttachment, InvenTreeBarcodeMixin, InvenTreeNotesMixin, InvenTreeTree, MetadataMixin) -from InvenTree.status_codes import (BuildStatus, PurchaseOrderStatus, - SalesOrderStatus) +from InvenTree.status_codes import (BuildStatusGroups, PurchaseOrderStatus, + PurchaseOrderStatusGroups, + SalesOrderStatus, SalesOrderStatusGroups) from order import models as OrderModels from stock import models as StockModels @@ -453,17 +455,20 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) """ if self.pk: - previous = Part.objects.get(pk=self.pk) + try: + previous = Part.objects.get(pk=self.pk) - # Image has been changed - if previous.image is not None and self.image != previous.image: + # Image has been changed + if previous.image is not None and self.image != previous.image: - # Are there any (other) parts which reference the image? - n_refs = Part.objects.filter(image=previous.image).exclude(pk=self.pk).count() + # Are there any (other) parts which reference the image? + n_refs = Part.objects.filter(image=previous.image).exclude(pk=self.pk).count() - if n_refs == 0: - logger.info(f"Deleting unused image file '{previous.image}'") - previous.image.delete(save=False) + if n_refs == 0: + logger.info(f"Deleting unused image file '{previous.image}'") + previous.image.delete(save=False) + except Part.DoesNotExist: + pass self.full_clean() @@ -1070,7 +1075,7 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) # Now, get a list of outstanding build orders which require this part builds = BuildModels.Build.objects.filter( part__in=self.get_used_in(), - status__in=BuildStatus.ACTIVE_CODES + status__in=BuildStatusGroups.ACTIVE_CODES ) return builds @@ -1104,7 +1109,7 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) # Get a list of line items for open orders which match this part open_lines = OrderModels.SalesOrderLineItem.objects.filter( - order__status__in=SalesOrderStatus.OPEN, + order__status__in=SalesOrderStatusGroups.OPEN, part=self ) @@ -1117,7 +1122,7 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) """Return the quantity of this part required for active sales orders.""" # Get a list of line items for open orders which match this part open_lines = OrderModels.SalesOrderLineItem.objects.filter( - order__status__in=SalesOrderStatus.OPEN, + order__status__in=SalesOrderStatusGroups.OPEN, part=self ) @@ -1329,7 +1334,7 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) Builds marked as 'complete' or 'cancelled' are ignored """ - return self.builds.filter(status__in=BuildStatus.ACTIVE_CODES) + return self.builds.filter(status__in=BuildStatusGroups.ACTIVE_CODES) @property def quantity_being_built(self): @@ -1401,13 +1406,13 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) if pending is True: # Look only for 'open' orders which have not shipped queryset = queryset.filter( - line__order__status__in=SalesOrderStatus.OPEN, + line__order__status__in=SalesOrderStatusGroups.OPEN, shipment__shipment_date=None, ) elif pending is False: # Look only for 'closed' orders or orders which have shipped queryset = queryset.exclude( - line__order__status__in=SalesOrderStatus.OPEN, + line__order__status__in=SalesOrderStatusGroups.OPEN, shipment__shipment_date=None, ) @@ -1442,13 +1447,13 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) ], ) - def stock_entries(self, include_variants=True, in_stock=None): + def stock_entries(self, include_variants=True, in_stock=None, location=None): """Return all stock entries for this Part. - - If this is a template part, include variants underneath this. - - Note: To return all stock-entries for all part variants under this one, - we need to be creative with the filtering. + Arguments: + include_variants: If True, include stock entries for all part variants + in_stock: If True, filter by stock entries which are 'in stock' + location: If set, filter by stock entries in the specified location """ if include_variants: query = StockModels.StockItem.objects.filter(part__in=self.get_descendants(include_self=True)) @@ -1460,6 +1465,10 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) elif in_stock is False: query = query.exclude(StockModels.StockItem.IN_STOCK_FILTER) + if location: + locations = location.get_descendants(include_self=True) + query = query.filter(location__in=locations) + return query def get_stock_count(self, include_variants=True): @@ -1746,7 +1755,7 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) return pricing - def schedule_pricing_update(self, create: bool = False): + def schedule_pricing_update(self, create: bool = False, test: bool = False): """Helper function to schedule a pricing update. Importantly, catches any errors which may occur during deletion of related objects, @@ -1756,6 +1765,7 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) Arguments: create: Whether or not a new PartPricing object should be created if it does not already exist + test: Whether or not the pricing update is allowed during unit tests """ try: @@ -1767,7 +1777,7 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) pricing = self.pricing if create or pricing.pk: - pricing.schedule_for_update() + pricing.schedule_for_update(test=test) except IntegrityError: # If this part instance has been deleted, # some post-delete or post-save signals may still be fired @@ -2161,7 +2171,7 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) # Look at any incomplete line item for open orders lines = sp.purchase_order_line_items.filter( - order__status__in=PurchaseOrderStatus.OPEN, + order__status__in=PurchaseOrderStatusGroups.OPEN, quantity__gt=F('received'), ) @@ -2173,6 +2183,16 @@ class Part(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, MPTTModel) return quantity + def get_parameter(self, name): + """Return the parameter with the given name. + + If no matching parameter is found, return None. + """ + try: + return self.parameters.get(template__name=name) + except PartParameter.DoesNotExist: + return None + def get_parameters(self): """Return all parameters for this part, ordered by name.""" return self.parameters.order_by('template__name') @@ -2359,9 +2379,23 @@ class PartPricing(common.models.MetaMixin): return result - def schedule_for_update(self, counter: int = 0): + def schedule_for_update(self, counter: int = 0, test: bool = False): """Schedule this pricing to be updated""" + import InvenTree.ready + + # If we are running within CI, only schedule the update if the test flag is set + if settings.TESTING and not test: + return + + # If importing data, skip pricing update + if InvenTree.ready.isImportingData(): + return + + # If running data migrations, skip pricing update + if InvenTree.ready.isRunningMigrations(): + return + if not self.part or not self.part.pk or not Part.objects.filter(pk=self.part.pk).exists(): logger.warning("Referenced part instance does not exist - skipping pricing update.") return @@ -2414,6 +2448,14 @@ class PartPricing(common.models.MetaMixin): def update_pricing(self, counter: int = 0, cascade: bool = True): """Recalculate all cost data for the referenced Part instance""" + # If importing data, skip pricing update + if InvenTree.ready.isImportingData(): + return + + # If running data migrations, skip pricing update + if InvenTree.ready.isRunningMigrations(): + return + if self.pk is not None: try: self.refresh_from_db() @@ -2559,7 +2601,7 @@ class PartPricing(common.models.MetaMixin): # Find all line items for completed orders which reference this part line_items = OrderModels.PurchaseOrderLineItem.objects.filter( - order__status=PurchaseOrderStatus.COMPLETE, + order__status=PurchaseOrderStatus.COMPLETE.value, received__gt=0, part__part=self.part, ) @@ -3495,13 +3537,14 @@ class PartParameter(MetadataMixin, models.Model): super().clean() # Validate the parameter data against the template units - if self.template.units: - try: - InvenTree.conversion.convert_physical_value(self.data, self.template.units) - except ValidationError as e: - raise ValidationError({ - 'data': e.message - }) + if InvenTreeSetting.get_setting('PART_PARAMETER_ENFORCE_UNITS', True, cache=False, create=False): + if self.template.units: + try: + InvenTree.conversion.convert_physical_value(self.data, self.template.units) + except ValidationError as e: + raise ValidationError({ + 'data': e.message + }) # Validate the parameter data against the template choices if choices := self.template.get_choices(): @@ -3573,6 +3616,21 @@ class PartParameter(MetadataMixin, models.Model): blank=True, ) + @property + def units(self): + """Return the units associated with the template""" + return self.template.units + + @property + def name(self): + """Return the name of the template""" + return self.template.name + + @property + def description(self): + """Return the description of the template""" + return self.template.description + @classmethod def create(cls, part, template, data, save=False): """Custom save method for the PartParameter class""" @@ -3701,7 +3759,7 @@ class BomItem(DataImportMixin, MetadataMixin, models.Model): Includes: - The referenced sub_part - - Any directly specvified substitute parts + - Any directly specified substitute parts - If allow_variants is True, all variants of sub_part """ # Set of parts we will allow @@ -3722,11 +3780,6 @@ class BomItem(DataImportMixin, MetadataMixin, models.Model): valid_parts = [] for p in parts: - - # Inactive parts cannot be 'auto allocated' - if not p.active: - continue - # Trackable status must be the same as the sub_part if p.trackable != self.sub_part.trackable: continue @@ -3971,10 +4024,10 @@ class BomItem(DataImportMixin, MetadataMixin, models.Model): # Base quantity requirement base_quantity = self.quantity * build_quantity - # Overage requiremet - ovrg_quantity = self.get_overage_quantity(base_quantity) + # Overage requirement + overage_quantity = self.get_overage_quantity(base_quantity) - required = float(base_quantity) + float(ovrg_quantity) + required = float(base_quantity) + float(overage_quantity) return required diff --git a/InvenTree/part/serializers.py b/InvenTree/part/serializers.py index 97a1de33a0..dc49af7c89 100644 --- a/InvenTree/part/serializers.py +++ b/InvenTree/part/serializers.py @@ -23,9 +23,10 @@ import InvenTree.helpers import InvenTree.serializers import InvenTree.status import part.filters +import part.stocktake import part.tasks import stock.models -from InvenTree.status_codes import BuildStatus +from InvenTree.status_codes import BuildStatusGroups from InvenTree.tasks import offload_task from .models import (BomItem, BomItemSubstitute, Part, PartAttachment, @@ -242,7 +243,7 @@ class PartParameterSerializer(InvenTree.serializers.InvenTreeModelSerializer): Allows us to optionally include or exclude particular information """ - template_detail = kwargs.pop('template_detail', False) + template_detail = kwargs.pop('template_detail', True) super().__init__(*args, **kwargs) @@ -284,6 +285,17 @@ class PartBriefSerializer(InvenTree.serializers.InvenTreeModelSerializer): 'barcode_hash', ] + def __init__(self, *args, **kwargs): + """Custom initialization routine for the PartBrief serializer""" + + pricing = kwargs.pop('pricing', True) + + super().__init__(*args, **kwargs) + + if not pricing: + self.fields.pop('pricing_min') + self.fields.pop('pricing_max') + thumbnail = serializers.CharField(source='get_thumbnail_url', read_only=True) # Pricing fields @@ -291,6 +303,56 @@ class PartBriefSerializer(InvenTree.serializers.InvenTreeModelSerializer): pricing_max = InvenTree.serializers.InvenTreeMoneySerializer(source='pricing_data.overall_max', allow_null=True, read_only=True) +class PartSetCategorySerializer(serializers.Serializer): + """Serializer for changing PartCategory for multiple Part objects""" + + class Meta: + """Metaclass options""" + fields = [ + 'parts', + 'category', + ] + + parts = serializers.PrimaryKeyRelatedField( + queryset=Part.objects.all(), + many=True, required=True, allow_null=False, + label=_('Parts'), + ) + + def validate_parts(self, parts): + """Validate the selected parts""" + if len(parts) == 0: + raise serializers.ValidationError(_("No parts selected")) + + return parts + + category = serializers.PrimaryKeyRelatedField( + queryset=PartCategory.objects.filter(structural=False), + many=False, required=True, allow_null=False, + label=_('Category'), + help_text=_('Select category',) + ) + + @transaction.atomic + def save(self): + """Save the serializer to change the location of the selected parts""" + + data = self.validated_data + parts = data['parts'] + category = data['category'] + + parts_to_save = [] + + for p in parts: + if p.category == category: + continue + + p.category = category + parts_to_save.append(p) + + Part.objects.bulk_update(parts_to_save, ['category']) + + class DuplicatePartSerializer(serializers.Serializer): """Serializer for specifying options when duplicating a Part. @@ -410,8 +472,6 @@ class PartSerializer(InvenTree.serializers.RemoteImageMixin, InvenTree.serialize partial = True fields = [ 'active', - 'allocated_to_build_orders', - 'allocated_to_sales_orders', 'assembly', 'barcode_hash', 'category', @@ -423,9 +483,6 @@ class PartSerializer(InvenTree.serializers.RemoteImageMixin, InvenTree.serialize 'description', 'full_name', 'image', - 'in_stock', - 'ordering', - 'building', 'IPN', 'is_template', 'keywords', @@ -441,20 +498,28 @@ class PartSerializer(InvenTree.serializers.RemoteImageMixin, InvenTree.serialize 'revision', 'salable', 'starred', - 'stock_item_count', - 'suppliers', 'thumbnail', - 'total_in_stock', 'trackable', - 'unallocated_stock', 'units', 'variant_of', - 'variant_stock', 'virtual', 'pricing_min', 'pricing_max', 'responsible', + # Annotated fields + 'allocated_to_build_orders', + 'allocated_to_sales_orders', + 'building', + 'in_stock', + 'ordering', + 'required_for_build_orders', + 'stock_item_count', + 'suppliers', + 'total_in_stock', + 'unallocated_stock', + 'variant_stock', + # Fields only used for Part creation 'duplicate', 'initial_stock', @@ -479,6 +544,7 @@ class PartSerializer(InvenTree.serializers.RemoteImageMixin, InvenTree.serialize category_detail = kwargs.pop('category_detail', False) parameters = kwargs.pop('parameters', False) create = kwargs.pop('create', False) + pricing = kwargs.pop('pricing', True) super().__init__(*args, **kwargs) @@ -493,6 +559,10 @@ class PartSerializer(InvenTree.serializers.RemoteImageMixin, InvenTree.serialize for f in self.skip_create_fields()[1:]: self.fields.pop(f) + if not pricing: + self.fields.pop('pricing_min') + self.fields.pop('pricing_max') + def get_api_url(self): """Return the API url associated with this serializer""" return reverse_lazy('api-part-list') @@ -532,7 +602,7 @@ class PartSerializer(InvenTree.serializers.RemoteImageMixin, InvenTree.serialize # Filter to limit builds to "active" build_filter = Q( - status__in=BuildStatus.ACTIVE_CODES + status__in=BuildStatusGroups.ACTIVE_CODES ) # Annotate with the total 'building' quantity @@ -553,6 +623,9 @@ class PartSerializer(InvenTree.serializers.RemoteImageMixin, InvenTree.serialize ), ) + # TODO: This could do with some refactoring + # TODO: Note that BomItemSerializer and BuildLineSerializer have very similar code + queryset = queryset.annotate( ordering=part.filters.annotate_on_order_quantity(), in_stock=part.filters.annotate_total_stock(), @@ -578,6 +651,11 @@ class PartSerializer(InvenTree.serializers.RemoteImageMixin, InvenTree.serialize ) ) + # Annotate with the total 'required for builds' quantity + queryset = queryset.annotate( + required_for_build_orders=part.filters.annotate_build_order_requirements(), + ) + return queryset def get_starred(self, part): @@ -587,17 +665,18 @@ class PartSerializer(InvenTree.serializers.RemoteImageMixin, InvenTree.serialize # Extra detail for the category category_detail = CategorySerializer(source='category', many=False, read_only=True) - # Calculated fields + # Annotated fields allocated_to_build_orders = serializers.FloatField(read_only=True) allocated_to_sales_orders = serializers.FloatField(read_only=True) - unallocated_stock = serializers.FloatField(read_only=True) building = serializers.FloatField(read_only=True) in_stock = serializers.FloatField(read_only=True) - variant_stock = serializers.FloatField(read_only=True) - total_in_stock = serializers.FloatField(read_only=True) ordering = serializers.FloatField(read_only=True) + required_for_build_orders = serializers.IntegerField(read_only=True) stock_item_count = serializers.IntegerField(read_only=True) suppliers = serializers.IntegerField(read_only=True) + total_in_stock = serializers.FloatField(read_only=True) + unallocated_stock = serializers.FloatField(read_only=True) + variant_stock = serializers.FloatField(read_only=True) image = InvenTree.serializers.InvenTreeImageSerializerField(required=False, allow_null=True) thumbnail = serializers.CharField(source='get_thumbnail_url', read_only=True) @@ -854,6 +933,12 @@ class PartStocktakeReportGenerateSerializer(serializers.Serializer): label=_('Location'), help_text=_('Limit stocktake report to a particular stock location, and any child locations') ) + exclude_external = serializers.BooleanField( + default=True, + label=_('Exclude External Stock'), + help_text=_('Exclude stock items in external locations') + ) + generate_report = serializers.BooleanField( default=True, label=_('Generate Report'), @@ -887,12 +972,13 @@ class PartStocktakeReportGenerateSerializer(serializers.Serializer): # Generate a new report offload_task( - part.tasks.generate_stocktake_report, + part.stocktake.generate_stocktake_report, force_async=True, user=user, part=data.get('part', None), category=data.get('category', None), location=data.get('location', None), + exclude_external=data.get('exclude_external', True), generate_report=data.get('generate_report', True), update_parts=data.get('update_parts', True), ) @@ -1025,7 +1111,7 @@ class BomItemSubstituteSerializer(InvenTree.serializers.InvenTreeModelSerializer 'part_detail', ] - part_detail = PartBriefSerializer(source='part', read_only=True, many=False) + part_detail = PartBriefSerializer(source='part', read_only=True, many=False, pricing=False) class BomItemSerializer(InvenTree.serializers.InvenTreeModelSerializer): @@ -1070,15 +1156,20 @@ class BomItemSerializer(InvenTree.serializers.InvenTreeModelSerializer): """ part_detail = kwargs.pop('part_detail', False) sub_part_detail = kwargs.pop('sub_part_detail', False) + pricing = kwargs.pop('pricing', True) super(BomItemSerializer, self).__init__(*args, **kwargs) - if part_detail is not True: + if not part_detail: self.fields.pop('part_detail') - if sub_part_detail is not True: + if not sub_part_detail: self.fields.pop('sub_part_detail') + if not pricing: + self.fields.pop('pricing_min') + self.fields.pop('pricing_max') + quantity = InvenTree.serializers.InvenTreeDecimalField(required=True) def validate_quantity(self, quantity): diff --git a/InvenTree/part/stocktake.py b/InvenTree/part/stocktake.py new file mode 100644 index 0000000000..2e2f1adfe1 --- /dev/null +++ b/InvenTree/part/stocktake.py @@ -0,0 +1,313 @@ +"""Stocktake report functionality""" + +import io +import logging +import time +from datetime import datetime + +from django.contrib.auth.models import User +from django.core.files.base import ContentFile +from django.utils.translation import gettext_lazy as _ + +import tablib +from djmoney.contrib.exchange.models import convert_money +from djmoney.money import Money + +import common.models +import InvenTree.helpers +import part.models +import stock.models + +logger = logging.getLogger('inventree') + + +def perform_stocktake(target: part.models.Part, user: User, note: str = '', commit=True, **kwargs): + """Perform stocktake action on a single part. + + arguments: + target: A single Part model instance + commit: If True (default) save the result to the database + user: User who requested this stocktake + + kwargs: + exclude_external: If True, exclude stock items in external locations (default = False) + location: Optional StockLocation to filter results for generated report + + Returns: + PartStocktake: A new PartStocktake model instance (for the specified Part) + + Note that while we record a *total stocktake* for the Part instance which gets saved to the database, + the user may have requested a stocktake limited to a particular location. + + In this case, the stocktake *report* will be limited to the specified location. + """ + + # Determine which locations are "valid" for the generated report + location = kwargs.get('location', None) + locations = location.get_descendants(include_self=True) if location else [] + + # Grab all "available" stock items for the Part + # We do not include variant stock when performing a stocktake, + # otherwise the stocktake entries will be duplicated + stock_entries = target.stock_entries(in_stock=True, include_variants=False) + + exclude_external = kwargs.get('exclude_external', False) + + if exclude_external: + stock_entries = stock_entries.exclude(location__external=True) + + # Cache min/max pricing information for this Part + pricing = target.pricing + + if not pricing.is_valid: + # If pricing is not valid, let's update + logger.info(f"Pricing not valid for {target} - updating") + pricing.update_pricing(cascade=False) + pricing.refresh_from_db() + + base_currency = common.settings.currency_code_default() + + # Keep track of total quantity and cost for this part + total_quantity = 0 + total_cost_min = Money(0, base_currency) + total_cost_max = Money(0, base_currency) + + # Separately, keep track of stock quantity and value within the specified location + location_item_count = 0 + location_quantity = 0 + location_cost_min = Money(0, base_currency) + location_cost_max = Money(0, base_currency) + + for entry in stock_entries: + + entry_cost_min = None + entry_cost_max = None + + # Update price range values + if entry.purchase_price: + entry_cost_min = entry.purchase_price + entry_cost_max = entry.purchase_price + + else: + # If no purchase price is available, fall back to the part pricing data + entry_cost_min = pricing.overall_min or pricing.overall_max + entry_cost_max = pricing.overall_max or pricing.overall_min + + # Convert to base currency + try: + entry_cost_min = convert_money(entry_cost_min, base_currency) * entry.quantity + entry_cost_max = convert_money(entry_cost_max, base_currency) * entry.quantity + except Exception: + logger.warning(f"Could not convert {entry.purchase_price} to {base_currency}") + + entry_cost_min = Money(0, base_currency) + entry_cost_max = Money(0, base_currency) + + # Update total cost values + total_quantity += entry.quantity + total_cost_min += entry_cost_min + total_cost_max += entry_cost_max + + # Test if this stock item is within the specified location + if location and entry.location not in locations: + continue + + # Update location cost values + location_item_count += 1 + location_quantity += entry.quantity + location_cost_min += entry_cost_min + location_cost_max += entry_cost_max + + # Construct PartStocktake instance + # Note that we use the *total* values for the PartStocktake instance + instance = part.models.PartStocktake( + part=target, + item_count=stock_entries.count(), + quantity=total_quantity, + cost_min=total_cost_min, + cost_max=total_cost_max, + note=note, + user=user, + ) + + if commit: + instance.save() + + # Add location-specific data to the instance + instance.location_item_count = location_item_count + instance.location_quantity = location_quantity + instance.location_cost_min = location_cost_min + instance.location_cost_max = location_cost_max + + return instance + + +def generate_stocktake_report(**kwargs): + """Generated a new stocktake report. + + Note that this method should be called only by the background worker process! + + Unless otherwise specified, the stocktake report is generated for *all* Part instances. + Optional filters can by supplied via the kwargs + + kwargs: + user: The user who requested this stocktake (set to None for automated stocktake) + part: Optional Part instance to filter by (including variant parts) + category: Optional PartCategory to filter results + location: Optional StockLocation to filter results + exclude_external: If True, exclude stock items in external locations (default = False) + generate_report: If True, generate a stocktake report from the calculated data (default=True) + update_parts: If True, save stocktake information against each filtered Part (default = True) + """ + + # Determine if external locations should be excluded + exclude_external = kwargs.get( + 'exclude_exernal', + common.models.InvenTreeSetting.get_setting('STOCKTAKE_EXCLUDE_EXTERNAL', False) + ) + + parts = part.models.Part.objects.all() + user = kwargs.get('user', None) + + generate_report = kwargs.get('generate_report', True) + update_parts = kwargs.get('update_parts', True) + + # Filter by 'Part' instance + if p := kwargs.get('part', None): + variants = p.get_descendants(include_self=True) + parts = parts.filter( + pk__in=[v.pk for v in variants] + ) + + # Filter by 'Category' instance (cascading) + if category := kwargs.get('category', None): + categories = category.get_descendants(include_self=True) + parts = parts.filter(category__in=categories) + + # Filter by 'Location' instance (cascading) + # Stocktake report will be limited to parts which have stock items within this location + if location := kwargs.get('location', None): + # Extract flat list of all sublocations + locations = list(location.get_descendants(include_self=True)) + + # Items which exist within these locations + items = stock.models.StockItem.objects.filter(location__in=locations) + + if exclude_external: + items = items.exclude(location__external=True) + + # List of parts which exist within these locations + unique_parts = items.order_by().values('part').distinct() + + parts = parts.filter( + pk__in=[result['part'] for result in unique_parts] + ) + + # Exit if filters removed all parts + n_parts = parts.count() + + if n_parts == 0: + logger.info("No parts selected for stocktake report - exiting") + return + + logger.info(f"Generating new stocktake report for {n_parts} parts") + + base_currency = common.settings.currency_code_default() + + # Construct an initial dataset for the stocktake report + dataset = tablib.Dataset( + headers=[ + _('Part ID'), + _('Part Name'), + _('Part Description'), + _('Category ID'), + _('Category Name'), + _('Stock Items'), + _('Total Quantity'), + _('Total Cost Min') + f' ({base_currency})', + _('Total Cost Max') + f' ({base_currency})', + ] + ) + + parts = parts.prefetch_related('category', 'stock_items') + + # Simple profiling for this task + t_start = time.time() + + # Keep track of each individual "stocktake" we perform. + # They may be bulk-commited to the database afterwards + stocktake_instances = [] + + total_parts = 0 + + # Iterate through each Part which matches the filters above + for p in parts: + + # Create a new stocktake for this part (do not commit, this will take place later on) + stocktake = perform_stocktake( + p, user, commit=False, + exclude_external=exclude_external, + location=location, + ) + + if stocktake.quantity == 0: + # Skip rows with zero total quantity + continue + + total_parts += 1 + + stocktake_instances.append(stocktake) + + # Add a row to the dataset + dataset.append([ + p.pk, + p.full_name, + p.description, + p.category.pk if p.category else '', + p.category.name if p.category else '', + stocktake.location_item_count, + stocktake.location_quantity, + InvenTree.helpers.normalize(stocktake.location_cost_min.amount), + InvenTree.helpers.normalize(stocktake.location_cost_max.amount), + ]) + + # Save a new PartStocktakeReport instance + buffer = io.StringIO() + buffer.write(dataset.export('csv')) + + today = datetime.now().date().isoformat() + filename = f"InvenTree_Stocktake_{today}.csv" + report_file = ContentFile(buffer.getvalue(), name=filename) + + if generate_report: + report_instance = part.models.PartStocktakeReport.objects.create( + report=report_file, + part_count=total_parts, + user=user + ) + + # Notify the requesting user + if user: + + common.notifications.trigger_notification( + report_instance, + category='generate_stocktake_report', + context={ + 'name': _('Stocktake Report Available'), + 'message': _('A new stocktake report is available for download'), + }, + targets=[ + user, + ] + ) + + # If 'update_parts' is set, we save stocktake entries for each individual part + if update_parts: + # Use bulk_create for efficient insertion of stocktake + part.models.PartStocktake.objects.bulk_create( + stocktake_instances, + batch_size=500, + ) + + t_stocktake = time.time() - t_start + logger.info(f"Generated stocktake report for {total_parts} parts in {round(t_stocktake, 2)}s") diff --git a/InvenTree/part/tasks.py b/InvenTree/part/tasks.py index d04d1b7794..3b48f8e8f6 100644 --- a/InvenTree/part/tasks.py +++ b/InvenTree/part/tasks.py @@ -1,21 +1,14 @@ """Background task definitions for the 'part' app""" -import io + import logging import random import time from datetime import datetime, timedelta -from django.contrib.auth.models import User from django.core.exceptions import ValidationError -from django.core.files.base import ContentFile from django.utils.translation import gettext_lazy as _ -import tablib -from djmoney.contrib.exchange.exceptions import MissingRate -from djmoney.contrib.exchange.models import convert_money -from djmoney.money import Money - import common.models import common.notifications import common.settings @@ -24,8 +17,8 @@ import InvenTree.helpers import InvenTree.helpers_model import InvenTree.tasks import part.models -import stock.models -from InvenTree.tasks import ScheduledTask, scheduled_task +import part.stocktake +from InvenTree.tasks import ScheduledTask, check_daily_holdoff, scheduled_task logger = logging.getLogger("inventree") @@ -141,242 +134,6 @@ def check_missing_pricing(limit=250): pricing.schedule_for_update() -def perform_stocktake(target: part.models.Part, user: User, note: str = '', commit=True, **kwargs): - """Perform stocktake action on a single part. - - arguments: - target: A single Part model instance - commit: If True (default) save the result to the database - user: User who requested this stocktake - - Returns: - PartStocktake: A new PartStocktake model instance (for the specified Part) - """ - - # Grab all "available" stock items for the Part - # We do not include variant stock when performing a stocktake, - # otherwise the stocktake entries will be duplicated - stock_entries = target.stock_entries(in_stock=True, include_variants=False) - - # Cache min/max pricing information for this Part - pricing = target.pricing - - if not pricing.is_valid: - # If pricing is not valid, let's update - logger.info(f"Pricing not valid for {target} - updating") - pricing.update_pricing(cascade=False) - pricing.refresh_from_db() - - base_currency = common.settings.currency_code_default() - - total_quantity = 0 - total_cost_min = Money(0, base_currency) - total_cost_max = Money(0, base_currency) - - for entry in stock_entries: - - # Update total quantity value - total_quantity += entry.quantity - - has_pricing = False - - # Update price range values - if entry.purchase_price: - # If purchase price is available, use that - try: - pp = convert_money(entry.purchase_price, base_currency) * entry.quantity - total_cost_min += pp - total_cost_max += pp - has_pricing = True - except MissingRate: - logger.warning(f"MissingRate exception occurred converting {entry.purchase_price} to {base_currency}") - - if not has_pricing: - # Fall back to the part pricing data - p_min = pricing.overall_min or pricing.overall_max - p_max = pricing.overall_max or pricing.overall_min - - if p_min or p_max: - try: - total_cost_min += convert_money(p_min, base_currency) * entry.quantity - total_cost_max += convert_money(p_max, base_currency) * entry.quantity - except MissingRate: - logger.warning(f"MissingRate exception occurred converting {p_min}:{p_max} to {base_currency}") - - # Construct PartStocktake instance - instance = part.models.PartStocktake( - part=target, - item_count=stock_entries.count(), - quantity=total_quantity, - cost_min=total_cost_min, - cost_max=total_cost_max, - note=note, - user=user, - ) - - if commit: - instance.save() - - return instance - - -def generate_stocktake_report(**kwargs): - """Generated a new stocktake report. - - Note that this method should be called only by the background worker process! - - Unless otherwise specified, the stocktake report is generated for *all* Part instances. - Optional filters can by supplied via the kwargs - - kwargs: - user: The user who requested this stocktake (set to None for automated stocktake) - part: Optional Part instance to filter by (including variant parts) - category: Optional PartCategory to filter results - location: Optional StockLocation to filter results - generate_report: If True, generate a stocktake report from the calculated data (default=True) - update_parts: If True, save stocktake information against each filtered Part (default = True) - """ - - parts = part.models.Part.objects.all() - user = kwargs.get('user', None) - - generate_report = kwargs.get('generate_report', True) - update_parts = kwargs.get('update_parts', True) - - # Filter by 'Part' instance - if p := kwargs.get('part', None): - variants = p.get_descendants(include_self=True) - parts = parts.filter( - pk__in=[v.pk for v in variants] - ) - - # Filter by 'Category' instance (cascading) - if category := kwargs.get('category', None): - categories = category.get_descendants(include_self=True) - parts = parts.filter(category__in=categories) - - # Filter by 'Location' instance (cascading) - # Stocktake report will be limited to parts which have stock items within this location - if location := kwargs.get('location', None): - # Extract flat list of all sublocations - locations = list(location.get_descendants(include_self=True)) - - # Items which exist within these locations - items = stock.models.StockItem.objects.filter(location__in=locations) - - # List of parts which exist within these locations - unique_parts = items.order_by().values('part').distinct() - - parts = parts.filter( - pk__in=[result['part'] for result in unique_parts] - ) - - # Exit if filters removed all parts - n_parts = parts.count() - - if n_parts == 0: - logger.info("No parts selected for stocktake report - exiting") - return - - logger.info(f"Generating new stocktake report for {n_parts} parts") - - base_currency = common.settings.currency_code_default() - - # Construct an initial dataset for the stocktake report - dataset = tablib.Dataset( - headers=[ - _('Part ID'), - _('Part Name'), - _('Part Description'), - _('Category ID'), - _('Category Name'), - _('Stock Items'), - _('Total Quantity'), - _('Total Cost Min') + f' ({base_currency})', - _('Total Cost Max') + f' ({base_currency})', - ] - ) - - parts = parts.prefetch_related('category', 'stock_items') - - # Simple profiling for this task - t_start = time.time() - - # Keep track of each individual "stocktake" we perform. - # They may be bulk-commited to the database afterwards - stocktake_instances = [] - - total_parts = 0 - - # Iterate through each Part which matches the filters above - for p in parts: - - # Create a new stocktake for this part (do not commit, this will take place later on) - stocktake = perform_stocktake(p, user, commit=False) - - if stocktake.quantity == 0: - # Skip rows with zero total quantity - continue - - total_parts += 1 - - stocktake_instances.append(stocktake) - - # Add a row to the dataset - dataset.append([ - p.pk, - p.full_name, - p.description, - p.category.pk if p.category else '', - p.category.name if p.category else '', - stocktake.item_count, - stocktake.quantity, - InvenTree.helpers.normalize(stocktake.cost_min.amount), - InvenTree.helpers.normalize(stocktake.cost_max.amount), - ]) - - # Save a new PartStocktakeReport instance - buffer = io.StringIO() - buffer.write(dataset.export('csv')) - - today = datetime.now().date().isoformat() - filename = f"InvenTree_Stocktake_{today}.csv" - report_file = ContentFile(buffer.getvalue(), name=filename) - - if generate_report: - report_instance = part.models.PartStocktakeReport.objects.create( - report=report_file, - part_count=total_parts, - user=user - ) - - # Notify the requesting user - if user: - - common.notifications.trigger_notification( - report_instance, - category='generate_stocktake_report', - context={ - 'name': _('Stocktake Report Available'), - 'message': _('A new stocktake report is available for download'), - }, - targets=[ - user, - ] - ) - - # If 'update_parts' is set, we save stocktake entries for each individual part - if update_parts: - # Use bulk_create for efficient insertion of stocktake - part.models.PartStocktake.objects.bulk_create( - stocktake_instances, - batch_size=500, - ) - - t_stocktake = time.time() - t_start - logger.info(f"Generated stocktake report for {total_parts} parts in {round(t_stocktake, 2)}s") - - @scheduled_task(ScheduledTask.DAILY) def scheduled_stocktake_reports(): """Scheduled tasks for creating automated stocktake reports. @@ -410,27 +167,15 @@ def scheduled_stocktake_reports(): logger.info("Stocktake auto reports are disabled, exiting") return - # How long ago was last full stocktake report generated? - last_report = common.models.InvenTreeSetting.get_setting('STOCKTAKE_RECENT_REPORT', '', cache=False) - - try: - last_report = datetime.fromisoformat(last_report) - except ValueError: - last_report = None - - if last_report: - # Do not attempt if the last report was within the minimum reporting period - threshold = datetime.now() - timedelta(days=report_n_days) - - if last_report > threshold: - logger.info("Automatic stocktake report was recently generated - exiting") - return + if not check_daily_holdoff('_STOCKTAKE_RECENT_REPORT', report_n_days): + logger.info("Stocktake report was recently generated - exiting") + return # Let's start a new stocktake report for all parts - generate_stocktake_report(update_parts=True) + part.stocktake.generate_stocktake_report(update_parts=True) # Record the date of this report - common.models.InvenTreeSetting.set_setting('STOCKTAKE_RECENT_REPORT', datetime.now().isoformat(), None) + common.models.InvenTreeSetting.set_setting('_STOCKTAKE_RECENT_REPORT', datetime.now().isoformat(), None) def rebuild_parameters(template_id): @@ -459,7 +204,8 @@ def rebuild_parameters(template_id): parameter.save() n += 1 - logger.info(f"Rebuilt {n} parameters for template '{template.name}'") + if n > 0: + logger.info(f"Rebuilt {n} parameters for template '{template.name}'") def rebuild_supplier_parts(part_id): @@ -486,4 +232,5 @@ def rebuild_supplier_parts(part_id): except ValidationError: pass - logger.info(f"Rebuilt {n} supplier parts for part '{prt.name}'") + if n > 0: + logger.info(f"Rebuilt {n} supplier parts for part '{prt.name}'") diff --git a/InvenTree/part/templates/part/bom.html b/InvenTree/part/templates/part/bom.html index f9bcfc483a..e917cbd288 100644 --- a/InvenTree/part/templates/part/bom.html +++ b/InvenTree/part/templates/part/bom.html @@ -23,20 +23,7 @@ {% endif %}
-
- {% if roles.part.change %} - - - {% endif %} - {% include "filter_list.html" with id="bom" %} -
+ {% include "filter_list.html" with id="bom" %}
diff --git a/InvenTree/part/templates/part/category.html b/InvenTree/part/templates/part/category.html index c560eed392..1faac776f1 100644 --- a/InvenTree/part/templates/part/category.html +++ b/InvenTree/part/templates/part/category.html @@ -169,24 +169,7 @@
-
-
- - -
- {% include "filter_list.html" with id="parts" %} -
+ {% include "filter_list.html" with id="parts" %}
@@ -209,9 +192,7 @@
-
- {% include "filter_list.html" with id="parameters" %} -
+ {% include "filter_list.html" with id="parameters" %}
@@ -235,9 +216,7 @@
-
- {% include "filter_list.html" with id="category" %} -
+ {% include "filter_list.html" with id="category" %}
diff --git a/InvenTree/part/templates/part/detail.html b/InvenTree/part/templates/part/detail.html index 447c83ee01..32bd4ac3a8 100644 --- a/InvenTree/part/templates/part/detail.html +++ b/InvenTree/part/templates/part/detail.html @@ -93,9 +93,7 @@
-
- {% include "filter_list.html" with id="parttests" %} -
+ {% include "filter_list.html" with id="parttests" %}
@@ -116,9 +114,7 @@
-
- {% include "filter_list.html" with id="partpurchaseorders" %} -
+ {% include "filter_list.html" with id="partpurchaseorders" %}
@@ -132,9 +128,7 @@
-
- {% include "filter_list.html" with id="salesorder" %} -
+ {% include "filter_list.html" with id="salesorder" %}
@@ -145,11 +139,8 @@

{% trans "Sales Order Allocations" %}

-
-
- {% include "filter_list.html" with id="salesorderallocation" %} -
+ {% include "filter_list.html" with id="salesorderallocation" %}
@@ -190,11 +181,7 @@
-
-
- {% include "filter_list.html" with id="variants" %} -
-
+ {% include "filter_list.html" with id="variants" %}
@@ -218,11 +205,7 @@
-
-
- {% include "filter_list.html" with id="parameters" %} -
-
+ {% include "filter_list.html" with id="parameters" %}
@@ -259,9 +242,7 @@
@@ -317,9 +298,7 @@
-
- {% include "filter_list.html" with id="usedin" %} -
+ {% include "filter_list.html" with id="usedin" %}
@@ -346,9 +325,7 @@
-
- {% include "filter_list.html" with id="build" %} -
+ {% include "filter_list.html" with id="build" %}
@@ -362,9 +339,7 @@
-
- {% include "filter_list.html" with id="buildorderallocation" %} -
+ {% include "filter_list.html" with id="buildorderallocation" %}
@@ -385,17 +360,7 @@
-
-
- - -
- {% include "filter_list.html" with id="supplier-part" %} -
+ {% include "filter_list.html" with id="supplier-part" %}
@@ -416,15 +381,7 @@
-
-
- - - {% include "filter_list.html" with id="manufacturer-part" %} -
-
+ {% include "filter_list.html" with id="manufacturer-part" %}
@@ -526,8 +483,6 @@ } ); - linkButtonsToSelection($("#supplier-part-table"), ['#supplier-part-options']); - loadManufacturerPartTable( '#manufacturer-part-table', "{% url 'api-manufacturer-part-list' %}", @@ -540,8 +495,6 @@ } ); - linkButtonsToSelection($("#manufacturer-part-table"), ['#manufacturer-part-options']); - $("#manufacturer-part-delete").click(function() { var selectionss = getTableData('#manufacturer-part-table'); @@ -625,12 +578,6 @@ sub_part_detail: true, }); - linkButtonsToSelection($("#bom-table"), - [ - "#bom-item-delete", - ] - ); - $('#bom-item-delete').click(function() { // Get a list of the selected BOM items @@ -822,9 +769,6 @@ part_detail: true, supplier_part_detail: true, }, - buttons: [ - '#stock-options', - ], }); $('#item-create').click(function () { diff --git a/InvenTree/part/templatetags/inventree_extras.py b/InvenTree/part/templatetags/inventree_extras.py index a2d0e42648..8c2fe6f084 100644 --- a/InvenTree/part/templatetags/inventree_extras.py +++ b/InvenTree/part/templatetags/inventree_extras.py @@ -287,6 +287,30 @@ def inventree_commit_date(*args, **kwargs): return version.inventreeCommitDate() +@register.simple_tag() +def inventree_installer(*args, **kwargs): + """Return InvenTree package installer string.""" + return version.inventreeInstaller() + + +@register.simple_tag() +def inventree_branch(*args, **kwargs): + """Return InvenTree git branch string.""" + return version.inventreeBranch() + + +@register.simple_tag() +def inventree_target(*args, **kwargs): + """Return InvenTree target string.""" + return version.inventreeTarget() + + +@register.simple_tag() +def inventree_platform(*args, **kwargs): + """Return InvenTree platform string.""" + return version.inventreePlatform() + + @register.simple_tag() def inventree_github_url(*args, **kwargs): """Return URL for InvenTree github site.""" diff --git a/InvenTree/part/templatetags/status_codes.py b/InvenTree/part/templatetags/status_codes.py deleted file mode 100644 index 9eef869678..0000000000 --- a/InvenTree/part/templatetags/status_codes.py +++ /dev/null @@ -1,46 +0,0 @@ -"""Provide templates for the various model status codes.""" - -from django import template -from django.utils.safestring import mark_safe - -from InvenTree.status_codes import (BuildStatus, PurchaseOrderStatus, - ReturnOrderStatus, SalesOrderStatus, - StockStatus) - -register = template.Library() - - -@register.simple_tag -def purchase_order_status_label(key, *args, **kwargs): - """Render a PurchaseOrder status label.""" - return mark_safe(PurchaseOrderStatus.render(key, large=kwargs.get('large', False))) - - -@register.simple_tag -def sales_order_status_label(key, *args, **kwargs): - """Render a SalesOrder status label.""" - return mark_safe(SalesOrderStatus.render(key, large=kwargs.get('large', False))) - - -@register.simple_tag -def return_order_status_label(key, *args, **kwargs): - """Render a ReturnOrder status label""" - return mark_safe(ReturnOrderStatus.render(key, large=kwargs.get('large', False))) - - -@register.simple_tag -def stock_status_label(key, *args, **kwargs): - """Render a StockItem status label.""" - return mark_safe(StockStatus.render(key, large=kwargs.get('large', False))) - - -@register.simple_tag -def stock_status_text(key, *args, **kwargs): - """Render the text value of a StockItem status value""" - return mark_safe(StockStatus.text(key)) - - -@register.simple_tag -def build_status_label(key, *args, **kwargs): - """Render a Build status label.""" - return mark_safe(BuildStatus.render(key, large=kwargs.get('large', False))) diff --git a/InvenTree/part/test_api.py b/InvenTree/part/test_api.py index 7944961e18..84af79e941 100644 --- a/InvenTree/part/test_api.py +++ b/InvenTree/part/test_api.py @@ -18,7 +18,7 @@ import company.models import order.models from common.models import InvenTreeSetting from company.models import Company, SupplierPart -from InvenTree.status_codes import (BuildStatus, PurchaseOrderStatus, +from InvenTree.status_codes import (BuildStatus, PurchaseOrderStatusGroups, StockStatus) from InvenTree.unit_test import InvenTreeAPITestCase from part.models import (BomItem, BomItemSubstitute, Part, PartCategory, @@ -536,6 +536,7 @@ class PartAPITestBase(InvenTreeAPITestCase): 'part', 'location', 'bom', + 'build', 'company', 'test_templates', 'manufacturer_part', @@ -1628,7 +1629,7 @@ class PartDetailTests(PartAPITestBase): # How many parts are 'on order' for this part? lines = order.models.PurchaseOrderLineItem.objects.filter( part__part__pk=1, - order__status__in=PurchaseOrderStatus.OPEN, + order__status__in=PurchaseOrderStatusGroups.OPEN, ) on_order = 0 @@ -1857,7 +1858,7 @@ class PartAPIAggregationTest(InvenTreeAPITestCase): StockItem.objects.create(part=cls.part, quantity=300) # Now create another 400 units which are LOST - StockItem.objects.create(part=cls.part, quantity=400, status=StockStatus.LOST) + StockItem.objects.create(part=cls.part, quantity=400, status=StockStatus.LOST.value) def get_part_data(self): """Helper function for retrieving part data""" @@ -1992,15 +1993,19 @@ class PartAPIAggregationTest(InvenTreeAPITestCase): quantity=10, title='Making some assemblies', reference='BO-9999', - status=BuildStatus.PRODUCTION, + status=BuildStatus.PRODUCTION.value, ) bom_item = BomItem.objects.get(pk=6) + line = build.models.BuildLine.objects.get( + bom_item=bom_item, + build=bo, + ) + # Allocate multiple stock items against this build order build.models.BuildItem.objects.create( - build=bo, - bom_item=bom_item, + build_line=line, stock_item=StockItem.objects.get(pk=1000), quantity=10, ) @@ -2021,8 +2026,7 @@ class PartAPIAggregationTest(InvenTreeAPITestCase): # Allocate further stock against the build build.models.BuildItem.objects.create( - build=bo, - bom_item=bom_item, + build_line=line, stock_item=StockItem.objects.get(pk=1001), quantity=10, ) @@ -2133,7 +2137,7 @@ class PartAPIAggregationTest(InvenTreeAPITestCase): for line_item in sp.purchase_order_line_items.all(): po = line_item.order - if po.status in PurchaseOrderStatus.OPEN: + if po.status in PurchaseOrderStatusGroups.OPEN: remaining = line_item.quantity - line_item.received if remaining > 0: @@ -2937,7 +2941,7 @@ class PartStocktakeTest(InvenTreeAPITestCase): def test_report_list(self): """Test for PartStocktakeReport list endpoint""" - from part.tasks import generate_stocktake_report + from part.stocktake import generate_stocktake_report # Initially, no stocktake records are available self.assertEqual(PartStocktake.objects.count(), 0) @@ -3053,3 +3057,22 @@ class PartMetadataAPITest(InvenTreeAPITestCase): 'api-bom-item-metadata': BomItem, }.items(): self.metatester(apikey, model) + + +class PartSchedulingTest(PartAPITestBase): + """Unit tests for the 'part scheduling' API endpoint""" + + def test_get_schedule(self): + """Test that the scheduling endpoint returns OK""" + + part_ids = [ + 1, 3, 100, 101, + ] + + for pk in part_ids: + url = reverse('api-part-scheduling', kwargs={'pk': pk}) + data = self.get(url, expected_code=200).data + + for entry in data: + for k in ['date', 'quantity', 'label']: + self.assertIn(k, entry) diff --git a/InvenTree/part/test_category.py b/InvenTree/part/test_category.py index 111f53125a..2d404b5ef9 100644 --- a/InvenTree/part/test_category.py +++ b/InvenTree/part/test_category.py @@ -144,7 +144,15 @@ class CategoryTest(TestCase): self.assertEqual(self.electronics.partcount(), 3) self.assertEqual(self.mechanical.partcount(), 9) + self.assertEqual(self.mechanical.partcount(active=True), 9) + + # Mark one part as inactive and retry + part = Part.objects.get(pk=1) + part.active = False + part.save() + self.assertEqual(self.mechanical.partcount(active=True), 8) + self.assertEqual(self.mechanical.partcount(False), 7) self.assertEqual(self.electronics.item_count, self.electronics.partcount()) diff --git a/InvenTree/part/test_param.py b/InvenTree/part/test_param.py index 91537cbfa3..8ae2ca5d7c 100644 --- a/InvenTree/part/test_param.py +++ b/InvenTree/part/test_param.py @@ -4,6 +4,7 @@ import django.core.exceptions as django_exceptions from django.test import TestCase, TransactionTestCase from django.urls import reverse +from common.models import InvenTreeSetting from InvenTree.unit_test import InvenTreeAPITestCase from .models import (Part, PartCategory, PartCategoryParameterTemplate, @@ -63,6 +64,20 @@ class TestParams(TestCase): self.assertEqual(len(p.metadata.keys()), 4) + def test_get_parameter(self): + """Test the Part.get_parameter method""" + + prt = Part.objects.get(pk=3) + + # Check that we can get a parameter by name + for name in ['Length', 'Width', 'Thickness']: + param = prt.get_parameter(name) + self.assertEqual(param.template.name, name) + + # Check that an incorrect name returns None + param = prt.get_parameter('Not a parameter') + self.assertIsNone(param) + class TestCategoryTemplates(TransactionTestCase): """Test class for PartCategoryParameterTemplate model""" @@ -154,8 +169,20 @@ class ParameterTests(TestCase): param = PartParameter(part=prt, template=template, data=value) param.full_clean() - # Test that invalid parameters fail - for value in ['3 Amps', '-3 zogs', '3.14F']: + bad_values = ['3 Amps', '-3 zogs', '3.14F'] + + # Disable enforcing of part parameter units + InvenTreeSetting.set_setting('PART_PARAMETER_ENFORCE_UNITS', False, change_user=None) + + # Invalid units also pass, but will be converted to the template units + for value in bad_values: + param = PartParameter(part=prt, template=template, data=value) + param.full_clean() + + # Enable enforcing of part parameter units + InvenTreeSetting.set_setting('PART_PARAMETER_ENFORCE_UNITS', True, change_user=None) + + for value in bad_values: param = PartParameter(part=prt, template=template, data=value) with self.assertRaises(django_exceptions.ValidationError): param.full_clean() diff --git a/InvenTree/part/test_pricing.py b/InvenTree/part/test_pricing.py index 9c62cba977..e0f975dfb3 100644 --- a/InvenTree/part/test_pricing.py +++ b/InvenTree/part/test_pricing.py @@ -345,7 +345,7 @@ class PartPricingTests(InvenTreeTestCase): self.assertIsNone(pricing.purchase_cost_min) self.assertIsNone(pricing.purchase_cost_max) - po.status = PurchaseOrderStatus.COMPLETE + po.status = PurchaseOrderStatus.COMPLETE.value po.save() pricing.update_purchase_cost() @@ -444,11 +444,6 @@ class PartPricingTests(InvenTreeTestCase): # Check that PartPricing objects have been created self.assertEqual(part.models.PartPricing.objects.count(), 101) - # Check that background-tasks have been created - from django_q.models import OrmQ - - self.assertEqual(OrmQ.objects.count(), 101) - def test_delete_part_with_stock_items(self): """Test deleting a part instance with stock items. @@ -473,6 +468,9 @@ class PartPricingTests(InvenTreeTestCase): purchase_price=Money(10, 'USD') ) + # Manually schedule a pricing update (does not happen automatically in testing) + p.schedule_pricing_update(create=True, test=True) + # Check that a PartPricing object exists self.assertTrue(part.models.PartPricing.objects.filter(part=p).exists()) @@ -483,5 +481,5 @@ class PartPricingTests(InvenTreeTestCase): self.assertFalse(part.models.PartPricing.objects.filter(part=p).exists()) # Try to update pricing (should fail gracefully as the Part has been deleted) - p.schedule_pricing_update(create=False) + p.schedule_pricing_update(create=False, test=True) self.assertFalse(part.models.PartPricing.objects.filter(part=p).exists()) diff --git a/InvenTree/plugin/admin.py b/InvenTree/plugin/admin.py index 859f78ea89..39f0dfbb58 100644 --- a/InvenTree/plugin/admin.py +++ b/InvenTree/plugin/admin.py @@ -56,6 +56,7 @@ class PluginConfigAdmin(admin.ModelAdmin): list_filter = ['active'] actions = [plugin_activate, plugin_deactivate, ] inlines = [PluginSettingInline, ] + exclude = ['metadata', ] class NotificationUserSettingAdmin(admin.ModelAdmin): diff --git a/InvenTree/plugin/api.py b/InvenTree/plugin/api.py index 5568e5595b..1752704fd9 100644 --- a/InvenTree/plugin/api.py +++ b/InvenTree/plugin/api.py @@ -9,6 +9,7 @@ from rest_framework.response import Response import plugin.serializers as PluginSerializers from common.api import GlobalSettingsPermissions +from InvenTree.api import MetadataView from InvenTree.filters import SEARCH_ORDER_FILTER from InvenTree.mixins import (CreateAPI, ListAPI, RetrieveUpdateAPI, RetrieveUpdateDestroyAPI, UpdateAPI) @@ -266,6 +267,9 @@ plugin_api_urls = [ re_path(r'^.*$', PluginDetail.as_view(), name='api-plugin-detail'), ])), + # Metadata + re_path('^metadata/', MetadataView.as_view(), {'model': PluginConfig}, name='api-plugin-metadata'), + # Plugin management re_path(r'^install/', PluginInstall.as_view(), name='api-plugin-install'), re_path(r'^activate/', PluginActivate.as_view(), name='api-plugin-activate'), diff --git a/InvenTree/plugin/base/event/events.py b/InvenTree/plugin/base/event/events.py index 5073afbceb..96a91fcec0 100644 --- a/InvenTree/plugin/base/event/events.py +++ b/InvenTree/plugin/base/event/events.py @@ -20,17 +20,27 @@ def trigger_event(event, *args, **kwargs): This event will be stored in the database, and the worker will respond to it later on. """ + from common.models import InvenTreeSetting + if not settings.PLUGINS_ENABLED: # Do nothing if plugins are not enabled return # pragma: no cover + if not InvenTreeSetting.get_setting('ENABLE_PLUGINS_EVENTS', False): + # Do nothing if plugin events are not enabled + return + # Make sure the database can be accessed and is not being tested rn - if not canAppAccessDatabase() and not settings.PLUGIN_TESTING_EVENTS: + if not canAppAccessDatabase(allow_shell=True) and not settings.PLUGIN_TESTING_EVENTS: logger.debug(f"Ignoring triggered event '{event}' - database not ready") return logger.debug(f"Event triggered: '{event}'") + # By default, force the event to be processed asynchronously + if 'force_async' not in kwargs and not settings.PLUGIN_TESTING_EVENTS: + kwargs['force_async'] = True + offload_task( register_event, event, @@ -63,6 +73,11 @@ def register_event(event, *args, **kwargs): logger.debug(f"Registering callback for plugin '{slug}'") + # This task *must* be processed by the background worker, + # unless we are running CI tests + if 'force_async' not in kwargs and not settings.PLUGIN_TESTING_EVENTS: + kwargs['force_async'] = True + # Offload a separate task for each plugin offload_task( process_event, @@ -95,10 +110,14 @@ def allow_table_event(table_name): We *do not* want events to be fired for some tables! """ + # Prevent table events during the data import process if isImportingData(): - # Prevent table events during the data import process return False # pragma: no cover + # Prevent table events when in testing mode (saves a lot of time) + if settings.TESTING: + return False + table_name = table_name.lower().strip() # Ignore any tables which start with these prefixes diff --git a/InvenTree/plugin/base/integration/SettingsMixin.py b/InvenTree/plugin/base/integration/SettingsMixin.py index 5f14dc063d..42427e7337 100644 --- a/InvenTree/plugin/base/integration/SettingsMixin.py +++ b/InvenTree/plugin/base/integration/SettingsMixin.py @@ -84,3 +84,16 @@ class SettingsMixin: return PluginSetting.set_setting(key, value, user, plugin=plugin) + + def check_settings(self): + """Check if all required settings for this machine are defined. + + Warning: This method cannot be used in the __init__ function of the plugin + + Returns: + is_valid: Are all required settings defined + missing_settings: List of all settings that are missing (empty if is_valid is 'True') + """ + from plugin.models import PluginSetting + + return PluginSetting.check_all_settings(settings_definition=self.settings, plugin=self.plugin_config()) diff --git a/InvenTree/plugin/base/integration/mixins.py b/InvenTree/plugin/base/integration/mixins.py index e4978ab6a2..c969d65f61 100644 --- a/InvenTree/plugin/base/integration/mixins.py +++ b/InvenTree/plugin/base/integration/mixins.py @@ -467,7 +467,9 @@ class PanelMixin: # Construct an updated context object for template rendering ctx = self.get_panel_context(view, request, context) - for panel in self.get_custom_panels(view, request): + custom_panels = self.get_custom_panels(view, request) or [] + + for panel in custom_panels: content_template = panel.get('content_template', None) javascript_template = panel.get('javascript_template', None) diff --git a/InvenTree/plugin/helpers.py b/InvenTree/plugin/helpers.py index 5277fc78de..40b97aab9a 100644 --- a/InvenTree/plugin/helpers.py +++ b/InvenTree/plugin/helpers.py @@ -1,8 +1,8 @@ """Helpers for plugin app.""" -import datetime import inspect import logging +import os import pathlib import pkgutil import sysconfig @@ -14,8 +14,6 @@ from django.conf import settings from django.core.exceptions import AppRegistryNotReady from django.db.utils import IntegrityError -from dulwich.repo import NotGitRepository, Repo - logger = logging.getLogger('inventree') @@ -112,58 +110,40 @@ def get_entrypoints(): def get_git_log(path): """Get dict with info of the last commit to file named in path.""" - output = None - path = path.replace(str(settings.BASE_DIR.parent), '')[1:] + import datetime + + from dulwich.repo import NotGitRepository, Repo + + from InvenTree.ready import isInTestMode + + output = None + path = os.path.abspath(path) + + if os.path.exists(path) and os.path.isfile(path): + path = os.path.dirname(path) + + # only do this if we are not in test mode + if not isInTestMode(): # pragma: no cover - try: - walker = Repo.discover(path).get_walker(paths=[path.encode()], max_entries=1) try: - commit = next(iter(walker)).commit - except StopIteration: - pass - else: + repo = Repo(path) + head = repo.head() + commit = repo[head] + output = [ - commit.sha().hexdigest(), + head.decode(), commit.author.decode().split('<')[0][:-1], commit.author.decode().split('<')[1][:-1], datetime.datetime.fromtimestamp(commit.author_time, ).isoformat(), commit.message.decode().split('\n')[0], - 'E', - None ] - except NotGitRepository: - pass + except NotGitRepository: + pass if not output: - output = 7 * [''] # pragma: no cover + output = 5 * [''] # pragma: no cover - return {'hash': output[0], 'author': output[1], 'mail': output[2], 'date': output[3], 'message': output[4], 'verified': output[5], 'key': output[6]} - - -class GitStatus: - """Class for resolving git gpg singing state.""" - - class Definition: - """Definition of a git gpg sing state.""" - - key: str = 'N' - status: int = 2 - msg: str = '' - - def __init__(self, key: str = 'N', status: int = 2, msg: str = '') -> None: - """Define a git Status -> needed for lookup.""" - self.key = key - self.status = status - self.msg = msg - - N = Definition(key='N', status=2, msg='no signature',) - G = Definition(key='G', status=0, msg='valid signature',) - B = Definition(key='B', status=2, msg='bad signature',) - U = Definition(key='U', status=1, msg='good signature, unknown validity',) - X = Definition(key='X', status=1, msg='good signature, expired',) - Y = Definition(key='Y', status=1, msg='good signature, expired key',) - R = Definition(key='R', status=2, msg='good signature, revoked key',) - E = Definition(key='E', status=1, msg='cannot be checked',) + return {'hash': output[0], 'author': output[1], 'mail': output[2], 'date': output[3], 'message': output[4]} # endregion diff --git a/InvenTree/plugin/migrations/0006_pluginconfig_metadata.py b/InvenTree/plugin/migrations/0006_pluginconfig_metadata.py new file mode 100644 index 0000000000..f874365070 --- /dev/null +++ b/InvenTree/plugin/migrations/0006_pluginconfig_metadata.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.19 on 2023-06-11 16:04 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('plugin', '0005_notificationusersetting'), + ] + + operations = [ + migrations.AddField( + model_name='pluginconfig', + name='metadata', + field=models.JSONField(blank=True, help_text='JSON metadata field, for use by external plugins', null=True, verbose_name='Plugin Metadata'), + ), + ] diff --git a/InvenTree/plugin/models.py b/InvenTree/plugin/models.py index 4f7b1eb443..8877997f9a 100644 --- a/InvenTree/plugin/models.py +++ b/InvenTree/plugin/models.py @@ -10,10 +10,11 @@ from django.db import models from django.utils.translation import gettext_lazy as _ import common.models +import InvenTree.models from plugin import InvenTreePlugin, registry -class PluginConfig(models.Model): +class PluginConfig(InvenTree.models.MetadataMixin, models.Model): """A PluginConfig object holds settings for plugins. Attributes: diff --git a/InvenTree/plugin/plugin.py b/InvenTree/plugin/plugin.py index 8d19c1c80e..7288cee72c 100644 --- a/InvenTree/plugin/plugin.py +++ b/InvenTree/plugin/plugin.py @@ -14,7 +14,7 @@ from django.urls.base import reverse from django.utils.text import slugify from django.utils.translation import gettext_lazy as _ -from plugin.helpers import GitStatus, get_git_log +from plugin.helpers import get_git_log logger = logging.getLogger("inventree") @@ -348,6 +348,7 @@ class InvenTreePlugin(VersionMixin, MixinBase, MetaBase): # region package info def _get_package_commit(self): """Get last git commit for the plugin.""" + return get_git_log(str(self.file())) @classmethod @@ -394,16 +395,6 @@ class InvenTreePlugin(VersionMixin, MixinBase, MetaBase): if package.get('date'): package['date'] = datetime.fromisoformat(package.get('date')) - # process sign state - sign_state = getattr(GitStatus, str(package.get('verified')), GitStatus.N) - if sign_state.status == 0: - self.sign_color = 'success' # pragma: no cover - elif sign_state.status == 1: - self.sign_color = 'warning' - else: - self.sign_color = 'danger' # pragma: no cover - # set variables self.package = package - self.sign_state = sign_state # endregion diff --git a/InvenTree/plugin/registry.py b/InvenTree/plugin/registry.py index 18f22559eb..6f37c7d720 100644 --- a/InvenTree/plugin/registry.py +++ b/InvenTree/plugin/registry.py @@ -9,6 +9,7 @@ import importlib import logging import os import subprocess +import time from pathlib import Path from typing import Dict, List, OrderedDict @@ -439,13 +440,16 @@ class PluginsRegistry: continue # continue -> the plugin is not loaded # Initialize package - we can be sure that an admin has activated the plugin - logger.info(f'Loading plugin `{plg_name}`') + logger.debug(f'Loading plugin `{plg_name}`') try: + t_start = time.time() plg_i: InvenTreePlugin = plg() - logger.debug(f'Loaded plugin `{plg_name}`') + dt = time.time() - t_start + logger.info(f'Loaded plugin `{plg_name}` in {dt:.3f}s') except Exception as error: handle_error(error, log_name='init') # log error and raise it -> disable plugin + logger.warning(f"Plugin `{plg_name}` could not be loaded") # Safe extra attributes plg_i.is_package = getattr(plg_i, 'is_package', False) diff --git a/InvenTree/plugin/samples/event/event_sample.py b/InvenTree/plugin/samples/event/event_sample.py index 0b77932068..f6638cb480 100644 --- a/InvenTree/plugin/samples/event/event_sample.py +++ b/InvenTree/plugin/samples/event/event_sample.py @@ -1,12 +1,14 @@ """Sample plugin which responds to events.""" -import warnings +import logging from django.conf import settings from plugin import InvenTreePlugin from plugin.mixins import EventMixin +logger = logging.getLogger('inventree') + class EventPluginSample(EventMixin, InvenTreePlugin): """A sample plugin which provides supports for triggered events.""" @@ -23,4 +25,4 @@ class EventPluginSample(EventMixin, InvenTreePlugin): # Issue warning that we can test for if settings.PLUGIN_TESTING: - warnings.warn(f'Event `{event}` triggered', stacklevel=2) + logger.debug(f'Event `{event}` triggered in sample plugin') diff --git a/InvenTree/plugin/samples/event/test_event_sample.py b/InvenTree/plugin/samples/event/test_event_sample.py index 4f28e6595f..e466aaa0eb 100644 --- a/InvenTree/plugin/samples/event/test_event_sample.py +++ b/InvenTree/plugin/samples/event/test_event_sample.py @@ -3,11 +3,14 @@ from django.conf import settings from django.test import TestCase +from common.models import InvenTreeSetting from plugin import InvenTreePlugin, registry from plugin.base.event.events import trigger_event from plugin.helpers import MixinNotImplementedError from plugin.mixins import EventMixin +from .event_sample import logger + class EventPluginSampleTests(TestCase): """Tests for EventPluginSample.""" @@ -19,12 +22,14 @@ class EventPluginSampleTests(TestCase): config.active = True config.save() + InvenTreeSetting.set_setting('ENABLE_PLUGINS_EVENTS', True, change_user=None) + # Enable event testing settings.PLUGIN_TESTING_EVENTS = True # Check that an event is issued - with self.assertWarns(Warning) as cm: + with self.assertLogs(logger=logger, level="DEBUG") as cm: trigger_event('test.event') - self.assertEqual(cm.warning.args[0], 'Event `test.event` triggered') + self.assertIn('DEBUG:inventree:Event `test.event` triggered in sample plugin', cm[1]) # Disable again settings.PLUGIN_TESTING_EVENTS = False diff --git a/InvenTree/plugin/samples/integration/sample.py b/InvenTree/plugin/samples/integration/sample.py index 402159455a..3b762b57d3 100644 --- a/InvenTree/plugin/samples/integration/sample.py +++ b/InvenTree/plugin/samples/integration/sample.py @@ -44,6 +44,7 @@ class SampleIntegrationPlugin(AppMixin, SettingsMixin, UrlsMixin, NavigationMixi 'API_KEY': { 'name': _('API Key'), 'description': _('Key required for accessing external API'), + 'required': True, }, 'NUMERICAL_SETTING': { 'name': _('Numerical'), @@ -72,6 +73,12 @@ class SampleIntegrationPlugin(AppMixin, SettingsMixin, UrlsMixin, NavigationMixi 'description': 'Select a part object from the database', 'model': 'part.part', }, + 'PROTECTED_SETTING': { + 'name': 'Protected Setting', + 'description': 'A protected setting, hidden from the UI', + 'default': 'ABC-123', + 'protected': True, + } } NAVIGATION = [ diff --git a/InvenTree/plugin/samples/integration/test_sample.py b/InvenTree/plugin/samples/integration/test_sample.py index 1aad91928e..17d5e6446c 100644 --- a/InvenTree/plugin/samples/integration/test_sample.py +++ b/InvenTree/plugin/samples/integration/test_sample.py @@ -1,6 +1,7 @@ """Unit tests for action plugins.""" from InvenTree.unit_test import InvenTreeTestCase +from plugin import registry class SampleIntegrationPluginTests(InvenTreeTestCase): @@ -11,3 +12,13 @@ class SampleIntegrationPluginTests(InvenTreeTestCase): response = self.client.get('/plugin/sample/ho/he/') self.assertEqual(response.status_code, 200) self.assertEqual(response.content, b'Hi there testuser this works') + + def test_settings(self): + """Check the SettingsMixin.check_settings function.""" + plugin = registry.get_plugin('sample') + self.assertIsNotNone(plugin) + + # check settings + self.assertEqual(plugin.check_settings(), (False, ['API_KEY'])) + plugin.set_setting('API_KEY', "dsfiodsfjsfdjsf") + self.assertEqual(plugin.check_settings(), (True, [])) diff --git a/InvenTree/plugin/test_api.py b/InvenTree/plugin/test_api.py index 817995de4d..c0f88d4658 100644 --- a/InvenTree/plugin/test_api.py +++ b/InvenTree/plugin/test_api.py @@ -10,7 +10,7 @@ from plugin.models import PluginConfig class PluginDetailAPITest(PluginMixin, InvenTreeAPITestCase): - """Tests the plugin API endpoints.""" + """Tests the plugin API endpoints""" roles = [ 'admin.add', @@ -54,7 +54,7 @@ class PluginDetailAPITest(PluginMixin, InvenTreeAPITestCase): ).data self.assertEqual(data['success'], True) - # valid - github url and packagename + # valid - github url and package name data = self.post( url, { @@ -193,3 +193,76 @@ class PluginDetailAPITest(PluginMixin, InvenTreeAPITestCase): with self.assertRaises(NotFound) as exc: check_plugin(plugin_slug=None, plugin_pk='123') self.assertEqual(str(exc.exception.detail), "Plugin '123' not installed") + + def test_plugin_settings(self): + """Test plugin settings access via the API""" + + # Ensure we have superuser permissions + self.user.is_superuser = True + self.user.save() + + # Activate the 'sample' plugin via the API + cfg = PluginConfig.objects.filter(key='sample').first() + url = reverse('api-plugin-detail-activate', kwargs={'pk': cfg.pk}) + self.client.patch(url, {}, expected_code=200) + + # Valid plugin settings endpoints + valid_settings = [ + 'SELECT_PART', + 'API_KEY', + 'NUMERICAL_SETTING', + ] + + for key in valid_settings: + response = self.get( + reverse('api-plugin-setting-detail', kwargs={ + 'plugin': 'sample', + 'key': key + })) + + self.assertEqual(response.data['key'], key) + + # Test that an invalid setting key raises a 404 error + response = self.get( + reverse('api-plugin-setting-detail', kwargs={ + 'plugin': 'sample', + 'key': 'INVALID_SETTING' + }), + expected_code=404 + ) + + # Test that a protected setting returns hidden value + response = self.get( + reverse('api-plugin-setting-detail', kwargs={ + 'plugin': 'sample', + 'key': 'PROTECTED_SETTING' + }), + expected_code=200 + ) + + self.assertEqual(response.data['value'], '***') + + # Test that we can update a setting value + response = self.patch( + reverse('api-plugin-setting-detail', kwargs={ + 'plugin': 'sample', + 'key': 'NUMERICAL_SETTING' + }), + { + 'value': 456 + }, + expected_code=200 + ) + + self.assertEqual(response.data['value'], '456') + + # Retrieve the value again + response = self.get( + reverse('api-plugin-setting-detail', kwargs={ + 'plugin': 'sample', + 'key': 'NUMERICAL_SETTING' + }), + expected_code=200 + ) + + self.assertEqual(response.data['value'], '456') diff --git a/InvenTree/report/admin.py b/InvenTree/report/admin.py index 94acf89e98..18b60392c5 100644 --- a/InvenTree/report/admin.py +++ b/InvenTree/report/admin.py @@ -4,7 +4,7 @@ from django.contrib import admin from .models import (BillOfMaterialsReport, BuildReport, PurchaseOrderReport, ReportAsset, ReportSnippet, ReturnOrderReport, - SalesOrderReport, TestReport) + SalesOrderReport, StockLocationReport, TestReport) class ReportTemplateAdmin(admin.ModelAdmin): @@ -25,6 +25,7 @@ class ReportAssetAdmin(admin.ModelAdmin): admin.site.register(ReportSnippet, ReportSnippetAdmin) admin.site.register(ReportAsset, ReportAssetAdmin) +admin.site.register(StockLocationReport, ReportTemplateAdmin) admin.site.register(TestReport, ReportTemplateAdmin) admin.site.register(BuildReport, ReportTemplateAdmin) admin.site.register(BillOfMaterialsReport, ReportTemplateAdmin) diff --git a/InvenTree/report/api.py b/InvenTree/report/api.py index b84da561b7..5563b9ffa1 100644 --- a/InvenTree/report/api.py +++ b/InvenTree/report/api.py @@ -20,14 +20,16 @@ import part.models from InvenTree.api import MetadataView from InvenTree.filters import InvenTreeSearchFilter from InvenTree.mixins import ListAPI, RetrieveAPI, RetrieveUpdateDestroyAPI -from stock.models import StockItem, StockItemAttachment +from stock.models import StockItem, StockItemAttachment, StockLocation from .models import (BillOfMaterialsReport, BuildReport, PurchaseOrderReport, - ReturnOrderReport, SalesOrderReport, TestReport) + ReturnOrderReport, SalesOrderReport, StockLocationReport, + TestReport) from .serializers import (BOMReportSerializer, BuildReportSerializer, PurchaseOrderReportSerializer, ReturnOrderReportSerializer, - SalesOrderReportSerializer, TestReportSerializer) + SalesOrderReportSerializer, + StockLocationReportSerializer, TestReportSerializer) class ReportListView(ListAPI): @@ -448,6 +450,30 @@ class ReturnOrderReportPrint(ReturnOrderReportMixin, ReportPrintMixin, RetrieveA pass +class StockLocationReportMixin(ReportFilterMixin): + """Mixin for StockLocation report template""" + + ITEM_MODEL = StockLocation + ITEM_KEY = 'location' + queryset = StockLocationReport.objects.all() + serializer_class = StockLocationReportSerializer + + +class StockLocationReportList(StockLocationReportMixin, ReportListView): + """API list endpoint for the StockLocationReportList model""" + pass + + +class StockLocationReportDetail(StockLocationReportMixin, RetrieveUpdateDestroyAPI): + """API endpoint for a single StockLocationReportDetail object.""" + pass + + +class StockLocationReportPrint(StockLocationReportMixin, ReportPrintMixin, RetrieveAPI): + """API endpoint for printing a StockLocationReportPrint object""" + pass + + report_api_urls = [ # Purchase order reports @@ -524,4 +550,18 @@ report_api_urls = [ # List view re_path(r'^.*$', StockItemTestReportList.as_view(), name='api-stockitem-testreport-list'), ])), + + # Stock Location reports (Stock Location Reports -> sir) + re_path(r'slr/', include([ + # Detail views + path(r'/', include([ + re_path(r'print/?', StockLocationReportPrint.as_view(), name='api-stocklocation-report-print'), + re_path(r'metadata/', MetadataView.as_view(), {'report': StockLocationReport}, name='api-stocklocation-report-metadata'), + re_path(r'^.*$', StockLocationReportDetail.as_view(), name='api-stocklocation-report-detail'), + ])), + + # List view + re_path(r'^.*$', StockLocationReportList.as_view(), name='api-stocklocation-report-list'), + ])), + ] diff --git a/InvenTree/report/apps.py b/InvenTree/report/apps.py index 95575d3bdf..3688f606ed 100644 --- a/InvenTree/report/apps.py +++ b/InvenTree/report/apps.py @@ -30,13 +30,14 @@ class ReportConfig(AppConfig): logging.getLogger('weasyprint').setLevel(logging.WARNING) # Create entries for default report templates - if canAppAccessDatabase(allow_test=True): + if canAppAccessDatabase(allow_test=False): self.create_default_test_reports() self.create_default_build_reports() self.create_default_bill_of_materials_reports() self.create_default_purchase_order_reports() self.create_default_sales_order_reports() self.create_default_return_order_reports() + self.create_default_stock_location_reports() def create_default_reports(self, model, reports): """Copy default report files across to the media directory.""" @@ -206,3 +207,23 @@ class ReportConfig(AppConfig): ] self.create_default_reports(ReturnOrderReport, reports) + + def create_default_stock_location_reports(self): + """Create database entries for the default StockLocationReport templates""" + + try: + from report.models import StockLocationReport + except Exception: # pragma: no cover + # Database not yet ready + return + + # List of templates to copy across + reports = [ + { + 'file': 'inventree_slr_report.html', + 'name': 'InvenTree Stock Location', + 'description': 'Stock Location example report', + } + ] + + self.create_default_reports(StockLocationReport, reports) diff --git a/InvenTree/report/migrations/0020_stocklocationreport.py b/InvenTree/report/migrations/0020_stocklocationreport.py new file mode 100644 index 0000000000..b43c414e3b --- /dev/null +++ b/InvenTree/report/migrations/0020_stocklocationreport.py @@ -0,0 +1,32 @@ +# Generated by Django 3.2.19 on 2023-06-29 14:46 + +import django.core.validators +from django.db import migrations, models +import report.models + + +class Migration(migrations.Migration): + + dependencies = [ + ('report', '0019_returnorderreport_metadata'), + ] + + operations = [ + migrations.CreateModel( + name='StockLocationReport', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('metadata', models.JSONField(blank=True, help_text='JSON metadata field, for use by external plugins', null=True, verbose_name='Plugin Metadata')), + ('name', models.CharField(help_text='Template name', max_length=100, verbose_name='Name')), + ('template', models.FileField(help_text='Report template file', upload_to=report.models.rename_template, validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['html', 'htm'])], verbose_name='Template')), + ('description', models.CharField(help_text='Report template description', max_length=250, verbose_name='Description')), + ('revision', models.PositiveIntegerField(default=1, editable=False, help_text='Report revision number (auto-increments)', verbose_name='Revision')), + ('filename_pattern', models.CharField(default='report.pdf', help_text='Pattern for generating report filenames', max_length=100, verbose_name='Filename Pattern')), + ('enabled', models.BooleanField(default=True, help_text='Report template is enabled', verbose_name='Enabled')), + ('filters', models.CharField(blank=True, help_text='stock location query filters (comma-separated list of key=value pairs)', max_length=250, validators=[report.models.validate_stock_location_report_filters], verbose_name='Filters')), + ], + options={ + 'abstract': False, + }, + ), + ] diff --git a/InvenTree/report/models.py b/InvenTree/report/models.py index 7e5567ba9b..8d32096872 100644 --- a/InvenTree/report/models.py +++ b/InvenTree/report/models.py @@ -7,7 +7,6 @@ import sys from django.conf import settings from django.core.cache import cache -from django.core.exceptions import FieldError, ValidationError from django.core.validators import FileExtensionValidator from django.db import models from django.template import Context, Template @@ -75,6 +74,11 @@ def validate_return_order_filters(filters): return validateFilterString(filters, model=order.models.ReturnOrder) +def validate_stock_location_report_filters(filters): + """Validate filter string against StockLocation model.""" + return validateFilterString(filters, model=stock.models.StockLocation) + + class WeasyprintReportMixin(WeasyTemplateResponseMixin): """Class for rendering a HTML template to a PDF.""" @@ -304,19 +308,6 @@ class TestReport(ReportTemplateBase): help_text=_('Include test results for stock items installed inside assembled item') ) - def matches_stock_item(self, item): - """Test if this report template matches a given StockItem objects.""" - try: - filters = validateFilterString(self.filters) - items = stock.models.StockItem.objects.filter(**filters) - except (ValidationError, FieldError): - return False - - # Ensure the provided StockItem object matches the filters - items = items.filter(pk=item.pk) - - return items.exists() - def get_test_keys(self, stock_item): """Construct a flattened list of test 'keys' for this StockItem: @@ -392,6 +383,8 @@ class BuildReport(ReportTemplateBase): return { 'build': my_build, 'part': my_build.part, + 'build_outputs': my_build.build_outputs.all(), + 'line_items': my_build.build_lines.all(), 'bom_items': my_build.part.get_bom_items(), 'reference': my_build.reference, 'quantity': my_build.quantity, @@ -631,3 +624,39 @@ class ReportAsset(models.Model): verbose_name=_('Description'), help_text=_("Asset file description") ) + + +class StockLocationReport(ReportTemplateBase): + """Render a StockLocationReport against a StockLocation object.""" + + @staticmethod + def get_api_url(): + """Return the API URL associated with the StockLocationReport model""" + return reverse('api-stocklocation-report-list') + + @classmethod + def getSubdir(cls): + """Return the subdirectory where StockLocationReport templates are located""" + return 'slr' + + filters = models.CharField( + blank=True, + max_length=250, + verbose_name=_('Filters'), + help_text=_("stock location query filters (comma-separated list of key=value pairs)"), + validators=[ + validate_stock_location_report_filters + ] + ) + + def get_context_data(self, request): + """Return custom context data for the StockLocationReport template""" + stock_location = self.object_to_print + + if type(stock_location) != stock.models.StockLocation: + raise TypeError('Provided model is not a StockLocation object -> ' + str(type(stock_location))) + + return { + 'stock_location': stock_location, + 'stock_items': stock_location.get_stock_items(), + } diff --git a/InvenTree/report/serializers.py b/InvenTree/report/serializers.py index 330279834f..5c15b14e0e 100644 --- a/InvenTree/report/serializers.py +++ b/InvenTree/report/serializers.py @@ -4,7 +4,8 @@ from InvenTree.serializers import (InvenTreeAttachmentSerializerField, InvenTreeModelSerializer) from .models import (BillOfMaterialsReport, BuildReport, PurchaseOrderReport, - ReturnOrderReport, SalesOrderReport, TestReport) + ReturnOrderReport, SalesOrderReport, StockLocationReport, + TestReport) class ReportSerializerBase(InvenTreeModelSerializer): @@ -84,3 +85,13 @@ class ReturnOrderReportSerializer(ReportSerializerBase): model = ReturnOrderReport fields = ReportSerializerBase.report_fields() + + +class StockLocationReportSerializer(ReportSerializerBase): + """Serializer class for the StockLocationReport model""" + + class Meta: + """Metaclass options""" + + model = StockLocationReport + fields = ReportSerializerBase.report_fields() diff --git a/InvenTree/report/templates/report/inventree_slr_report.html b/InvenTree/report/templates/report/inventree_slr_report.html new file mode 100644 index 0000000000..f10c74d318 --- /dev/null +++ b/InvenTree/report/templates/report/inventree_slr_report.html @@ -0,0 +1,124 @@ +{% extends "report/inventree_report_base.html" %} + +{% load i18n %} +{% load report %} +{% load barcode %} +{% load inventree_extras %} + +{% block page_margin %} +margin: 2cm; +margin-top: 4cm; +{% endblock page_margin %} + +{% block bottom_left %} +content: "v{{ report_revision }} - {{ date.isoformat }}"; +{% endblock bottom_left %} + +{% block bottom_center %} +content: "{% inventree_version shortstring=True %}"; +{% endblock bottom_center %} + +{% block style %} + +.header-right { + text-align: right; + float: right; +} + +.logo { + height: 20mm; + vertical-align: middle; +} + +.thumb-container { + width: 32px; + display: inline; +} + +.part-thumb { + max-width: 32px; + max-height: 32px; + display: inline; +} + +.part-text { + display: inline; +} + +.part-logo { + max-width: 60px; + max-height: 60px; + display: inline; +} + +table { + border: 1px solid #eee; + border-radius: 3px; + border-collapse: collapse; + width: 100%; + font-size: 80%; +} + +table td { + border: 1px solid #eee; +} + +table td.shrink { + white-space: nowrap +} + +table td.expand { + width: 99% +} + +.invisible-table { + border: 0px solid transparent; + border-collapse: collapse; + width: 100%; + font-size: 80%; +} + +.invisible-table td { + border: 0px solid transparent; +} + +.main-part-text { + display: inline; +} + +.main-part-description { + display: inline; +} + +{% endblock style %} + +{% block page_content %} + +

{% trans "Stock location items" %}

+

{{ stock_location.name }}

+ + + + + + + + + + + {% for line in stock_items.all %} + + + + + + + {% endfor %} + +
{% trans "Part" %}{% trans "IPN" %}{% trans "Quantity" %}{% trans "Note" %}
+
+ {{ line.part.full_name }} +
+
{{ line.part.IPN }}{% decimal line.quantity %}{{ line.notes }}
+ +{% endblock page_content %} diff --git a/InvenTree/report/templatetags/report.py b/InvenTree/report/templatetags/report.py index 5f90ff807f..cb8c8f2105 100644 --- a/InvenTree/report/templatetags/report.py +++ b/InvenTree/report/templatetags/report.py @@ -181,7 +181,7 @@ def encode_svg_image(filename): @register.simple_tag() -def part_image(part): +def part_image(part: Part): """Return a fully-qualified path for a part image. Arguments: @@ -200,6 +200,23 @@ def part_image(part): return uploaded_image(img) +@register.simple_tag() +def part_parameter(part: Part, parameter_name: str): + """Return a PartParameter object for the given part and parameter name + + Arguments: + part: A Part object + parameter_name: The name of the parameter to retrieve + + Returns: + A PartParameter object, or None if not found + """ + if type(part) is Part: + return part.get_parameter(parameter_name) + else: + return None + + @register.simple_tag() def company_image(company): """Return a fully-qualified path for a company image. diff --git a/InvenTree/report/tests.py b/InvenTree/report/tests.py index a652ce5f5c..f97490e228 100644 --- a/InvenTree/report/tests.py +++ b/InvenTree/report/tests.py @@ -475,3 +475,18 @@ class ReturnOrderReportTest(ReportTest): self.copyReportTemplate('inventree_return_order_report.html', 'return order report') return super().setUp() + + +class StockLocationReportTest(ReportTest): + """Unit tests for the StockLocationReport model""" + + model = report_models.StockLocationReport + list_url = 'api-stocklocation-report-list' + detail_url = 'api-stocklocation-report-detail' + print_url = 'api-stocklocation-report-print' + + def setUp(self): + """Setup function for the StockLocationReport tests""" + self.copyReportTemplate('inventree_slr_report.html', 'stock location report') + + return super().setUp() diff --git a/InvenTree/stock/api.py b/InvenTree/stock/api.py index 06e4af3788..c070e98799 100644 --- a/InvenTree/stock/api.py +++ b/InvenTree/stock/api.py @@ -21,9 +21,10 @@ import stock.serializers as StockSerializers from build.models import Build from build.serializers import BuildSerializer from company.models import Company, SupplierPart -from company.serializers import CompanySerializer, SupplierPartSerializer +from company.serializers import CompanySerializer +from generic.states.api import StatusView from InvenTree.api import (APIDownloadMixin, AttachmentMixin, - ListCreateDestroyAPIView, MetadataView, StatusView) + ListCreateDestroyAPIView, MetadataView) from InvenTree.filters import (ORDER_FILTER, SEARCH_ORDER_FILTER, SEARCH_ORDER_FILTER_ALIAS) from InvenTree.helpers import (DownloadFile, extract_serial_numbers, isNull, @@ -157,6 +158,12 @@ class StockAdjustView(CreateAPI): return context +class StockChangeStatus(StockAdjustView): + """API endpoint to change the status code of multiple StockItem objects.""" + + serializer_class = StockSerializers.StockChangeStatusSerializer + + class StockCount(StockAdjustView): """Endpoint for counting stock (performing a stocktake).""" @@ -457,8 +464,9 @@ class StockFilter(rest_filters.FilterSet): is_building = rest_filters.BooleanFilter(label="In production") # Serial number filtering - serial_gte = rest_filters.NumberFilter(label='Serial number GTE', field_name='serial', lookup_expr='gte') - serial_lte = rest_filters.NumberFilter(label='Serial number LTE', field_name='serial', lookup_expr='lte') + serial_gte = rest_filters.NumberFilter(label='Serial number GTE', field_name='serial_int', lookup_expr='gte') + serial_lte = rest_filters.NumberFilter(label='Serial number LTE', field_name='serial_int', lookup_expr='lte') + serial = rest_filters.CharFilter(label='Serial number', field_name='serial', lookup_expr='exact') serialized = rest_filters.BooleanFilter(label='Has serial number', method='filter_serialized') @@ -509,6 +517,15 @@ class StockFilter(rest_filters.FilterSet): else: return queryset.filter(belongs_to=None) + has_installed_items = rest_filters.BooleanFilter(label='Has installed items', method='filter_has_installed') + + def filter_has_installed(self, queryset, name, value): + """Filter stock items by "belongs_to" field being empty.""" + if str2bool(value): + return queryset.filter(installed_items__gt=0) + else: + return queryset.filter(installed_items=0) + sent_to_customer = rest_filters.BooleanFilter(label='Sent to customer', method='filter_sent_to_customer') def filter_sent_to_customer(self, queryset, name, value): @@ -536,6 +553,19 @@ class StockFilter(rest_filters.FilterSet): else: return queryset.filter(purchase_price=None) + ancestor = rest_filters.ModelChoiceFilter( + label='Ancestor', + queryset=StockItem.objects.all(), + method='filter_ancestor' + ) + + def filter_ancestor(self, queryset, name, ancestor): + """Filter based on ancestor stock item""" + + return queryset.filter( + parent__in=ancestor.get_descendants(include_self=True) + ) + # Update date filters updated_before = rest_filters.DateFilter(label='Updated before', field_name='updated', lookup_expr='lte') updated_after = rest_filters.DateFilter(label='Updated after', field_name='updated', lookup_expr='gte') @@ -552,6 +582,28 @@ class StockList(APIDownloadMixin, ListCreateDestroyAPIView): queryset = StockItem.objects.all() filterset_class = StockFilter + def get_serializer(self, *args, **kwargs): + """Set context before returning serializer. + + Extra detail may be provided to the serializer via query parameters: + + - part_detail: Include detail about the StockItem's part + - location_detail: Include detail about the StockItem's location + - supplier_part_detail: Include detail about the StockItem's supplier_part + - tests: Include detail about the StockItem's test results + """ + try: + params = self.request.query_params + + for key in ['part_detail', 'location_detail', 'supplier_part_detail', 'tests']: + kwargs[key] = str2bool(params.get(key, False)) + except AttributeError: + pass + + kwargs['context'] = self.get_serializer_context() + + return self.serializer_class(*args, **kwargs) + def get_serializer_context(self): """Extend serializer context.""" ctx = super().get_serializer_context() @@ -742,8 +794,6 @@ class StockList(APIDownloadMixin, ListCreateDestroyAPIView): """ queryset = self.filter_queryset(self.get_queryset()) - params = request.query_params - page = self.paginate_queryset(queryset) if page is not None: @@ -753,78 +803,6 @@ class StockList(APIDownloadMixin, ListCreateDestroyAPIView): data = serializer.data - # Keep track of which related models we need to query - location_ids = set() - part_ids = set() - supplier_part_ids = set() - - # Iterate through each StockItem and grab some data - for item in data: - loc = item['location'] - if loc: - location_ids.add(loc) - - part = item['part'] - if part: - part_ids.add(part) - - sp = item['supplier_part'] - - if sp: - supplier_part_ids.add(sp) - - # Do we wish to include Part detail? - if str2bool(params.get('part_detail', False)): - - # Fetch only the required Part objects from the database - parts = Part.objects.filter(pk__in=part_ids).prefetch_related( - 'category', - ) - - part_map = {} - - for part in parts: - part_map[part.pk] = PartBriefSerializer(part).data - - # Now update each StockItem with the related Part data - for stock_item in data: - part_id = stock_item['part'] - stock_item['part_detail'] = part_map.get(part_id, None) - - # Do we wish to include SupplierPart detail? - if str2bool(params.get('supplier_part_detail', False)): - - supplier_parts = SupplierPart.objects.filter(pk__in=supplier_part_ids) - - supplier_part_map = {} - - for part in supplier_parts: - supplier_part_map[part.pk] = SupplierPartSerializer(part).data - - for stock_item in data: - part_id = stock_item['supplier_part'] - stock_item['supplier_part_detail'] = supplier_part_map.get(part_id, None) - - # Do we wish to include StockLocation detail? - if str2bool(params.get('location_detail', False)): - - # Fetch only the required StockLocation objects from the database - locations = StockLocation.objects.filter(pk__in=location_ids).prefetch_related( - 'parent', - 'children', - ) - - location_map = {} - - # Serialize each StockLocation object - for location in locations: - location_map[location.pk] = StockSerializers.LocationBriefSerializer(location).data - - # Now update each StockItem with the related StockLocation data - for stock_item in data: - loc_id = stock_item['location'] - stock_item['location_detail'] = location_map.get(loc_id, None) - """ Determine the response type based on the request. a) For HTTP requests (e.g. via the browsable API) return a DRF response @@ -846,14 +824,6 @@ class StockList(APIDownloadMixin, ListCreateDestroyAPIView): queryset = StockSerializers.StockItemSerializer.annotate_queryset(queryset) - # Also ensure that we pre-fecth all the related items - queryset = queryset.prefetch_related( - 'part', - 'part__category', - 'location', - 'tags', - ) - return queryset def filter_queryset(self, queryset): @@ -973,19 +943,6 @@ class StockList(APIDownloadMixin, ListCreateDestroyAPIView): except (ValueError, Part.DoesNotExist): raise ValidationError({"part": "Invalid Part ID specified"}) - # Does the client wish to filter by the 'ancestor'? - anc_id = params.get('ancestor', None) - - if anc_id: - try: - ancestor = StockItem.objects.get(pk=anc_id) - - # Only allow items which are descendants of the specified StockItem - queryset = queryset.filter(id__in=[item.pk for item in ancestor.children.all()]) - - except (ValueError, Part.DoesNotExist): - raise ValidationError({"ancestor": "Invalid ancestor ID specified"}) - # Does the client wish to filter by stock location? loc_id = params.get('location', None) @@ -1421,6 +1378,7 @@ stock_api_urls = [ re_path(r'^transfer/', StockTransfer.as_view(), name='api-stock-transfer'), re_path(r'^assign/', StockAssign.as_view(), name='api-stock-assign'), re_path(r'^merge/', StockMerge.as_view(), name='api-stock-merge'), + re_path(r'^change_status/', StockChangeStatus.as_view(), name='api-stock-change-status'), # StockItemAttachment API endpoints re_path(r'^attachment/', include([ diff --git a/InvenTree/stock/migrations/0053_auto_20201110_0513.py b/InvenTree/stock/migrations/0053_auto_20201110_0513.py index 4462eb44cb..0b0d6cbc5a 100644 --- a/InvenTree/stock/migrations/0053_auto_20201110_0513.py +++ b/InvenTree/stock/migrations/0053_auto_20201110_0513.py @@ -8,6 +8,7 @@ import common.settings class Migration(migrations.Migration): dependencies = [ + ('common', '0004_inventreesetting'), ('stock', '0052_stockitem_is_building'), ] diff --git a/InvenTree/stock/migrations/0061_auto_20210511_0911.py b/InvenTree/stock/migrations/0061_auto_20210511_0911.py index e26079cb6c..aacaf01edc 100644 --- a/InvenTree/stock/migrations/0061_auto_20210511_0911.py +++ b/InvenTree/stock/migrations/0061_auto_20210511_0911.py @@ -190,7 +190,7 @@ def update_history(apps, schema_editor): tracking_type = StockHistoryCode.RECEIVED_AGAINST_PURCHASE_ORDER if tracking_type is not None: - entry.tracking_type = tracking_type + entry.tracking_type = tracking_type.value updated = True if updated: diff --git a/InvenTree/stock/migrations/0065_auto_20210701_0509.py b/InvenTree/stock/migrations/0065_auto_20210701_0509.py index 99cde1e7f7..5aedb7c6da 100644 --- a/InvenTree/stock/migrations/0065_auto_20210701_0509.py +++ b/InvenTree/stock/migrations/0065_auto_20210701_0509.py @@ -4,6 +4,22 @@ import InvenTree.fields from django.db import migrations import djmoney.models.fields +from django.db.migrations.recorder import MigrationRecorder + + +def show_migrations(apps, schema_editor): + """Show the latest migrations from each app""" + + for app in apps.get_app_configs(): + + label = app.label + + migrations = MigrationRecorder.Migration.objects.filter(app=app).order_by('-applied')[:5] + + print(f"{label} migrations:") + for m in migrations: + print(f" - {m.name}") + class Migration(migrations.Migration): @@ -11,7 +27,13 @@ class Migration(migrations.Migration): ('stock', '0064_auto_20210621_1724'), ] - operations = [ + operations = [] + + xoperations = [ + migrations.RunPython( + code=show_migrations, + reverse_code=migrations.RunPython.noop + ), migrations.AlterField( model_name='stockitem', name='purchase_price', diff --git a/InvenTree/stock/migrations/0071_auto_20211205_1733.py b/InvenTree/stock/migrations/0071_auto_20211205_1733.py index 6b0e83bfb1..31cc5f1cc1 100644 --- a/InvenTree/stock/migrations/0071_auto_20211205_1733.py +++ b/InvenTree/stock/migrations/0071_auto_20211205_1733.py @@ -38,6 +38,7 @@ def delete_scheduled(apps, schema_editor): class Migration(migrations.Migration): dependencies = [ + ('django_q', '0007_ormq'), ('stock', '0070_auto_20211128_0151'), ] diff --git a/InvenTree/stock/migrations/0096_auto_20230330_1121.py b/InvenTree/stock/migrations/0096_auto_20230330_1121.py index 0e7c92cfc7..b2dd16cc03 100644 --- a/InvenTree/stock/migrations/0096_auto_20230330_1121.py +++ b/InvenTree/stock/migrations/0096_auto_20230330_1121.py @@ -43,7 +43,7 @@ def update_stock_history(apps, schema_editor): history.deltas['salesorder'] = item.sales_order.pk # Change the history type - history.tracking_type = StockHistoryCode.SHIPPED_AGAINST_SALES_ORDER + history.tracking_type = StockHistoryCode.SHIPPED_AGAINST_SALES_ORDER.value history.save() n += 1 diff --git a/InvenTree/stock/migrations/0102_alter_stockitem_status.py b/InvenTree/stock/migrations/0102_alter_stockitem_status.py new file mode 100644 index 0000000000..7b8cf4d239 --- /dev/null +++ b/InvenTree/stock/migrations/0102_alter_stockitem_status.py @@ -0,0 +1,20 @@ +# Generated by Django 3.2.19 on 2023-06-04 17:43 + +import django.core.validators +from django.db import migrations, models +import InvenTree.status_codes + + +class Migration(migrations.Migration): + + dependencies = [ + ('stock', '0101_stockitemtestresult_metadata'), + ] + + operations = [ + migrations.AlterField( + model_name='stockitem', + name='status', + field=models.PositiveIntegerField(choices=InvenTree.status_codes.StockStatus.items(), default=10, validators=[django.core.validators.MinValueValidator(0)]), + ), + ] diff --git a/InvenTree/stock/models.py b/InvenTree/stock/models.py index a3c838504e..12092d3eba 100644 --- a/InvenTree/stock/models.py +++ b/InvenTree/stock/models.py @@ -34,8 +34,8 @@ from InvenTree.fields import InvenTreeModelMoneyField, InvenTreeURLField from InvenTree.models import (InvenTreeAttachment, InvenTreeBarcodeMixin, InvenTreeNotesMixin, InvenTreeTree, MetadataMixin, extract_int) -from InvenTree.status_codes import (SalesOrderStatus, StockHistoryCode, - StockStatus) +from InvenTree.status_codes import (SalesOrderStatusGroups, StockHistoryCode, + StockStatus, StockStatusGroups) from part import models as PartModels from plugin.events import trigger_event from users.models import Owner @@ -334,7 +334,7 @@ class StockItem(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, commo customer=None, consumed_by=None, is_building=False, - status__in=StockStatus.AVAILABLE_CODES + status__in=StockStatusGroups.AVAILABLE_CODES ) # A query filter which can be used to filter StockItem objects which have expired @@ -806,7 +806,7 @@ class StockItem(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, commo ) status = models.PositiveIntegerField( - default=StockStatus.OK, + default=StockStatus.OK.value, choices=StockStatus.items(), validators=[MinValueValidator(0)]) @@ -1082,12 +1082,12 @@ class StockItem(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, commo if active is True: query = query.filter( - line__order__status__in=SalesOrderStatus.OPEN, + line__order__status__in=SalesOrderStatusGroups.OPEN, shipment__shipment_date=None ) elif active is False: query = query.exclude( - line__order__status__in=SalesOrderStatus.OPEN + line__order__status__in=SalesOrderStatusGroups.OPEN, ).exclude( shipment__shipment_date=None ) @@ -1346,7 +1346,7 @@ class StockItem(InvenTreeBarcodeMixin, InvenTreeNotesMixin, MetadataMixin, commo entry = StockItemTracking.objects.create( item=self, - tracking_type=entry_type, + tracking_type=entry_type.value, user=user, date=datetime.now(), notes=notes, diff --git a/InvenTree/stock/serializers.py b/InvenTree/stock/serializers.py index d048a82977..756b510b2c 100644 --- a/InvenTree/stock/serializers.py +++ b/InvenTree/stock/serializers.py @@ -18,6 +18,7 @@ import common.models import company.models import InvenTree.helpers import InvenTree.serializers +import InvenTree.status_codes import part.models as part_models import stock.filters from company.serializers import SupplierPartSerializer @@ -44,6 +45,50 @@ class LocationBriefSerializer(InvenTree.serializers.InvenTreeModelSerializer): ] +class StockItemTestResultSerializer(InvenTree.serializers.InvenTreeModelSerializer): + """Serializer for the StockItemTestResult model.""" + + class Meta: + """Metaclass options.""" + + model = StockItemTestResult + + fields = [ + 'pk', + 'stock_item', + 'key', + 'test', + 'result', + 'value', + 'attachment', + 'notes', + 'user', + 'user_detail', + 'date' + ] + + read_only_fields = [ + 'pk', + 'user', + 'date', + ] + + def __init__(self, *args, **kwargs): + """Add detail fields.""" + user_detail = kwargs.pop('user_detail', False) + + super().__init__(*args, **kwargs) + + if user_detail is not True: + self.fields.pop('user_detail') + + user_detail = InvenTree.serializers.UserSerializer(source='user', read_only=True) + + key = serializers.CharField(read_only=True) + + attachment = InvenTree.serializers.InvenTreeAttachmentSerializerField(required=False) + + class StockItemSerializerBrief(InvenTree.serializers.InvenTreeModelSerializer): """Brief serializers for a StockItem.""" @@ -89,14 +134,12 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): model = StockItem fields = [ - 'allocated', 'batch', 'belongs_to', 'build', 'consumed_by', 'customer', 'delete_on_deplete', - 'expired', 'expiry_date', 'is_building', 'link', @@ -114,18 +157,24 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): 'sales_order', 'sales_order_reference', 'serial', - 'stale', 'status', 'status_text', 'stocktake_date', 'supplier_part', 'supplier_part_detail', - 'tracking_items', 'barcode_hash', 'updated', 'purchase_price', 'purchase_price_currency', 'use_pack_size', + 'tests', + + # Annotated fields + 'allocated', + 'expired', + 'installed_items', + 'stale', + 'tracking_items', 'tags', ] @@ -186,10 +235,17 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): """Add some extra annotations to the queryset, performing database queries as efficiently as possible.""" queryset = queryset.prefetch_related( + 'location', 'sales_order', 'purchase_order', 'part', + 'part__category', 'part__pricing_data', + 'supplier_part', + 'supplier_part__manufacturer_part', + 'supplier_part__tags', + 'test_results', + 'tags', ) # Annotate the queryset with the total allocated to sales orders @@ -230,23 +286,29 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): ) ) + # Annotate with the total number of "installed items" + queryset = queryset.annotate( + installed_items=SubqueryCount('installed_parts') + ) + return queryset status_text = serializers.CharField(source='get_status_display', read_only=True) - supplier_part_detail = SupplierPartSerializer(source='supplier_part', many=False, read_only=True) - + # Optional detail fields, which can be appended via query parameters + supplier_part_detail = SupplierPartSerializer(source='supplier_part', supplier_detail=False, manufacturer_detail=False, part_detail=False, many=False, read_only=True) part_detail = 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) quantity = InvenTreeDecimalField() # Annotated fields - tracking_items = serializers.IntegerField(read_only=True, required=False) allocated = serializers.FloatField(required=False) expired = serializers.BooleanField(required=False, read_only=True) + installed_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) purchase_price = InvenTree.serializers.InvenTreeMoneySerializer( label=_('Purchase Price'), @@ -266,18 +328,22 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): part_detail = kwargs.pop('part_detail', False) location_detail = kwargs.pop('location_detail', False) supplier_part_detail = kwargs.pop('supplier_part_detail', False) + tests = kwargs.pop('tests', False) super(StockItemSerializer, self).__init__(*args, **kwargs) - if part_detail is not True: + if not part_detail: self.fields.pop('part_detail') - if location_detail is not True: + if not location_detail: self.fields.pop('location_detail') - if supplier_part_detail is not True: + if not supplier_part_detail: self.fields.pop('supplier_part_detail') + if not tests: + self.fields.pop('tests') + class SerializeStockItemSerializer(serializers.Serializer): """A DRF serializer for "serializing" a StockItem. @@ -416,6 +482,7 @@ class InstallStockItemSerializer(serializers.Serializer): note = serializers.CharField( label=_('Note'), + help_text=_('Add transaction note (optional)'), required=False, allow_blank=True, ) @@ -576,6 +643,100 @@ class ReturnStockItemSerializer(serializers.Serializer): ) +class StockChangeStatusSerializer(serializers.Serializer): + """Serializer for changing status of multiple StockItem objects""" + + class Meta: + """Metaclass options""" + fields = [ + 'items', + 'status', + 'note', + ] + + items = serializers.PrimaryKeyRelatedField( + queryset=StockItem.objects.all(), + many=True, + required=True, + allow_null=False, + label=_('Stock Items'), + help_text=_('Select stock items to change status'), + ) + + def validate_items(self, items): + """Validate the selected stock items""" + + if len(items) == 0: + raise ValidationError(_("No stock items selected")) + + return items + + status = serializers.ChoiceField( + choices=InvenTree.status_codes.StockStatus.items(), + default=InvenTree.status_codes.StockStatus.OK.value, + label=_('Status'), + ) + + note = serializers.CharField( + label=_('Notes'), + help_text=_('Add transaction note (optional)'), + required=False, allow_blank=True, + ) + + @transaction.atomic + def save(self): + """Save the serializer to change the status of the selected stock items""" + + data = self.validated_data + + items = data['items'] + status = data['status'] + + request = self.context['request'] + user = getattr(request, 'user', None) + + note = data.get('note', '') + + items_to_update = [] + transaction_notes = [] + + deltas = { + 'status': status, + } + + now = datetime.now() + + # Instead of performing database updates for each item, + # perform bulk database updates (much more efficient) + + for item in items: + # Ignore items which are already in the desired status + if item.status == status: + continue + + item.updated = now + item.status = status + items_to_update.append(item) + + # Create a new transaction note for each item + transaction_notes.append( + StockItemTracking( + item=item, + tracking_type=InvenTree.status_codes.StockHistoryCode.EDITED.value, + date=now, + deltas=deltas, + user=user, + notes=note, + ) + ) + + # Update status + StockItem.objects.bulk_update(items_to_update, ['status', 'updated']) + + # Create entries + StockItemTracking.objects.bulk_create(transaction_notes) + + class LocationTreeSerializer(InvenTree.serializers.InvenTreeModelSerializer): """Serializer for a simple tree view.""" @@ -653,50 +814,6 @@ class StockItemAttachmentSerializer(InvenTree.serializers.InvenTreeAttachmentSer ]) -class StockItemTestResultSerializer(InvenTree.serializers.InvenTreeModelSerializer): - """Serializer for the StockItemTestResult model.""" - - class Meta: - """Metaclass options.""" - - model = StockItemTestResult - - fields = [ - 'pk', - 'stock_item', - 'key', - 'test', - 'result', - 'value', - 'attachment', - 'notes', - 'user', - 'user_detail', - 'date' - ] - - read_only_fields = [ - 'pk', - 'user', - 'date', - ] - - def __init__(self, *args, **kwargs): - """Add detail fields.""" - user_detail = kwargs.pop('user_detail', False) - - super().__init__(*args, **kwargs) - - if user_detail is not True: - self.fields.pop('user_detail') - - user_detail = InvenTree.serializers.UserSerializer(source='user', read_only=True) - - key = serializers.CharField(read_only=True) - - attachment = InvenTree.serializers.InvenTreeAttachmentSerializerField(required=False) - - class StockTrackingSerializer(InvenTree.serializers.InvenTreeModelSerializer): """Serializer for StockItemTracking model.""" diff --git a/InvenTree/stock/templates/stock/item.html b/InvenTree/stock/templates/stock/item.html index f922e158ec..a36dd54f91 100644 --- a/InvenTree/stock/templates/stock/item.html +++ b/InvenTree/stock/templates/stock/item.html @@ -22,9 +22,7 @@
-
- {% include "filter_list.html" with id="stocktracking" %} -
+ {% include "filter_list.html" with id="stocktracking" %}
@@ -40,9 +38,7 @@
-
- {% include "filter_list.html" with id="buildorderallocation" %} -
+ {% include "filter_list.html" with id="buildorderallocation" %}
@@ -55,9 +51,7 @@
-
- {% include "filter_list.html" with id="salesorderallocation" %} -
+ {% include "filter_list.html" with id="salesorderallocation" %}
@@ -71,6 +65,7 @@
{% if item.child_count > 0 %} + {% include "filter_list.html" with id="stock-childs" %} {% include "stock_table.html" with prefix="childs-" %} {% else %}
@@ -102,9 +97,7 @@
-
- {% include "filter_list.html" with id="stocktests" %} -
+ {% include "filter_list.html" with id="stocktests" %}
@@ -157,9 +150,7 @@
-
- {% include "filter_list.html" with id='installed-items' %} -
+ {% include "filter_list.html" with id='installed-items' %}
@@ -310,14 +301,11 @@ {% if item.child_count > 0 %} loadStockTable($("#childs-stock-table"), { params: { - location_detail: true, - part_detail: false, ancestor: {{ item.id }}, }, name: 'item-childs', - buttons: [ - '#stock-options', - ], + filterTarget: '#filter-list-stock-childs', + filterKey: 'stock', }); {% endif %} diff --git a/InvenTree/stock/templates/stock/item_base.html b/InvenTree/stock/templates/stock/item_base.html index da04f739da..618413b562 100644 --- a/InvenTree/stock/templates/stock/item_base.html +++ b/InvenTree/stock/templates/stock/item_base.html @@ -2,7 +2,7 @@ {% load static %} {% load plugin_extras %} {% load inventree_extras %} -{% load status_codes %} +{% load generic %} {% load i18n %} {% load l10n %} @@ -421,7 +421,7 @@ {% trans "Status" %} - {% stock_status_label item.status %} + {% status_label 'stock' item.status %} {% if item.expiry_date %} diff --git a/InvenTree/stock/templates/stock/location.html b/InvenTree/stock/templates/stock/location.html index c65505a757..b9abdb040c 100644 --- a/InvenTree/stock/templates/stock/location.html +++ b/InvenTree/stock/templates/stock/location.html @@ -70,7 +70,8 @@
{% endif %} @@ -221,9 +222,7 @@
-
- {% include "filter_list.html" with id="location" %} -
+ {% include "filter_list.html" with id="location" %}
@@ -270,13 +269,6 @@ }); }); - linkButtonsToSelection( - $('#sublocation-table'), - [ - '#location-print-options', - ] - ); - {% if labels_enabled %} $('#print-label').click(function() { @@ -291,6 +283,17 @@ }); {% endif %} + {% if report_enabled %} + $('#print-location-report').click(function() { + + printReports({ + items: [{{ location.pk }}], + key: 'location', + url: '{% url "api-stocklocation-report-list" %}', + }); + }); + {% endif %} + {% if location %} $("#barcode-scan-in-items").click(function() { barcodeCheckInStockItems({{ location.id }}); @@ -412,9 +415,6 @@ onPanelLoad('stock', function() { loadStockTable($("#stock-table"), { - buttons: [ - '#stock-options', - ], params: { {% if location %} location: {{ location.pk }}, diff --git a/InvenTree/stock/test_api.py b/InvenTree/stock/test_api.py index cd513b1fb0..e520f02bb0 100644 --- a/InvenTree/stock/test_api.py +++ b/InvenTree/stock/test_api.py @@ -16,7 +16,7 @@ from rest_framework import status import company.models import part.models from common.models import InvenTreeSetting -from InvenTree.status_codes import StockStatus +from InvenTree.status_codes import StockHistoryCode, StockStatus from InvenTree.unit_test import InvenTreeAPITestCase from part.models import Part from stock.models import StockItem, StockItemTestResult, StockLocation @@ -385,11 +385,11 @@ class StockItemListTest(StockAPITestCase): def test_filter_by_status(self): """Filter StockItem by 'status' field.""" codes = { - StockStatus.OK: 27, - StockStatus.DESTROYED: 1, - StockStatus.LOST: 1, - StockStatus.DAMAGED: 0, - StockStatus.REJECTED: 0, + StockStatus.OK.value: 27, + StockStatus.DESTROYED.value: 1, + StockStatus.LOST.value: 1, + StockStatus.DAMAGED.value: 0, + StockStatus.REJECTED.value: 0, } for code in codes.keys(): @@ -557,6 +557,42 @@ class StockItemListTest(StockAPITestCase): self.assertEqual(len(dataset), 17) + def test_query_count(self): + """Test that the number of queries required to fetch stock items is reasonable.""" + + def get_stock(data): + """Helper function to fetch stock items.""" + response = self.client.get(self.list_url, data=data) + self.assertEqual(response.status_code, 200) + return response.data + + # Create a bunch of StockItem objects + prt = Part.objects.first() + + StockItem.objects.bulk_create([ + StockItem( + part=prt, + quantity=1, + level=0, tree_id=0, lft=0, rght=0, + ) for _ in range(100) + ]) + + # List *all* stock items + with self.assertNumQueriesLessThan(25): + get_stock({}) + + # List all stock items, with part detail + with self.assertNumQueriesLessThan(20): + get_stock({'part_detail': True}) + + # List all stock items, with supplier_part detail + with self.assertNumQueriesLessThan(20): + get_stock({'supplier_part_detail': True}) + + # List all stock items, with 'location' and 'tests' detail + with self.assertNumQueriesLessThan(20): + get_stock({'location_detail': True, 'tests': True}) + class StockItemTest(StockAPITestCase): """Series of API tests for the StockItem API.""" @@ -1117,6 +1153,51 @@ class StockItemTest(StockAPITestCase): stock_item.refresh_from_db() self.assertEqual(stock_item.part, variant) + def test_set_status(self): + """Test API endpoint for setting StockItem status""" + + url = reverse('api-stock-change-status') + + prt = Part.objects.first() + + # Create a bunch of items + items = [ + StockItem.objects.create(part=prt, quantity=10) for _ in range(10) + ] + + for item in items: + item.refresh_from_db() + self.assertEqual(item.status, StockStatus.OK.value) + + data = { + 'items': [item.pk for item in items], + 'status': StockStatus.DAMAGED.value, + } + + self.post(url, data, expected_code=201) + + # Check that the item has been updated correctly + for item in items: + item.refresh_from_db() + self.assertEqual(item.status, StockStatus.DAMAGED.value) + self.assertEqual(item.tracking_info.count(), 1) + + # Same test, but with one item unchanged + items[0].status = StockStatus.ATTENTION.value + items[0].save() + + data['status'] = StockStatus.ATTENTION.value + + self.post(url, data, expected_code=201) + + for item in items: + item.refresh_from_db() + self.assertEqual(item.status, StockStatus.ATTENTION.value) + self.assertEqual(item.tracking_info.count(), 2) + + tracking = item.tracking_info.last() + self.assertEqual(tracking.tracking_type, StockHistoryCode.EDITED.value) + class StocktakeTest(StockAPITestCase): """Series of tests for the Stocktake API.""" @@ -1465,7 +1546,7 @@ class StockAssignTest(StockAPITestCase): stock_item = StockItem.objects.create( part=part.models.Part.objects.get(pk=1), - status=StockStatus.DESTROYED, + status=StockStatus.DESTROYED.value, quantity=5, ) diff --git a/InvenTree/stock/test_views.py b/InvenTree/stock/test_views.py index 6177f0f0a1..be2c58733c 100644 --- a/InvenTree/stock/test_views.py +++ b/InvenTree/stock/test_views.py @@ -112,7 +112,7 @@ class StockOwnershipTest(StockViewTestCase): """Helper function to get response to API change.""" return self.client.patch( reverse('api-stock-detail', args=(self.test_item_id,)), - {'status': StockStatus.DAMAGED}, + {'status': StockStatus.DAMAGED.value}, content_type='application/json', ) @@ -156,7 +156,7 @@ class StockOwnershipTest(StockViewTestCase): # Check that user is allowed to change item self.assertTrue(item.check_ownership(self.user)) # Owner is group -> True self.assertTrue(location.check_ownership(self.user)) # Owner is group -> True - self.assertContains(self.assert_api_change(), f'"status":{StockStatus.DAMAGED}', status_code=200) + self.assertContains(self.assert_api_change(), f'"status":{StockStatus.DAMAGED.value}', status_code=200) # Change group new_group = Group.objects.create(name='new_group') diff --git a/InvenTree/templates/InvenTree/index.html b/InvenTree/templates/InvenTree/index.html index 94a0713957..4d7fecd67a 100644 --- a/InvenTree/templates/InvenTree/index.html +++ b/InvenTree/templates/InvenTree/index.html @@ -25,56 +25,6 @@ {{ block.super }} -function addHeaderTitle(title) { - - addSidebarHeader({ - text: title, - }); -} - -function addHeaderAction(label, title, icon, options) { - - // Construct a "badge" to add to the sidebar item - var badge = ` - - - - `; - - addSidebarItem({ - label: label, - text: title, - icon: icon, - content_after: badge - }); - - // Add a detail item to the detail item-panel - $("#detail-panels").append( - `
-
-

${title}

-
-
-
-
-
` - ); - - // Connect a callback to the table - $(`#table-${label}`).on('load-success.bs.table', function() { - var count = $(`#table-${label}`).bootstrapTable('getData').length; - - var badge = $(`#sidebar-badge-${label}`); - - badge.html(count); - - if (count > 0) { - badge.removeClass('bg-dark'); - badge.addClass('bg-primary'); - } - }); -} - {% settings_value 'HOMEPAGE_HIDE_INACTIVE' user=request.user as hide_inactive %} {% settings_value 'HOMEPAGE_PART_STARRED' user=request.user as setting_part_starred %} {% settings_value 'HOMEPAGE_CATEGORY_STARRED' user=request.user as setting_category_starred %} @@ -88,13 +38,13 @@ addHeaderTitle('{% trans "Parts" %}'); {% if setting_part_starred %} addHeaderAction('starred-parts', '{% trans "Subscribed Parts" %}', 'fa-bell'); loadSimplePartTable("#table-starred-parts", "{% url 'api-part-list' %}", { + name: 'starred-parts', params: { starred: true, {% if hide_inactive %} active: true, {% endif %} }, - name: 'starred_parts', }); {% endif %} @@ -111,9 +61,10 @@ loadPartCategoryTable($('#table-starred-categories'), { {% if setting_part_latest %} addHeaderAction('latest-parts', '{% trans "Latest Parts" %}', 'fa-newspaper'); loadSimplePartTable("#table-latest-parts", "{% url 'api-part-list' %}", { + name: 'latest-parts', params: { ordering: "-creation_date", - limit: {% settings_value "PART_RECENT_COUNT" user=request.user %}, + created_after: moment().subtract(1, 'months').format('YYYY-MM-DD'), {% if hide_inactive %} active: true, {% endif %} @@ -125,6 +76,7 @@ loadSimplePartTable("#table-latest-parts", "{% url 'api-part-list' %}", { {% if setting_bom_validation %} addHeaderAction('bom-validation', '{% trans "BOM Waiting Validation" %}', 'fa-times-circle'); loadSimplePartTable("#table-bom-validation", "{% url 'api-part-list' %}", { + name: 'parts-invalid-bom', params: { "bom_valid": false, {% if hide_inactive %} @@ -150,14 +102,15 @@ loadSimplePartTable("#table-bom-validation", "{% url 'api-part-list' %}", { {% endif %} {% if roles.stock.view %} - {% if setting_stock_recent %} addHeaderAction('recently-updated-stock', '{% trans "Recently Updated" %}', 'fa-clock'); loadStockTable($('#table-recently-updated-stock'), { + disableFilters: true, params: { + in_stock: true, part_detail: true, ordering: "-updated", - limit: {% settings_value "STOCK_RECENT_COUNT" user=request.user %}, + updated_after: moment().subtract(1, 'months').format('YYYY-MM-DD'), }, name: 'recently-updated-stock', }); @@ -166,6 +119,7 @@ loadStockTable($('#table-recently-updated-stock'), { {% if setting_stock_low %} addHeaderAction('low-stock', '{% trans "Low Stock" %}', 'fa-flag'); loadSimplePartTable("#table-low-stock", "{% url 'api-part-list' %}", { + name: 'parts-low-stock', params: { low_stock: true, {% if hide_inactive %} @@ -179,6 +133,7 @@ loadSimplePartTable("#table-low-stock", "{% url 'api-part-list' %}", { {% if setting_stock_depleted %} addHeaderAction('depleted-stock', '{% trans "Depleted Stock" %}', 'fa-times'); loadSimplePartTable("#table-depleted-stock", "{% url 'api-part-list' %}", { + name: 'parts-depleted-stock', params: { depleted_stock: true, {% if hide_inactive %} @@ -191,15 +146,8 @@ loadSimplePartTable("#table-depleted-stock", "{% url 'api-part-list' %}", { {% if setting_stock_needed %} addHeaderAction('stock-to-build', '{% trans "Required for Build Orders" %}', 'fa-bullhorn'); -loadSimplePartTable("#table-stock-to-build", "{% url 'api-part-list' %}", { - params: { - stock_to_build: true, - {% if hide_inactive %} - active: true, - {% endif %} - }, - name: "to_build_parts", -}); + +loadRequiredForBuildsPartsTable("#table-stock-to-build", {}); {% endif %} {% if expiry %} @@ -207,6 +155,7 @@ loadSimplePartTable("#table-stock-to-build", "{% url 'api-part-list' %}", { {% if setting_stock_expired %} addHeaderAction('expired-stock', '{% trans "Expired Stock" %}', 'fa-calendar-times'); loadStockTable($("#table-expired-stock"), { + disableFilters: true, params: { expired: true, location_detail: true, @@ -215,12 +164,14 @@ loadStockTable($("#table-expired-stock"), { active: true, {% endif %} }, + name: 'expired-stock', }); {% endif %} {% if setting_stock_stale %} addHeaderAction('stale-stock', '{% trans "Stale Stock" %}', 'fa-stopwatch'); loadStockTable($("#table-stale-stock"), { + disableFilters: true, params: { stale: true, expired: false, @@ -230,6 +181,7 @@ loadStockTable($("#table-stale-stock"), { active: true, {% endif %} }, + name: 'stale-stock', }); {% endif %} diff --git a/InvenTree/templates/InvenTree/notifications/history.html b/InvenTree/templates/InvenTree/notifications/history.html index adccdd88a1..ca8f24bee5 100644 --- a/InvenTree/templates/InvenTree/notifications/history.html +++ b/InvenTree/templates/InvenTree/notifications/history.html @@ -18,9 +18,7 @@ {% block content %}
-
- {% include "filter_list.html" with id="notifications-history" %} -
+ {% include "filter_list.html" with id="notifications-history" %}
diff --git a/InvenTree/templates/InvenTree/notifications/inbox.html b/InvenTree/templates/InvenTree/notifications/inbox.html index 832807ae1e..9ab28051f4 100644 --- a/InvenTree/templates/InvenTree/notifications/inbox.html +++ b/InvenTree/templates/InvenTree/notifications/inbox.html @@ -18,9 +18,7 @@ {% block content %}
-
- {% include "filter_list.html" with id="notifications-inbox" %} -
+ {% include "filter_list.html" with id="notifications-inbox" %}
diff --git a/InvenTree/templates/InvenTree/settings/part_parameters.html b/InvenTree/templates/InvenTree/settings/part_parameters.html index d2b15edf87..95812ef51e 100644 --- a/InvenTree/templates/InvenTree/settings/part_parameters.html +++ b/InvenTree/templates/InvenTree/settings/part_parameters.html @@ -4,22 +4,37 @@ {% block label %}part-parameters{% endblock label %} {% block heading %} -{% trans "Part Parameter Templates" %} +{% trans "Part Parameters" %} {% endblock heading %} -{% block actions %} - -{% endblock actions %} +{% block panel_content %} -{% block content %} -
-
- {% include "filter_list.html" with id="parameter-templates" %} -
-
- +
+ + {% include "InvenTree/settings/setting.html" with key="PART_PARAMETER_ENFORCE_UNITS" icon="fa-clipboard-check" %} +
-{% endblock content %} +
+
+

{% trans "Part Parameter Templates" %}

+ {% include "spacer.html" %} +
+ +
+
+
+ +
+
+
+ {% include "filter_list.html" with id="parameter-templates" %} +
+
+ +
+
+ +{% endblock panel_content %} diff --git a/InvenTree/templates/InvenTree/settings/part_stocktake.html b/InvenTree/templates/InvenTree/settings/part_stocktake.html index ad9e563a93..b13c7e27d3 100644 --- a/InvenTree/templates/InvenTree/settings/part_stocktake.html +++ b/InvenTree/templates/InvenTree/settings/part_stocktake.html @@ -13,6 +13,7 @@ {% include "InvenTree/settings/setting.html" with key="STOCKTAKE_ENABLE" icon="fa-clipboard-check" %} + {% include "InvenTree/settings/setting.html" with key="STOCKTAKE_EXCLUDE_EXTERNAL" icon="fa-sitemap" %} {% include "InvenTree/settings/setting.html" with key="STOCKTAKE_AUTO_DAYS" icon="fa-calendar-alt" %} {% include "InvenTree/settings/setting.html" with key="STOCKTAKE_DELETE_REPORT_DAYS" icon="fa-trash-alt" %} @@ -35,9 +36,7 @@
-
- {% include "filter_list.html" with id="stocktakereport" %} -
+ {% include "filter_list.html" with id="stocktakereport" %}
diff --git a/InvenTree/templates/InvenTree/settings/plugin.html b/InvenTree/templates/InvenTree/settings/plugin.html index 190f7697f1..45ed034c0a 100644 --- a/InvenTree/templates/InvenTree/settings/plugin.html +++ b/InvenTree/templates/InvenTree/settings/plugin.html @@ -24,8 +24,6 @@ {% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_NAVIGATION" icon="fa-sitemap" %} {% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_APP" icon="fa-rocket" %} {% include "InvenTree/settings/setting.html" with key="PLUGIN_ON_STARTUP" %} - - {% include "InvenTree/settings/setting.html" with key="PLUGIN_CHECK_SIGNATURES" %}
@@ -53,11 +51,7 @@ {% endif %}
-
-
- {% include "filter_list.html" with id="plugins" %} -
-
+ {% include "filter_list.html" with id="plugins" %}
diff --git a/InvenTree/templates/InvenTree/settings/plugin_settings.html b/InvenTree/templates/InvenTree/settings/plugin_settings.html index d83b408867..21646a298e 100644 --- a/InvenTree/templates/InvenTree/settings/plugin_settings.html +++ b/InvenTree/templates/InvenTree/settings/plugin_settings.html @@ -118,20 +118,6 @@ {% trans "Commit Message" %}{{ plugin.package.message }}{% include "clip.html" %} {% endif %} - - {% settings_value "PLUGIN_CHECK_SIGNATURES" as signatures %} - {% if signatures %} - - - {% trans "Sign Status" %} - {% if plugin.package.verified %}{{ plugin.package.verified }}: {% endif %}{{ plugin.sign_state.msg }} - - - - {% trans "Sign Key" %} - {{ plugin.package.key }}{% include "clip.html" %} - - {% endif %}
diff --git a/InvenTree/templates/InvenTree/settings/setting.html b/InvenTree/templates/InvenTree/settings/setting.html index 13b0ea9c5e..1c3629d2ff 100644 --- a/InvenTree/templates/InvenTree/settings/setting.html +++ b/InvenTree/templates/InvenTree/settings/setting.html @@ -22,7 +22,9 @@ {{ setting.description }} - {% if setting.is_bool %} + {% if setting.protected %} + *** + {% elif setting.is_bool %} {% include "InvenTree/settings/setting_boolean.html" %} {% else %}
diff --git a/InvenTree/templates/InvenTree/settings/stock.html b/InvenTree/templates/InvenTree/settings/stock.html index 8beaac4620..b0badca6de 100644 --- a/InvenTree/templates/InvenTree/settings/stock.html +++ b/InvenTree/templates/InvenTree/settings/stock.html @@ -21,6 +21,7 @@ {% include "InvenTree/settings/setting.html" with key="STOCK_ALLOW_EXPIRED_BUILD" icon="fa-tools" %} {% include "InvenTree/settings/setting.html" with key="STOCK_OWNERSHIP_CONTROL" icon="fa-users" %} {% include "InvenTree/settings/setting.html" with key="STOCK_LOCATION_DEFAULT_ICON" icon="fa-icons" %} + {% include "InvenTree/settings/setting.html" with key="STOCK_SHOW_INSTALLED_ITEMS" icon="fa-sitemap" %} diff --git a/InvenTree/templates/InvenTree/settings/user_homepage.html b/InvenTree/templates/InvenTree/settings/user_homepage.html index 4a990e5138..7696024423 100644 --- a/InvenTree/templates/InvenTree/settings/user_homepage.html +++ b/InvenTree/templates/InvenTree/settings/user_homepage.html @@ -18,11 +18,9 @@ {% include "InvenTree/settings/setting.html" with key="HOMEPAGE_PART_STARRED" icon='fa-bell' user_setting=True %} {% include "InvenTree/settings/setting.html" with key="HOMEPAGE_CATEGORY_STARRED" icon='fa-bell' user_setting=True %} {% include "InvenTree/settings/setting.html" with key="HOMEPAGE_PART_LATEST" icon='fa-history' user_setting=True %} - {% include "InvenTree/settings/setting.html" with key="PART_RECENT_COUNT" icon="fa-clock" user_setting=True %} {% include "InvenTree/settings/setting.html" with key="HOMEPAGE_BOM_REQUIRES_VALIDATION" user_setting=True %} {% include "InvenTree/settings/setting.html" with key="HOMEPAGE_STOCK_RECENT" icon='fa-history' user_setting=True %} - {% include "InvenTree/settings/setting.html" with key="STOCK_RECENT_COUNT" icon="fa-clock" user_setting=True %} {% include "InvenTree/settings/setting.html" with key="HOMEPAGE_STOCK_LOW" user_setting=True %} {% include "InvenTree/settings/setting.html" with key="HOMEPAGE_SHOW_STOCK_DEPLETED" user_setting=True %} {% include "InvenTree/settings/setting.html" with key="HOMEPAGE_BUILD_STOCK_NEEDED" user_setting=True %} diff --git a/InvenTree/templates/about.html b/InvenTree/templates/about.html index ddd73ac9b5..0c02ade0e1 100644 --- a/InvenTree/templates/about.html +++ b/InvenTree/templates/about.html @@ -36,6 +36,13 @@ {% trans "Commit Date" %}{% render_date commit_date %}{% include "clip.html" %} {% endif %} + {% inventree_branch as branch %} + {% if branch %} + + + {% trans "Commit Branch" %}{{ branch }}{% include "clip.html" %} + + {% endif %} {% endif %} diff --git a/InvenTree/templates/allauth_2fa/setup.html b/InvenTree/templates/allauth_2fa/setup.html index 556313af85..704757a374 100644 --- a/InvenTree/templates/allauth_2fa/setup.html +++ b/InvenTree/templates/allauth_2fa/setup.html @@ -15,7 +15,7 @@

-{% trans 'QC Code' %} +{% trans 'QR Code' %}

diff --git a/InvenTree/templates/attachment_table.html b/InvenTree/templates/attachment_table.html index fbabb7e510..c023e0ff2f 100644 --- a/InvenTree/templates/attachment_table.html +++ b/InvenTree/templates/attachment_table.html @@ -1,21 +1,7 @@ {% load i18n %}
-
- - {% include "filter_list.html" with id="attachments" %} -
+ {% include "filter_list.html" with id="attachments" %}
diff --git a/InvenTree/templates/base.html b/InvenTree/templates/base.html index 0e395c3168..7d46b47416 100644 --- a/InvenTree/templates/base.html +++ b/InvenTree/templates/base.html @@ -147,6 +147,7 @@ + @@ -160,6 +161,7 @@ + diff --git a/InvenTree/templates/filter_list.html b/InvenTree/templates/filter_list.html index eebea0ed0d..55d2a4c39b 100644 --- a/InvenTree/templates/filter_list.html +++ b/InvenTree/templates/filter_list.html @@ -1 +1,3 @@ -
+
+ +
diff --git a/InvenTree/templates/js/dynamic/permissions.js b/InvenTree/templates/js/dynamic/permissions.js new file mode 100644 index 0000000000..34881a8dcf --- /dev/null +++ b/InvenTree/templates/js/dynamic/permissions.js @@ -0,0 +1,59 @@ +/* + * globals + inventreeGet, + +/* exported + checkPermission, +*/ + +// Keep track of the current user permissions +var user_roles = null; + + +/* + * Check if the user has the specified role and permission + */ +function checkPermission(role, permission='view') { + + // Allow permission to be specified in dotted notation, e.g. 'part.add' + if (role.indexOf('.') > 0) { + let parts = role.split('.'); + role = parts[0]; + permission = parts[1]; + } + + // Request user roles if we do not have them + if (user_roles == null) { + inventreeGet('{% url "api-user-roles" %}', {}, { + async: false, + success: function(response) { + user_roles = response.roles || {}; + } + }); + } + + if (user_roles == null) { + console.error("Failed to fetch user roles"); + return false; + } + + if (!(role in user_roles)) { + return false; + } + + let roles = user_roles[role]; + + if (!roles) { + return false; + } + + let found = false; + + user_roles[role].forEach(function(p) { + if (String(p).valueOf() == String(permission).valueOf()) { + found = true; + } + }); + + return found; +} diff --git a/InvenTree/templates/js/translated/attachment.js b/InvenTree/templates/js/translated/attachment.js index da7fb29037..4ec0b4b625 100644 --- a/InvenTree/templates/js/translated/attachment.js +++ b/InvenTree/templates/js/translated/attachment.js @@ -187,7 +187,27 @@ function attachmentLink(filename) { let html = makeIcon(icon) + ` ${fn}`; return renderLink(html, filename, {download: true}); +} + +/* + * Construct a set of actions for an attachment table, + * with the provided permission set + */ +function makeAttachmentActions(permissions, options) { + + let actions = []; + + if (permissions.delete) { + actions.push({ + label: 'delete', + icon: 'fa-trash-alt icon-red', + title: '{% trans "Delete attachments" %}', + callback: options.callback, + }); + } + + return actions; } @@ -225,7 +245,20 @@ function loadAttachmentTable(url, options) { } }); - setupFilterList('attachments', $(table), '#filter-list-attachments'); + setupFilterList('attachments', $(table), '#filter-list-attachments', { + custom_actions: [ + { + label: 'attachments', + icon: 'fa-tools', + title: '{% trans "Attachment actions" %}', + actions: makeAttachmentActions(permissions, { + callback: function(attachments) { + deleteAttachments(attachments, url, options); + } + }), + } + ] + }); if (permissions.add) { addAttachmentButtonCallbacks(url, options.fields || {}); @@ -235,19 +268,6 @@ function loadAttachmentTable(url, options) { $('#new-attachment-link').hide(); } - if (permissions.delete) { - // Add callback for the 'multi delete' button - $('#multi-attachment-delete').click(function() { - var attachments = getTableData(table); - - if (attachments.length > 0) { - deleteAttachments(attachments, url, options); - } - }); - } else { - $('#multi-attachment-actions').hide(); - } - $(table).inventreeTable({ url: url, name: options.name || 'attachments', @@ -261,10 +281,20 @@ function loadAttachmentTable(url, options) { sidePagination: 'server', onPostBody: function() { + // Add callback for 'delete' button + if (permissions.delete) { + $(table).find('.button-attachment-delete').click(function() { + let pk = $(this).attr('pk'); + let attachments = $(table).bootstrapTable('getRowByUniqueId', pk); + + deleteAttachments([attachments], url, options); + }); + } + // Add callback for 'edit' button if (permissions.change) { $(table).find('.button-attachment-edit').click(function() { - var pk = $(this).attr('pk'); + let pk = $(this).attr('pk'); constructForm(`${url}${pk}/`, { fields: { @@ -286,16 +316,6 @@ function loadAttachmentTable(url, options) { }); }); } - - if (permissions.delete) { - // Add callback for 'delete' button - $(table).find('.button-attachment-delete').click(function() { - var pk = $(this).attr('pk'); - - var attachment = $(table).bootstrapTable('getRowByUniqueId', pk); - deleteAttachments([attachment], url, options); - }); - } }, columns: [ { diff --git a/InvenTree/templates/js/translated/barcode.js b/InvenTree/templates/js/translated/barcode.js index dbe12c198d..6be685cdf2 100644 --- a/InvenTree/templates/js/translated/barcode.js +++ b/InvenTree/templates/js/translated/barcode.js @@ -763,7 +763,7 @@ function scanItemsIntoLocation(item_list, options={}) { // Extra form fields var extra = makeNotesField(); - // Header contentfor + // Header content var header = `
diff --git a/InvenTree/templates/js/translated/bom.js b/InvenTree/templates/js/translated/bom.js index 2daee5d748..c8ed1c0541 100644 --- a/InvenTree/templates/js/translated/bom.js +++ b/InvenTree/templates/js/translated/bom.js @@ -33,6 +33,7 @@ modalSetContent, partFields, partGroups, + reloadBootstrapTable, renderLink, setupFilterList, shortenString, @@ -817,7 +818,24 @@ function loadBomTable(table, options={}) { Object.assign(filters, params); - setupFilterList('bom', $(table)); + setupFilterList('bom', $(table), '#filter-list-bom', { + custom_actions: [{ + label: 'actions', + actions: [{ + label: 'delete', + title: '{% trans "Delete items" %}', + icon: 'fa-trash-alt icon-red', + permission: 'part.change', + callback: function(data) { + deleteBomItems(data, { + success: function() { + reloadBootstrapTable('#bom-table'); + } + }); + } + }] + }] + }); function availableQuantity(row) { @@ -972,7 +990,7 @@ function loadBomTable(table, options={}) { } if (row.overage) { - text += ` (${row.overage}) `; + text += ` (+${row.overage})`; } return text; @@ -1137,7 +1155,7 @@ function loadBomTable(table, options={}) { var available_stock = availableQuantity(row); - var text = `${available_stock}`; + var text = renderLink(`${available_stock}`, url); if (row.sub_part_detail && row.sub_part_detail.units) { text += ` ${row.sub_part_detail.units}`; @@ -1168,7 +1186,7 @@ function loadBomTable(table, options={}) { ); } - return renderLink(text, url); + return text; } }); diff --git a/InvenTree/templates/js/translated/build.js b/InvenTree/templates/js/translated/build.js index 52d412fb67..58b709e2a8 100644 --- a/InvenTree/templates/js/translated/build.js +++ b/InvenTree/templates/js/translated/build.js @@ -13,7 +13,8 @@ formatDecimal, FullCalendar, getFormFieldValue, - getTableData,0 + getTableData, + global_settings, handleFormErrors, handleFormSuccess, imageHoverIcon, @@ -22,8 +23,8 @@ inventreeLoad, inventreePut, launchModalForm, - linkButtonsToSelection, loadTableFilters, + locationDetail, makeDeleteButton, makeEditButton, makeRemoveButton, @@ -32,6 +33,7 @@ makePartIcons, makeProgressBar, orderParts, + reloadBootstrapTable, renderDate, renderLink, setupFilterList, @@ -55,16 +57,15 @@ createBuildOutput, duplicateBuildOrder, editBuildOrder, - loadAllocationTable, + loadBuildLineTable, loadBuildOrderAllocationTable, - loadBuildOutputAllocationTable, loadBuildOutputTable, loadBuildTable, */ function buildFormFields() { - return { + let fields = { reference: { icon: 'fa-hashtag', }, @@ -76,6 +77,9 @@ function buildFormFields() { }, title: {}, quantity: {}, + project_code: { + icon: 'fa-list', + }, priority: {}, parent: { filters: { @@ -111,6 +115,12 @@ function buildFormFields() { icon: 'fa-users', }, }; + + if (!global_settings.PROJECT_CODES_ENABLED) { + delete fields.project_code; + } + + return fields; } /* @@ -191,7 +201,6 @@ function duplicateBuildOrder(build_id, options={}) { } - /* Construct a form to cancel a build order */ function cancelBuildOrder(build_id, options={}) { @@ -378,7 +387,7 @@ function createBuildOutput(build_id, options) { fields: fields, preFormContent: html, onSuccess: function(response) { - location.reload(); + reloadBootstrapTable(options.table || '#build-output-table'); }, }); @@ -397,7 +406,7 @@ function makeBuildOutputButtons(output_id, build_info, options={}) { var html = ''; // Tracked parts? Must be individually allocated - if (options.has_bom_items) { + if (options.has_tracked_lines) { // Add a button to allocate stock against this build output html += makeIconButton( @@ -405,17 +414,14 @@ function makeBuildOutputButtons(output_id, build_info, options={}) { 'button-output-allocate', output_id, '{% trans "Allocate stock items to this build output" %}', - { - disabled: true, - } ); - // Add a button to unallocate stock from this build output + // Add a button to deallocate stock from this build output html += makeIconButton( 'fa-minus-circle icon-red', - 'button-output-unallocate', + 'button-output-deallocate', output_id, - '{% trans "Unallocate stock from build output" %}', + '{% trans "Deallocate stock from build output" %}', ); } @@ -447,19 +453,19 @@ function makeBuildOutputButtons(output_id, build_info, options={}) { /* - * Unallocate stock against a particular build order + * Deallocate stock against a particular build order * * Options: * - output: pk value for a stock item "build output" * - bom_item: pk value for a particular BOMItem (build item) */ -function unallocateStock(build_id, options={}) { +function deallocateStock(build_id, options={}) { var url = `{% url "api-build-list" %}${build_id}/unallocate/`; var html = `
- {% trans "Are you sure you wish to unallocate stock items from this build?" %} + {% trans "Are you sure you wish to deallocate the selected stock items from this build?" %} `; @@ -472,12 +478,12 @@ function unallocateStock(build_id, options={}) { hidden: true, value: options.output, }, - bom_item: { + build_line: { hidden: true, - value: options.bom_item, + value: options.build_line, }, }, - title: '{% trans "Unallocate Stock Items" %}', + title: '{% trans "Deallocate Stock Items" %}', onSuccess: function(response, opts) { if (options.onSuccess) { options.onSuccess(response, opts); @@ -928,6 +934,7 @@ function loadBuildOrderAllocationTable(table, options={}) { name: 'buildorderallocation', groupBy: false, search: false, + sortable: true, paginationVAlign: 'bottom', original: options.params, formatNoMatches: function() { @@ -941,29 +948,35 @@ function loadBuildOrderAllocationTable(table, options={}) { }, { field: 'build', + sortable: true, switchable: false, title: '{% trans "Build Order" %}', formatter: function(value, row) { + let ref = `${row.build_detail.reference}`; + let html = renderLink(ref, `/build/${row.build}/`); - var ref = `${row.build_detail.reference}`; + html += `- ${row.build_detail.title}`; - return renderLink(ref, `/build/${row.build}/`); + html += buildStatusDisplay(row.build_detail.status, { + classes: 'float-right', + }); + + return html; } }, { - field: 'item', - title: '{% trans "Stock Item" %}', + field: 'quantity', + sortable: true, + title: '{% trans "Allocated Quantity" %}', formatter: function(value, row) { - // Render a link to the particular stock item - - var link = `/stock/item/${row.stock_item}/`; - var text = `{% trans "Stock Item" %} ${row.stock_item}`; + let link = `/stock/item/${row.stock_item}/`; + let text = formatDecimal(value); return renderLink(text, link); } }, { - field: 'location', + field: 'location_detail', title: '{% trans "Location" %}', formatter: function(value, row) { @@ -971,55 +984,88 @@ function loadBuildOrderAllocationTable(table, options={}) { return '{% trans "Location not specified" %}'; } - var link = `/stock/location/${value}`; - var text = row.location_detail.description; + let item = row.stock_item_detail; + item.location_detail = row.location_detail; - return renderLink(text, link); + return locationDetail(item, true); } }, - { - field: 'quantity', - title: '{% trans "Quantity" %}', - sortable: true, - } ] }); } -/* Internal helper functions for performing calculations on BOM data */ +/* + * Construct a set of actions for the build output table + */ +function makeBuildOutputActions(build_info) { -// Iterate through a list of allocations, returning *only* those which match a particular BOM row -function getAllocationsForBomRow(bom_row, allocations) { - var part_id = bom_row.sub_part; - - var matching_allocations = []; - - allocations.forEach(function(allocation) { - if (allocation.bom_part == part_id) { - matching_allocations.push(allocation); + return [ + { + label: 'complete', + title: '{% trans "Complete outputs" %}', + icon: 'fa-check-circle icon-green', + permission: 'build.add', + callback: function(data) { + completeBuildOutputs( + build_info.pk, + data, + { + success: function() { + $('#build-output-table').bootstrapTable('refresh'); // Reload the "in progress" table + $('#build-stock-table').bootstrapTable('refresh'); // Reload the "completed" table + } + } + ); + }, + }, + { + label: 'scrap', + title: '{% trans "Scrap outputs" %}', + icon: 'fa-times-circle icon-red', + permission: 'build.change', + callback: function(data) { + scrapBuildOutputs( + build_info.pk, + data, + { + success: function() { + $('#build-output-table').bootstrapTable('refresh'); // Reload the "in progress" table + $('#build-stock-table').bootstrapTable('refresh'); // Reload the "completed" table + } + } + ); + }, + }, + { + label: 'delete', + title: '{% trans "Delete outputs" %}', + icon: 'fa-trash-alt icon-red', + permission: 'build.delete', + callback: function(data) { + deleteBuildOutputs( + build_info.pk, + data, + { + success: function() { + $('#build-output-table').bootstrapTable('refresh'); // Reload the "in progress" table + $('#build-stock-table').bootstrapTable('refresh'); // Reload the "completed" table + } + } + ) + }, } - }); - - return matching_allocations; -} - -// Sum the allocation quantity for a given BOM row -function sumAllocationsForBomRow(bom_row, allocations) { - var quantity = 0; - - getAllocationsForBomRow(bom_row, allocations).forEach(function(allocation) { - quantity += allocation.quantity; - }); - - return formatDecimal(quantity, 10); + ]; } /* * Display a "build output" table for a particular build. * - * This displays a list of "active" (i.e. "in production") build outputs for a given build + * This displays a list of "active" (i.e. "in production") build outputs (stock items) for a given build. + * + * - Any required tests are displayed here for each output + * - Additionally, if any tracked items are present in the build, the allocated items are displayed * */ function loadBuildOutputTable(build_info, options={}) { @@ -1028,16 +1074,19 @@ function loadBuildOutputTable(build_info, options={}) { var params = options.params || {}; + // test templates for the part being assembled + let test_templates = null; + + // tracked line items for this build + let has_tracked_lines = false; + // Mandatory query filters params.part_detail = true; + params.tests = true; params.is_building = true; params.build = build_info.pk; - var filters = {}; - - for (var key in params) { - filters[key] = params[key]; - } + var filters = Object.assign({}, params); setupFilterList('builditems', $(table), options.filterTarget || '#filter-list-incompletebuilditems', { labels: { @@ -1046,322 +1095,160 @@ function loadBuildOutputTable(build_info, options={}) { }, singular_name: '{% trans "build output" %}', plural_name: '{% trans "build outputs" %}', + custom_actions: [{ + label: 'buildoutput', + icon: 'fa-tools', + title: '{% trans "Build output actions" %}', + actions: makeBuildOutputActions(build_info), + }] }); - function setupBuildOutputButtonCallbacks() { - - // Callback for the "allocate" button - $(table).find('.button-output-allocate').click(function() { - var pk = $(this).attr('pk'); - - // Find the "allocation" sub-table associated with this output - var subtable = $(`#output-sub-table-${pk}`); - - if (subtable.exists()) { - var rows = getTableData(`#output-sub-table-${pk}`); - - allocateStockToBuild( - build_info.pk, - build_info.part, - rows, - { - output: pk, - success: function() { - $(table).bootstrapTable('refresh'); - } - } - ); - } else { - console.warn(`Could not locate sub-table for output ${pk}`); - } - }); - - // Callback for the "unallocate" button - $(table).find('.button-output-unallocate').click(function() { - var pk = $(this).attr('pk'); - - unallocateStock(build_info.pk, { - output: pk, - table: table - }); - }); - - // Callback for the "complete" button - $(table).find('.button-output-complete').click(function() { - var pk = $(this).attr('pk'); - - var output = $(table).bootstrapTable('getRowByUniqueId', pk); - - completeBuildOutputs( - build_info.pk, - [ - output, - ], - { - success: function() { - $(table).bootstrapTable('refresh'); - $('#build-stock-table').bootstrapTable('refresh'); - } - } - ); - }); - - // Callback for the "scrap" button - $(table).find('.button-output-scrap').click(function() { - var pk = $(this).attr('pk'); - var output = $(table).bootstrapTable('getRowByUniqueId', pk); - - scrapBuildOutputs( - build_info.pk, - [output], - { - success: function() { - $(table).bootstrapTable('refresh'); - $('#build-stock-table').bootstrapTable('refresh'); - } - } - ); - }); - - // Callback for the "remove" button - $(table).find('.button-output-remove').click(function() { - var pk = $(this).attr('pk'); - - var output = $(table).bootstrapTable('getRowByUniqueId', pk); - - deleteBuildOutputs( - build_info.pk, - [ - output, - ], - { - success: function() { - $(table).bootstrapTable('refresh'); - $('#build-stock-table').bootstrapTable('refresh'); - } - } - ); - }); - } - - // List of "tracked bom items" required for this build order - var bom_items = null; - - // Request list of BOM data for this build order + // Request list of required tests for the part being assembled inventreeGet( - '{% url "api-bom-list" %}', + '{% url "api-part-test-template-list" %}', { part: build_info.part, - sub_part_detail: true, - sub_part_trackable: true, }, { async: false, success: function(response) { - // Save the BOM items - bom_items = response; + test_templates = []; + response.forEach(function(item) { + // Only include "required" tests + if (item.required) { + test_templates.push(item); + } + }); } } ); - /* - * Construct a "sub table" showing the required BOM items - */ - function constructBuildOutputSubTable(index, row, element) { - var sub_table_id = `output-sub-table-${row.pk}`; - - var html = ` -
-
-
- `; - - element.html(html); - - // Pass through the cached BOM items - build_info.bom_items = bom_items; - - loadBuildOutputAllocationTable( - build_info, - row, - { - table: `#${sub_table_id}`, - parent_table: table, - } - ); - } - - function updateAllocationData(rows) { - // Update stock allocation information for the build outputs - - // Request updated stock allocation data for this build order + // Callback function to load the allocated stock items + function reloadOutputAllocations() { inventreeGet( - '{% url "api-build-item-list" %}', + '{% url "api-build-line-list" %}', { build: build_info.pk, - part_detail: true, - location_detail: true, - sub_part_trackable: true, tracked: true, }, { success: function(response) { + let build_lines = response.results || response; + let table_data = $(table).bootstrapTable('getData'); - // Group allocation information by the "install_into" field - var allocations = {}; + has_tracked_lines = build_lines.length > 0; - response.forEach(function(allocation) { - var target = allocation.install_into; + /* Iterate through each active build output and update allocations + * For each build output, we need to: + * - Append any existing allocations + * - Work out how many lines are "fully allocated" + */ + for (var ii = 0; ii < table_data.length; ii++) { + let output = table_data[ii]; - if (target != null) { - if (!(target in allocations)) { - allocations[target] = []; - } + let fully_allocated = 0; - allocations[target].push(allocation); - } - }); + // Construct a list of allocations for this output + let lines = []; - // Now that the allocations have been grouped by stock item, - // we can update each row in the table, - // using the pk value of each row (stock item) + // Iterate through each tracked build line item + for (let jj = 0; jj < build_lines.length; jj++) { - var data = []; + // Create a local copy of the build line + let line = Object.assign({}, build_lines[jj]); - rows.forEach(function(row) { - row.allocations = allocations[row.pk] || []; - data.push(row); + let required = line.bom_item_detail.quantity * output.quantity; - var n_completed_lines = 0; + let allocations = []; + let allocated = 0; - // Check how many BOM lines have been completely allocated for this build output - bom_items.forEach(function(bom_item) { + // Iterate through each allocation for this line item + for (let kk = 0; kk < line.allocations.length; kk++) { + let allocation = line.allocations[kk]; - var required_quantity = bom_item.quantity * row.quantity; - - if (sumAllocationsForBomRow(bom_item, row.allocations) >= required_quantity) { - n_completed_lines += 1; - } - - var output_progress_bar = $(`#output-progress-${row.pk}`); - - if (output_progress_bar.exists()) { - output_progress_bar.html( - makeProgressBar( - n_completed_lines, - bom_items.length, - { - max_width: '150px', - } - ) - ); - } - }); - }); - - // Reload table with updated data - $(table).bootstrapTable('load', data); - } - } - ); - } - - var part_tests = null; - - function updateTestResultData(rows) { - // Update test result information for the build outputs - - // Request test template data if it has not already been retrieved - if (part_tests == null) { - inventreeGet( - '{% url "api-part-test-template-list" %}', - { - part: build_info.part, - required: true, - }, - { - success: function(response) { - // Save the list of part tests - part_tests = response; - - // Callback to this function again - updateTestResultData(rows); - } - } - ); - - return; - } - - // Retrieve stock results for the entire build - inventreeGet( - '{% url "api-stock-test-result-list" %}', - { - build: build_info.pk, - ordering: '-date', - }, - { - success: function(results) { - - var data = []; - // Iterate through each row and find matching test results - rows.forEach(function(row) { - var test_results = {}; - - results.forEach(function(result) { - if (result.stock_item == row.pk) { - // This test result matches the particular stock item - - if (!(result.key in test_results)) { - test_results[result.key] = result.result; + if (allocation.install_into == output.pk) { + allocations.push(allocation); + allocated += allocation.quantity; } } - }); - row.passed_tests = test_results; + line.allocations = allocations; + line.allocated = allocated; + line.quantity = required; - data.push(row); - }); + if (allocated >= required) { + fully_allocated += 1; + } - $(table).bootstrapTable('load', data); + lines.push(line); + } + + // Push the row back in + output.lines = lines; + output.fully_allocated = fully_allocated; + table_data[ii] = output; + } + + // Update the table data + $(table).bootstrapTable('load', table_data); + + if (has_tracked_lines) { + $(table).bootstrapTable('showColumn', 'fully_allocated'); + } else { + $(table).bootstrapTable('hideColumn', 'fully_allocated'); + } } } ); } - // Return the number of 'passed' tests in a given row - function countPassedTests(row) { - if (part_tests == null) { - return 0; - } + // Callback function to construct a child table + function constructOutputSubTable(index, row, element) { + let sub_table_id = `output-table-${row.pk}`; - var results = row.passed_tests || {}; - var n = 0; + element.html(` +
+
+
+ `); - part_tests.forEach(function(test) { - if (results[test.key] || false) { - n += 1; + loadBuildLineTable( + `#${sub_table_id}`, + build_info.pk, + { + output: row.pk, + data: row.lines, + } + ); + } + + // Return the "passed test count" for a given row + function getPassedTestCount(row) { + let passed_tests = 0; + + // Iterate through the available test templates + test_templates.forEach(function(test) { + // Iterate through all the "test results" for the given stock item + // If the keys match, update the result + // As they are returned in order, the "latest" result is the one we use + + let final_result = false; + + row.tests.forEach(function(result) { + if (result.key == test.key) { + final_result = result.result; + } + }); + + if (final_result) { + passed_tests += 1; } }); - return n; - } - - // Return the number of 'fully allocated' lines for a given row - function countAllocatedLines(row) { - var n_completed_lines = 0; - - bom_items.forEach(function(bom_row) { - var required_quantity = bom_row.quantity * row.quantity; - - if (sumAllocationsForBomRow(bom_row, row.allocations || []) >= required_quantity) { - n_completed_lines += 1; - } - }); - - return n_completed_lines; + return passed_tests; } + // Now, construct the actual table $(table).inventreeTable({ url: '{% url "api-stock-list" %}', queryParams: filters, @@ -1372,23 +1259,18 @@ function loadBuildOutputTable(build_info, options={}) { sortable: true, search: true, sidePagination: 'client', - detailView: bom_items.length > 0, + detailView: true, detailFilter: function(index, row) { - return bom_items.length > 0; + return has_tracked_lines; }, detailFormatter: function(index, row, element) { - constructBuildOutputSubTable(index, row, element); + return constructOutputSubTable(index, row, element); }, formatNoMatches: function() { return '{% trans "No active build outputs found" %}'; }, - onPostBody: function(rows) { - // Add callbacks for the buttons - setupBuildOutputButtonCallbacks(); - }, - onLoadSuccess: function(rows) { - updateAllocationData(rows); - updateTestResultData(rows); + onLoadSuccess: function() { + reloadOutputAllocations(); }, buttons: constructExpandCollapseButtons(table), columns: [ @@ -1401,11 +1283,11 @@ function loadBuildOutputTable(build_info, options={}) { { field: 'part', title: '{% trans "Part" %}', - switchable: true, + switchable: false, formatter: function(value, row) { - var thumb = row.part_detail.thumbnail; - - return imageHoverIcon(thumb) + row.part_detail.full_name + makePartIcons(row.part_detail); + return imageHoverIcon(row.part_detail.thumbnail) + + renderLink(row.part_detail.full_name, `/part/${row.part_detail.pk}/`) + + makePartIcons(row.part_detail); } }, { @@ -1414,18 +1296,19 @@ function loadBuildOutputTable(build_info, options={}) { switchable: false, sortable: true, formatter: function(value, row) { - - var url = `/stock/item/${row.pk}/`; - - var text = ''; + let text = ''; if (row.serial && row.quantity == 1) { text = `{% trans "Serial Number" %}: ${row.serial}`; } else { text = `{% trans "Quantity" %}: ${row.quantity}`; - if (row.part_detail && row.part_detail.units) { - text += ` ${row.part_detail.units}`; - } + + } + + text = renderLink(text, `/stock/item/${row.pk}/`); + + if (row.part_detail && row.part_detail.units) { + text += ` [${row.part_detail.units}]`; } if (row.batch) { @@ -1434,80 +1317,35 @@ function loadBuildOutputTable(build_info, options={}) { text += stockStatusDisplay(row.status, {classes: 'float-right'}); - return renderLink(text, url); - }, - sorter: function(a, b, row_a, row_b) { - // Sort first by quantity, and then by serial number - if ((row_a.quantity > 1) || (row_b.quantity > 1)) { - return row_a.quantity > row_b.quantity ? 1 : -1; - } - - if ((row_a.serial != null) && (row_b.serial != null)) { - var sn_a = Number.parseInt(row_a.serial) || 0; - var sn_b = Number.parseInt(row_b.serial) || 0; - - return sn_a > sn_b ? 1 : -1; - } - - return 0; + return text; } }, { - field: 'allocated', - title: '{% trans "Allocated Stock" %}', - visible: bom_items.length > 0, - switchable: false, + field: 'fully_allocated', + title: '{% trans "Allocated Lines" %}', + visible: false, sortable: true, + switchable: false, formatter: function(value, row) { - - if (bom_items.length == 0) { - return `
{% trans "No tracked BOM items for this build" %}
`; + if (!row.lines) { + return '-'; } - var progressBar = makeProgressBar( - countAllocatedLines(row), - bom_items.length, - { - max_width: '150px', - } - ); - - return `
${progressBar}
`; - }, - sorter: function(value_a, value_b, row_a, row_b) { - var q_a = countAllocatedLines(row_a); - var q_b = countAllocatedLines(row_b); - - return q_a > q_b ? 1 : -1; - }, + return makeProgressBar(row.fully_allocated, row.lines.length); + } }, { field: 'tests', - title: '{% trans "Completed Tests" %}', - sortable: true, + title: '{% trans "Required Tests" %}', + visible: test_templates.length > 0, switchable: true, formatter: function(value, row) { - if (part_tests == null || part_tests.length == 0) { - return `{% trans "No required tests for this build" %}`; + if (row.tests) { + return makeProgressBar( + getPassedTestCount(row), + test_templates.length + ); } - - var n_passed = countPassedTests(row); - - var progress = makeProgressBar( - n_passed, - part_tests.length, - { - max_width: '150px', - } - ); - - return progress; - }, - sorter: function(a, b, row_a, row_b) { - var n_a = countPassedTests(row_a); - var n_b = countPassedTests(row_b); - - return n_a > n_b ? 1 : -1; } }, { @@ -1519,58 +1357,92 @@ function loadBuildOutputTable(build_info, options={}) { row.pk, build_info, { - has_bom_items: bom_items.length > 0, + has_tracked_lines: has_tracked_lines, } - ); + ) } } ] }); - // Enable the "allocate" button when the sub-table is exanded - $(table).on('expand-row.bs.table', function(detail, index, row) { - $(`#button-output-allocate-${row.pk}`).prop('disabled', false); - }); + /* Callbacks for the build output buttons */ - // Disable the "allocate" button when the sub-table is collapsed - $(table).on('collapse-row.bs.table', function(detail, index, row) { - $(`#button-output-allocate-${row.pk}`).prop('disabled', true); - }); + // Allocate stock button + $(table).on('click', '.button-output-allocate', function() { + let pk = $(this).attr('pk'); - // Add callbacks for the various table menubar buttons + // Retrieve build output row + let output = $(table).bootstrapTable('getRowByUniqueId', pk); + let lines = output.lines || []; - // Scrap multiple outputs - $('#multi-output-scrap').click(function() { - var outputs = getTableData(table); - - scrapBuildOutputs( + allocateStockToBuild( build_info.pk, - outputs, + lines, { + output: pk, success: function() { - // Reload the "in progress" table - $('#build-output-table').bootstrapTable('refresh'); - - // Reload the "completed" table + $(table).bootstrapTable('refresh'); $('#build-stock-table').bootstrapTable('refresh'); } } ); }); - // Complete multiple outputs - $('#multi-output-complete').click(function() { - var outputs = getTableData(table); + // Deallocate stock button + $(table).on('click', '.button-output-deallocate', function() { + let pk = $(this).attr('pk'); + + deallocateStock(build_info.pk, { + output: pk, + table: table + }); + }); + + // Complete build output button + $(table).on('click', '.button-output-complete', function() { + let pk = $(this).attr('pk'); + let output = $(table).bootstrapTable('getRowByUniqueId', pk); completeBuildOutputs( build_info.pk, - outputs, + [output], { success: function() { - // Reload the "in progress" table - $('#build-output-table').bootstrapTable('refresh'); + $(table).bootstrapTable('refresh'); + $('#build-stock-table').bootstrapTable('refresh'); + } + } + ); + }); - // Reload the "completed" table + // Scrap build output button + $(table).on('click', '.button-output-scrap', function() { + let pk = $(this).attr('pk'); + let output = $(table).bootstrapTable('getRowByUniqueId', pk); + + scrapBuildOutputs( + build_info.pk, + [output], + { + success: function() { + $(table).bootstrapTable('refresh'); + $('#build-stock-table').bootstrapTable('refresh'); + } + } + ); + }); + + // Remove build output button + $(table).on('click', '.button-output-remove', function() { + let pk = $(this).attr('pk'); + let output = $(table).bootstrapTable('getRowByUniqueId', pk); + + deleteBuildOutputs( + build_info.pk, + [output], + { + success: function() { + $(table).bootstrapTable('refresh'); $('#build-stock-table').bootstrapTable('refresh'); } } @@ -1606,705 +1478,21 @@ function loadBuildOutputTable(build_info, options={}) { } -/* - * Display the "allocation table" for a particular build output. - * - * This displays a table of required allocations for a particular build output - * - * Args: - * - buildId: The PK of the Build object - * - partId: The PK of the Part object - * - output: The StockItem object which is the "output" of the build - * - options: - * -- table: The #id of the table (will be auto-calculated if not provided) - */ -function loadBuildOutputAllocationTable(buildInfo, output, options={}) { - - var buildId = buildInfo.pk; - var partId = buildInfo.part; - - var outputId = null; - - if (output) { - outputId = output.pk; - } else { - outputId = 'untracked'; - } - - var bom_items = buildInfo.bom_items || null; - - function loadBomData() { - let data = []; - - inventreeGet( - '{% url "api-bom-list" %}', - { - part: partId, - sub_part_detail: true, - sub_part_trackable: buildInfo.tracked_parts, - }, - { - async: false, - success: function(results) { - data = results; - } - } - ); - - return data; - } - - // If BOM items have not been provided, load via the API - if (bom_items == null) { - bom_items = loadBomData(); - } - - // Apply filters to build table - // As the table is constructed locally, we can apply filters directly - function filterBuildAllocationTable(filters={}) { - $(table).bootstrapTable( - 'filterBy', - filters, - { - 'filterAlgorithm': function(row, filters) { - let result = true; - - if (!filters) { - return true; - } - - // Filter by 'consumable' flag - if ('consumable' in filters) { - result &= filters.consumable == '1' ? row.consumable : !row.consumable; - } - - // Filter by 'optional' flag - if ('optional' in filters) { - result &= filters.optional == '1' ? row.optional : !row.optional; - } - - // Filter by 'allocated' flag - if ('allocated' in filters) { - let fully_allocated = row.consumable || isRowFullyAllocated(row); - result &= filters.allocated == '1' ? fully_allocated : !fully_allocated; - } - - // Filter by 'available' flag - if ('available' in filters) { - let available = row.available_stock > 0; - result &= filters.available == '1' ? available : !available; - } - - return result; - } - } - ); - } - - var table = options.table || `#allocation-table-${outputId}`; - - // Filters - let filters = loadTableFilters('builditems', options.params); - - setupFilterList('builditems', $(table), options.filterTarget, { - callback: function(table, filters, options) { - if (filters == null) { - // Destroy and re-create the table from scratch - $(table).bootstrapTable('destroy'); - loadBuildOutputAllocationTable(buildInfo, output, options); - } else { - filterBuildAllocationTable(filters); - } - } - }); - - var allocated_items = output == null ? null : output.allocations; - - function redrawAllocationData() { - // Force a refresh of each row in the table - // Note we cannot call 'refresh' because we are passing data from memory - - // How many rows are fully allocated? - var allocated_rows = 0; - - for (var idx = 0; idx < bom_items.length; idx++) { - var row = bom_items[idx]; - - if (isRowFullyAllocated(row)) { - allocated_rows++; - } - } - - // Reload table data - $(table).bootstrapTable('load', bom_items); - - // Find the top-level progress bar for this build output - var output_progress_bar = $(`#output-progress-${outputId}`); - - if (output_progress_bar.exists()) { - if (bom_items.length > 0) { - output_progress_bar.html( - makeProgressBar( - allocated_rows, - bom_items.length, - { - max_width: '150px', - } - ) - ); - } - } else { - console.warn(`Could not find progress bar for output '${outputId}'`); - } - } - - function reloadAllocationData(async=true) { - // Reload stock allocation data for this particular build output - - inventreeGet( - '{% url "api-build-item-list" %}', - { - build: buildId, - part_detail: true, - location_detail: true, - output: output == null ? null : output.pk, - }, - { - async: async, - success: function(response) { - allocated_items = response; - - redrawAllocationData(); - - } - } - ); - } - - if (allocated_items == null) { - // No allocation data provided? Request from server (blocking) - reloadAllocationData(false); - } else { - redrawAllocationData(); - } - - function requiredQuantity(row) { - // Return the required quantity for a given row - - var quantity = 0; - - if (output) { - // "Tracked" parts are calculated against individual build outputs - quantity = row.quantity * output.quantity; - } else { - // "Untracked" parts are specified against the build itself - quantity = row.quantity * buildInfo.quantity; - } - - // Store the required quantity in the row data - // Prevent weird rounding issues - row.required = formatDecimal(quantity, 15); - return row.required; - } - - function availableQuantity(row) { - // Return the total available stock for a given row - - // Base stock - var available = row.available_stock; - - // Substitute stock - available += (row.available_substitute_stock || 0); - - // Variant stock - if (row.allow_variants) { - available += (row.available_variant_stock || 0); - } - - return available; - } - - function allocatedQuantity(row) { - row.allocated = sumAllocationsForBomRow(row, allocated_items); - return row.allocated; - } - - function isRowFullyAllocated(row) { - return allocatedQuantity(row) >= requiredQuantity(row); - } - - function setupCallbacks() { - // Register button callbacks once table data are loaded - - // Callback for 'allocate' button - $(table).find('.button-add').click(function() { - - // Primary key of the 'sub_part' - var pk = $(this).attr('pk'); - - // Extract BomItem information from this row - var row = $(table).bootstrapTable('getRowByUniqueId', pk); - - if (!row) { - console.warn('getRowByUniqueId returned null'); - return; - } - - allocateStockToBuild( - buildId, - partId, - [ - row, - ], - { - source_location: buildInfo.source_location, - success: function(data) { - // $(table).bootstrapTable('refresh'); - reloadAllocationData(); - }, - output: output == null ? null : output.pk, - } - ); - }); - - // Callback for 'buy' button - $(table).find('.button-buy').click(function() { - - var pk = $(this).attr('pk'); - - inventreeGet( - `/api/part/${pk}/`, - {}, - { - success: function(part) { - orderParts( - [part], - {} - ); - } - } - ); - }); - - // Callback for 'build' button - $(table).find('.button-build').click(function() { - var pk = $(this).attr('pk'); - - // Extract row data from the table - var idx = $(this).closest('tr').attr('data-index'); - var row = $(table).bootstrapTable('getData')[idx]; - - newBuildOrder({ - part: pk, - parent: buildId, - quantity: requiredQuantity(row) - allocatedQuantity(row), - }); - }); - - // Callback for 'unallocate' button - $(table).find('.button-unallocate').click(function() { - - // Extract row data from the table - var idx = $(this).closest('tr').attr('data-index'); - var row = $(table).bootstrapTable('getData')[idx]; - - unallocateStock(buildId, { - bom_item: row.pk, - output: outputId == 'untracked' ? null : outputId, - table: table, - onSuccess: function(response, opts) { - reloadAllocationData(); - } - }); - }); - } - - // Load table of BOM items - $(table).inventreeTable({ - data: bom_items, - disablePagination: true, - formatNoMatches: function() { - return '{% trans "No BOM items found" %}'; - }, - name: 'build-allocation', - uniqueId: 'sub_part', - search: options.search || false, - queryParams: filters, - original: options.params, - onRefresh: function(data) { - filterBuildAllocationTable(filters); - }, - onPostBody: function(data) { - // Setup button callbacks - setupCallbacks(); - }, - sortable: true, - showColumns: true, - detailView: true, - detailFilter: function(index, row) { - return allocatedQuantity(row) > 0; - }, - buttons: constructExpandCollapseButtons(table), - detailFormatter: function(index, row, element) { - // Construct an 'inner table' which shows which stock items have been allocated - - var subTableId = `allocation-table-${outputId}-${row.pk}`; - - var html = `
`; - - element.html(html); - - var subTable = $(`#${subTableId}`); - - subTable.bootstrapTable({ - data: getAllocationsForBomRow(row, allocated_items), - showHeader: true, - columns: [ - { - field: 'part', - title: '{% trans "Part" %}', - formatter: function(value, row) { - - var html = imageHoverIcon(row.part_detail.thumbnail); - html += renderLink(row.part_detail.full_name, `/part/${value}/`); - return html; - } - }, - { - width: '50%', - field: 'quantity', - title: '{% trans "Assigned Stock" %}', - formatter: function(value, row) { - var text = ''; - - var url = ''; - - var serial = row.serial; - - if (row.stock_item_detail) { - serial = row.stock_item_detail.serial; - } - - if (serial && row.quantity == 1) { - text = `{% trans "Serial Number" %}: ${serial}`; - } else { - text = `{% trans "Quantity" %}: ${row.quantity}`; - if (row.part_detail && row.part_detail.units) { - text += ` ${row.part_detail.units}`; - } - } - - var pk = row.stock_item || row.pk; - - url = `/stock/item/${pk}/`; - - return renderLink(text, url); - } - }, - { - field: 'location', - title: '{% trans "Location" %}', - formatter: function(value, row) { - - if (row.location && row.location_detail) { - var text = shortenString(row.location_detail.pathstring); - var url = `/stock/location/${row.location}/`; - - return renderLink(text, url); - } else { - return '{% trans "No location set" %}'; - } - } - }, - { - field: 'actions', - formatter: function(value, row) { - /* Actions available for a particular stock item allocation: - * - * - Edit the allocation quantity - * - Delete the allocation - */ - - var pk = row.pk; - - var html = ''; - - html += makeEditButton('button-allocation-edit', pk, '{% trans "Edit stock allocation" %}'); - - html += makeDeleteButton('button-allocation-delete', pk, '{% trans "Delete stock allocation" %}'); - - return wrapButtons(html); - } - } - ] - }); - - // Assign button callbacks to the newly created allocation buttons - subTable.find('.button-allocation-edit').click(function() { - var pk = $(this).attr('pk'); - - constructForm(`{% url "api-build-item-list" %}${pk}/`, { - fields: { - quantity: {}, - }, - title: '{% trans "Edit Allocation" %}', - onSuccess: reloadAllocationData, - }); - }); - - subTable.find('.button-allocation-delete').click(function() { - var pk = $(this).attr('pk'); - - constructForm(`{% url "api-build-item-list" %}${pk}/`, { - method: 'DELETE', - title: '{% trans "Remove Allocation" %}', - onSuccess: reloadAllocationData, - }); - }); - }, - columns: [ - { - visible: true, - switchable: false, - checkbox: true, - }, - { - field: 'sub_part_detail.full_name', - title: '{% trans "Required Part" %}', - sortable: true, - switchable: false, - formatter: function(value, row) { - var url = `/part/${row.sub_part}/`; - var thumb = row.sub_part_detail.thumbnail; - var name = row.sub_part_detail.full_name; - - var html = imageHoverIcon(thumb) + renderLink(name, url); - - html += makePartIcons(row.sub_part_detail); - - if (row.substitutes && row.substitutes.length > 0) { - html += makeIconBadge('fa-exchange-alt', '{% trans "Substitute parts available" %}'); - } - - if (row.allow_variants) { - html += makeIconBadge('fa-sitemap', '{% trans "Variant stock allowed" %}'); - } - - return html; - } - }, - { - field: 'reference', - title: '{% trans "Reference" %}', - sortable: true, - switchable: true, - }, - { - field: 'consumable', - title: '{% trans "Consumable" %}', - sortable: true, - switchable: true, - formatter: function(value) { - return yesNoLabel(value); - } - }, - { - field: 'optional', - title: '{% trans "Optional" %}', - sortable: true, - switchable: true, - formatter: function(value) { - return yesNoLabel(value); - } - }, - { - field: 'quantity', - title: '{% trans "Quantity Per" %}', - sortable: true, - switchable: false, - formatter: function(value, row) { - var text = value; - - if (row.sub_part_detail && row.sub_part_detail.units) { - text += ` ${row.sub_part_detail.units}`; - } - return text; - } - }, - { - field: 'available_stock', - title: '{% trans "Available" %}', - sortable: true, - switchable: true, - formatter: function(value, row) { - - var url = `/part/${row.sub_part_detail.pk}/?display=part-stock`; - - // Calculate total "available" (unallocated) quantity - var substitute_stock = row.available_substitute_stock || 0; - var variant_stock = row.allow_variants ? (row.available_variant_stock || 0) : 0; - - var available_stock = availableQuantity(row); - - var required = requiredQuantity(row); - var allocated = allocatedQuantity(row); - - var text = ''; - - if (available_stock > 0) { - text += `${available_stock}`; - if (row.sub_part_detail && row.sub_part_detail.units) { - text += ` ${row.sub_part_detail.units}`; - } - } - - var icons = ''; - - if (row.consumable) { - icons += ``; - } else { - if (available_stock < (required - allocated)) { - icons += makeIconBadge('fa-times-circle icon-red', '{% trans "Insufficient stock available" %}'); - } else { - icons += makeIconBadge('fa-check-circle icon-green', '{% trans "Sufficient stock available" %}'); - } - - if (available_stock <= 0) { - icons += `{% trans "No Stock Available" %}`; - } else { - let extra = ''; - if ((substitute_stock > 0) && (variant_stock > 0)) { - extra = '{% trans "Includes variant and substitute stock" %}'; - } else if (variant_stock > 0) { - extra = '{% trans "Includes variant stock" %}'; - } else if (substitute_stock > 0) { - extra = '{% trans "Includes substitute stock" %}'; - } - - if (extra) { - icons += makeIconBadge('fa-info-circle icon-blue', extra); - } - } - } - - if (row.on_order && row.on_order > 0) { - icons += makeIconBadge('fa-shopping-cart', '{% trans "On Order" %}: ' + row.on_order); - } - - return renderLink(text, url) + icons; - }, - sorter: function(valA, valB, rowA, rowB) { - - return availableQuantity(rowA) > availableQuantity(rowB) ? 1 : -1; - }, - }, - { - field: 'allocated', - title: '{% trans "Allocated" %}', - sortable: true, - switchable: false, - formatter: function(value, row) { - var required = requiredQuantity(row); - var allocated = row.consumable ? required : allocatedQuantity(row); - var progressbar_text = `${allocated} / ${required}`; - if (row.sub_part_detail && row.sub_part_detail.units) { - progressbar_text += ` ${row.sub_part_detail.units}`; - } - return makeProgressBar(allocated, required, {text: progressbar_text}); - }, - sorter: function(valA, valB, rowA, rowB) { - // Custom sorting function for progress bars - - var aA = allocatedQuantity(rowA); - var aB = allocatedQuantity(rowB); - - var qA = requiredQuantity(rowA); - var qB = requiredQuantity(rowB); - - // Handle the case where both numerators are zero - if ((aA == 0) && (aB == 0)) { - return (qA > qB) ? 1 : -1; - } - - // Handle the case where either denominator is zero - if ((qA == 0) || (qB == 0)) { - return 1; - } - - var progressA = parseFloat(aA) / qA; - var progressB = parseFloat(aB) / qB; - - // Handle the case where both ratios are equal - if (progressA == progressB) { - return (qA > qB) ? 1 : -1; - } - - if (progressA == progressB) return 0; - - return (progressA > progressB) ? 1 : -1; - } - }, - { - field: 'actions', - title: '{% trans "Actions" %}', - switchable: false, - sortable: false, - formatter: function(value, row) { - - if (row.consumable) { - return `{% trans "Consumable item" %}`; - } - - // Generate action buttons for this build output - let html = ''; - - if (allocatedQuantity(row) < requiredQuantity(row)) { - if (row.sub_part_detail.assembly) { - html += makeIconButton('fa-tools icon-blue', 'button-build', row.sub_part, '{% trans "Build stock" %}'); - } - - if (row.sub_part_detail.purchaseable) { - html += makeIconButton('fa-shopping-cart icon-blue', 'button-buy', row.sub_part, '{% trans "Order stock" %}'); - } - - html += makeIconButton('fa-sign-in-alt icon-green', 'button-add', row.sub_part, '{% trans "Allocate stock" %}'); - } - - html += makeRemoveButton( - 'button-unallocate', - row.sub_part, - '{% trans "Unallocate stock" %}', - { - disabled: allocatedQuantity(row) == 0, - } - ); - - return wrapButtons(html); - } - }, - ] - }); - - filterBuildAllocationTable(filters); -} - - - /** * Allocate stock items to a build * * arguments: * - buildId: ID / PK value for the build * - partId: ID / PK value for the part being built - * - bom_items: A list of BomItem objects to be allocated + * - line_items: A list of BuildItem objects to be allocated * * options: * - output: ID / PK of the associated build output (or null for untracked items) * - source_location: ID / PK of the top-level StockLocation to source stock from (or null) */ -function allocateStockToBuild(build_id, part_id, bom_items, options={}) { +function allocateStockToBuild(build_id, line_items, options={}) { - if (bom_items.length == 0) { + if (line_items.length == 0) { showAlertDialog( '{% trans "Select Parts" %}', @@ -2314,7 +1502,22 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { return; } - // ID of the associated "build output" (or null) + let build = null; + + // Extract build information + inventreeGet(`{% url "api-build-list" %}${build_id}/`, {}, { + async: false, + success: function(response) { + build = response; + } + }); + + if (!build) { + console.error(`Failed to find build ${build_id}`); + return; + } + + // ID of the associated "build output" (stock item) (or null) var output_id = options.output || null; var auto_fill_filters = {}; @@ -2324,21 +1527,21 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { if (output_id) { // Request information on the particular build output (stock item) inventreeGet(`{% url "api-stock-list" %}${output_id}/`, {}, { + async: false, success: function(output) { if (output.quantity == 1 && output.serial != null) { auto_fill_filters.serial = output.serial; } }, - async: false, }); } - function renderBomItemRow(bom_item, quantity) { + function renderBuildLineRow(build_line, quantity) { - var pk = bom_item.pk; - var sub_part = bom_item.sub_part_detail; + var pk = build_line.pk; + var sub_part = build_line.part_detail; - var thumb = thumbnailImage(bom_item.sub_part_detail.thumbnail); + var thumb = thumbnailImage(sub_part.thumbnail); var delete_button = `
`; @@ -2365,8 +1568,8 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { ); var allocated_display = makeProgressBar( - bom_item.allocated, - bom_item.required, + build_line.allocated, + build_line.quantity, ); var stock_input = constructField( @@ -2380,8 +1583,6 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { } ); - // var stock_input = constructRelatedFieldInput(`items_stock_item_${pk}`); - var html = ` @@ -2407,16 +1608,16 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { var table_entries = ''; - for (var idx = 0; idx < bom_items.length; idx++) { - var bom_item = bom_items[idx]; + for (var idx = 0; idx < line_items.length; idx++) { + let item = line_items[idx]; // Ignore "consumable" BOM items - if (bom_item.consumable) { + if (item.part_detail.consumable) { continue; } - var required = bom_item.required || 0; - var allocated = bom_item.allocated || 0; + var required = item.quantity || 0; + var allocated = item.allocated || 0; var remaining = required - allocated; if (remaining < 0) { @@ -2428,7 +1629,7 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { // We only care about entries which are not yet fully allocated if (remaining > 0) { - table_entries += renderBomItemRow(bom_item, remaining); + table_entries += renderBuildLineRow(item, remaining); } } @@ -2508,13 +1709,13 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { ); // Initialize stock item fields - bom_items.forEach(function(bom_item) { + line_items.forEach(function(line_item) { initializeRelatedField( { - name: `items_stock_item_${bom_item.pk}`, + name: `items_stock_item_${line_item.pk}`, api_url: '{% url "api-stock-list" %}', filters: { - bom_item: bom_item.pk, + bom_item: line_item.bom_item_detail.pk, in_stock: true, available: true, part_detail: true, @@ -2536,7 +1737,7 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { } // Quantity remaining to be allocated - var remaining = Math.max((bom_item.required || 0) - (bom_item.allocated || 0), 0); + var remaining = Math.max((line_item.quantity || 0) - (line_item.allocated || 0), 0); // Calculate the available quantity var available = Math.max((data.quantity || 0) - (data.allocated || 0), 0); @@ -2544,7 +1745,7 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { // Maximum amount that we need var desired = Math.min(available, remaining); - updateFieldValue(`items_quantity_${bom_item.pk}`, desired, {}, opts); + updateFieldValue(`items_quantity_${line_item.pk}`, desired, {}, opts); }, adjustFilters: function(filters) { // Restrict query to the selected location @@ -2586,7 +1787,7 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { var item_pk_values = []; - bom_items.forEach(function(item) { + line_items.forEach(function(item) { var quantity = getFormFieldValue( `items_quantity_${item.pk}`, @@ -2606,7 +1807,7 @@ function allocateStockToBuild(build_id, part_id, bom_items, options={}) { if (quantity != null) { data.items.push({ - bom_item: item.pk, + build_line: item.pk, stock_item: stock_item, quantity: quantity, output: output_id, @@ -2857,6 +2058,18 @@ function loadBuildTable(table, options) { title: '{% trans "Description" %}', switchable: true, }, + { + field: 'project_code', + title: '{% trans "Project Code" %}', + sortable: true, + switchable: global_settings.PROJECT_CODES_ENABLED, + visible: global_settings.PROJECT_CODES_ENABLED, + formatter: function(value, row) { + if (row.project_code_detail) { + return `${row.project_code_detail.code}`; + } + } + }, { field: 'priority', title: '{% trans "Priority" %}', @@ -2960,9 +2173,6 @@ function loadBuildTable(table, options) { customView: function(data) { return `
`; }, - onRefresh: function() { - loadBuildTable(table, options); - }, onLoadSuccess: function() { if (tree_enable) { @@ -2995,13 +2205,6 @@ function loadBuildTable(table, options) { } } }); - - linkButtonsToSelection( - table, - [ - '#build-print-options', - ] - ); } @@ -3023,91 +2226,439 @@ function updateAllocationTotal(id, count, required) { } } -function loadAllocationTable(table, part_id, part, url, required, button) { +/* + * Render a table of BuildItem objects, which are allocated against a particular BuildLine + */ +function renderBuildLineAllocationTable(element, build_line, options={}) { - // Load the allocation table - table.bootstrapTable({ - url: url, - sortable: false, - formatNoMatches: function() { - return '{% trans "No parts allocated for" %} ' + part; - }, + let output = options.output || 'untracked'; + let tableId = `allocation-table-${output}-${build_line.pk}`; + + // Construct a table element + let html = ` +
+
+
`; + + element.html(html); + + let sub_table = $(`#${tableId}`); + + // Load the allocation items into the table + sub_table.bootstrapTable({ + data: build_line.allocations, + showHeader: false, columns: [ { - field: 'stock_item_detail', - title: '{% trans "Stock Item" %}', - formatter: function(value) { - return '' + parseFloat(value.quantity) + ' x ' + value.part_name + ' @ ' + value.location_name; - } - }, - { - field: 'stock_item_detail.quantity', - title: '{% trans "Available" %}', - formatter: function(value) { - return parseFloat(value); + field: 'part', + title: '{% trans "Part" %}', + formatter: function(_value, row) { + let html = imageHoverIcon(row.part_detail.thumbnail); + html += renderLink(row.part_detail.full_name, `/part/${row.part_detail.pk}/`); + return html; } }, { field: 'quantity', - title: '{% trans "Allocated" %}', + title: '{% trans "Allocated Quantity" %}', + formatter: function(_value, row) { + let text = ''; + let url = ''; + let serial = row.serial; + + if (row.stock_item_detail) { + serial = row.stock_item_detail.serial; + } + + if (serial && row.quantity == 1) { + text = `{% trans "Serial Number" %}: ${serial}`; + } else { + text = `{% trans "Quantity" %}: ${row.quantity}`; + if (row.part_detail && row.part_detail.units) { + text += ` ${row.part_detail.units}`; + } + } + + var pk = row.stock_item || row.pk; + + url = `/stock/item/${pk}/`; + + return renderLink(text, url); + } + }, + { + field: 'location', + title: '{% trans "Location" %}', formatter: function(value, row) { - var html = parseFloat(value); + if (row.location_detail) { + let text = shortenString(row.location_detail.pathstring); + let url = `/stock/location/${row.location_detail.pk}/`; - var bEdit = ``; - var bDel = ``; - - html += ` -
- ${bEdit} - ${bDel} -
- `; - - return html; + return renderLink(text, url); + } else { + return '{% trans "No location set" %}'; + } + } + }, + { + field: 'actions', + title: '', + formatter: function(value, row) { + let buttons = ''; + buttons += makeEditButton('button-allocation-edit', row.pk, '{% trans "Edit stock allocation" %}'); + buttons += makeDeleteButton('button-allocation-delete', row.pk, '{% trans "Delete stock allocation" %}'); + return wrapButtons(buttons); } } - ], + ] }); - // Callback for 'new-item' button - button.click(function() { - launchModalForm(button.attr('url'), { - success: function() { - table.bootstrapTable('refresh'); + // Callbacks + $(sub_table).on('click', '.button-allocation-edit', function() { + let pk = $(this).attr('pk'); + + constructForm(`{% url "api-build-item-list" %}${pk}/`, { + fields: { + quantity: {}, + }, + title: '{% trans "Edit Allocation" %}', + onSuccess: function() { + $(options.parent_table).bootstrapTable('refresh'); }, }); }); - table.on('load-success.bs.table', function() { - // Extract table data - var results = table.bootstrapTable('getData'); + $(sub_table).on('click', '.button-allocation-delete', function() { + let pk = $(this).attr('pk'); - var count = 0; + constructForm(`{% url "api-build-item-list" %}${pk}/`, { + method: 'DELETE', + title: '{% trans "Remove Allocation" %}', + onSuccess: function() { + $(options.parent_table).bootstrapTable('refresh'); + }, + }); + }); +} - for (var i = 0; i < results.length; i++) { - count += parseFloat(results[i].quantity); - } - updateAllocationTotal(part_id, count, required); +/* + * Load a table of BuildLine objects associated with a Build + * + * @param {int} build_id - The ID of the Build object + * @param {object} options - Options for the table + */ +function loadBuildLineTable(table, build_id, options={}) { + + let name = 'build-lines'; + let params = options.params || {}; + let output = options.output; + + params.build = build_id; + + if (output) { + params.output = output; + name += `-${output}`; + } else { + // Default to untracked parts for the build + params.tracked = false; + } + + let filters = loadTableFilters('buildlines', params); + let filterTarget = options.filterTarget || '#filter-list-buildlines'; + + // If data is passed directly to this function, do not setup filters + if (!options.data) { + setupFilterList('buildlines', $(table), filterTarget, { + labels: { + url: '{% url "api-buildline-label-list" %}', + key: 'line', + }, + singular_name: '{% trans "build line" %}', + plural_name: '{% trans "build lines" %}', + }); + } + + let table_options = { + name: name, + uniqueId: 'pk', + detailView: true, + detailFilter: function(index, row) { + // Detail view is available if there is any allocated stock + return row.allocated > 0; + }, + detailFormatter: function(_index, row, element) { + renderBuildLineAllocationTable(element, row, { + parent_table: table, + }); + }, + formatNoMatches: function() { + return '{% trans "No build lines found" %}'; + }, + columns: [ + { + checkbox: true, + title: '{% trans "Select" %}', + searchable: false, + switchable: false, + }, + { + field: 'bom_item', + title: '{% trans "Required Part" %}', + switchable: false, + sortable: true, + sortName: 'part', + formatter: function(value, row) { + if (value == null) { + return `BOM item deleted`; + } + + let html = ''; + + // Part thumbnail + html += imageHoverIcon(row.part_detail.thumbnail) + renderLink(row.part_detail.full_name, `/part/${row.part_detail.pk}/`); + + if (row.bom_item_detail.allow_variants) { + html += makeIconBadge('fa-sitemap', '{% trans "Variant stock allowed" %}'); + } + + if (row.part_detail.trackable) { + html += makeIconBadge('fa-directions', '{% trans "Trackable part" %}'); + } + + return html; + } + }, + { + field: 'reference', + title: '{% trans "Reference" %}', + sortable: true, + formatter: function(value, row) { + return row.bom_item_detail.reference; + } + }, + { + field: 'consumable', + title: '{% trans "Consumable" %}', + sortable: true, + switchable: true, + formatter: function(value, row) { + return yesNoLabel(row.bom_item_detail.consumable); + } + }, + { + field: 'optional', + title: '{% trans "Optional" %}', + sortable: true, + switchable: true, + formatter: function(value, row) { + return yesNoLabel(row.bom_item_detail.optional); + } + }, + { + field: 'unit_quantity', + sortable: true, + title: '{% trans "Unit Quantity" %}', + formatter: function(value, row) { + let text = row.bom_item_detail.quantity; + + if (row.bom_item_detail.overage) { + text += ` (+${row.bom_item_detail.overage})`; + } + + if (row.part_detail.units) { + text += ` [${row.part_detail.units}]`; + } + + return text; + } + }, + { + field: 'quantity', + title: '{% trans "Required Quantity" %}', + sortable: true, + }, + { + field: 'available_stock', + title: '{% trans "Available" %}', + sortable: true, + formatter: function(value, row) { + var url = `/part/${row.part_detail.pk}/?display=part-stock`; + // Calculate the "available" quantity + let available = row.available_stock + row.available_substitute_stock; + + if (row.bom_item_detail.allow_variants) { + available += row.available_variant_stock; + } + + let text = ''; + + if (available > 0) { + text += `${formatDecimal(available)}`; + + if (row.part_detail.units) { + text += ` [${row.part_detail.units}]`; + } + } + + let icons = ''; + + if (row.bom_item_detail.consumable) { + icons += ``; + } else { + if (available < (row.quantity - row.allocated)) { + icons += makeIconBadge('fa-times-circle icon-red', '{% trans "Insufficient stock available" %}'); + } else { + icons += makeIconBadge('fa-check-circle icon-green', '{% trans "Sufficient stock available" %}'); + } + + if (available <= 0) { + icons += `{% trans "No Stock Available" %}`; + } else { + let extra = ''; + if ((row.available_substitute_stock > 0) && (row.available_variant_stock > 0)) { + extra = '{% trans "Includes variant and substitute stock" %}'; + } else if (row.available_variant_stock > 0) { + extra = '{% trans "Includes variant stock" %}'; + } else if (row.available_substitute_stock > 0) { + extra = '{% trans "Includes substitute stock" %}'; + } + + if (extra) { + icons += makeIconBadge('fa-info-circle icon-blue', extra); + } + } + } + + if (row.on_order && row.on_order > 0) { + icons += makeIconBadge('fa-shopping-cart', `{% trans "On Order" %}: ${formatDecimal(row.on_order)}`); + } + + return renderLink(text, url) + icons; + } + }, + { + field: 'allocated', + title: '{% trans "Allocated" %}', + sortable: true, + formatter: function(value, row) { + return makeProgressBar(row.allocated, row.quantity); + } + }, + { + field: 'actions', + title: '', + switchable: false, + sortable: false, + formatter: function(value, row) { + let buttons = ''; + let pk = row.pk; + + // Consumable items do not need to be allocated + if (row.bom_item_detail.consumable) { + return `{% trans "Consumable Item" %}`; + } + + if (row.part_detail.trackable && !options.output) { + // Tracked parts must be allocated to a specific build output + return `{% trans "Tracked item" %}`; + } + + if (row.allocated < row.quantity) { + + // Add a button to "build" stock for this line + if (row.part_detail.assembly) { + buttons += makeIconButton('fa-tools icon-blue', 'button-build', pk, '{% trans "Build stock" %}'); + } + + // Add a button to "purchase" stock for this line + if (row.part_detail.purchaseable) { + buttons += makeIconButton('fa-shopping-cart icon-blue', 'button-buy', pk, '{% trans "Order stock" %}'); + } + + // Add a button to "allocate" stock for this line + buttons += makeIconButton('fa-sign-in-alt icon-green', 'button-allocate', pk, '{% trans "Allocate stock" %}'); + } + + if (row.allocated > 0) { + buttons += makeRemoveButton('button-unallocate', pk, '{% trans "Remove stock allocation" %}'); + } + + return wrapButtons(buttons); + } + } + ] + }; + + if (options.data) { + Object.assign(table_options, { + data: options.data, + sidePagination: 'client', + showColumns: false, + pagination: false, + disablePagination: true, + search: false, + }); + } else { + Object.assign(table_options, { + url: '{% url "api-build-line-list" %}', + queryParams: filters, + original: params, + search: true, + sidePagination: 'server', + pagination: true, + showColumns: true, + buttons: constructExpandCollapseButtons(table), + }); + } + + $(table).inventreeTable(table_options); + + /* Add callbacks for allocation buttons */ + + // Callback to build stock + $(table).on('click', '.button-build', function() { + let pk = $(this).attr('pk'); + let row = $(table).bootstrapTable('getRowByUniqueId', pk); + + // Start a new "build" for this line + newBuildOrder({ + part: row.part_detail.pk, + parent: build_id, + quantity: Math.max(row.quantity - row.allocated, 0), + }); }); - // Button callbacks for editing and deleting the allocations - table.on('click', '.item-edit-button', function() { - var button = $(this); + // Callback to purchase stock + $(table).on('click', '.button-buy', function() { + let pk = $(this).attr('pk'); + let row = $(table).bootstrapTable('getRowByUniqueId', pk); - launchModalForm(button.attr('url'), { + // TODO: Refresh table after purchase order is created + orderParts([row.part_detail], {}); + }); + + // Callback to allocate stock + $(table).on('click', '.button-allocate', function() { + let pk = $(this).attr('pk'); + let row = $(table).bootstrapTable('getRowByUniqueId', pk); + + allocateStockToBuild(build_id, [row], { + output: options.output, success: function() { - table.bootstrapTable('refresh'); + $(table).bootstrapTable('refresh'); } }); }); - table.on('click', '.item-del-button', function() { - var button = $(this); + // Callback to un-allocate stock + $(table).on('click', '.button-unallocate', function() { + let pk = $(this).attr('pk'); - launchModalForm(button.attr('url'), { - success: function() { - table.bootstrapTable('refresh'); + deallocateStock(build_id, { + build_line: pk, + onSuccess: function() { + $(table).bootstrapTable('refresh'); } }); }); diff --git a/InvenTree/templates/js/translated/company.js b/InvenTree/templates/js/translated/company.js index 44fad80b8d..d49ad7465e 100644 --- a/InvenTree/templates/js/translated/company.js +++ b/InvenTree/templates/js/translated/company.js @@ -1,42 +1,52 @@ {% load i18n %} /* globals + clearFormErrors, constructLabel, constructForm, + enableSubmitButton, formatCurrency, formatDecimal, formatDate, + handleFormErrors, handleFormSuccess, imageHoverIcon, inventreeGet, inventreePut, + hideFormInput, loadTableFilters, makeDeleteButton, makeEditButton, makeIconBadge, + orderParts, renderClipboard, renderDate, renderLink, renderPart, setupFilterList, + showFormInput, thumbnailImage, wrapButtons, */ /* exported + createAddress, createCompany, createContact, createManufacturerPart, createSupplierPart, createSupplierPartPriceBreak, + deleteAddress, deleteContacts, deleteManufacturerParts, deleteManufacturerPartParameters, deleteSupplierParts, duplicateSupplierPart, + editAddress, editCompany, editContact, editSupplierPartPriceBreak, + loadAddressTable, loadCompanyTable, loadContactTable, loadManufacturerPartTable, @@ -401,9 +411,6 @@ function companyFormFields() { website: { icon: 'fa-globe', }, - address: { - icon: 'fa-envelope', - }, currency: { icon: 'fa-dollar-sign', }, @@ -782,6 +789,324 @@ function loadContactTable(table, options={}) { }); } +/* + * Construct a set of form fields for the Address model + */ +function addressFields(options={}) { + + let fields = { + company: { + icon: 'fa-building', + }, + primary: { + onEdit: function(val, name, field, opts) { + + if (val === false) { + + hideFormInput("confirm_primary", opts); + $('#id_confirm_primary').prop("checked", false); + clearFormErrors(opts); + enableSubmitButton(opts, true); + + } else if (val === true) { + + showFormInput("confirm_primary", opts); + if($('#id_confirm_primary').prop("checked") === false) { + handleFormErrors({'confirm_primary': 'WARNING: Setting this address as primary will remove primary flag from other addresses'}, field, {}); + enableSubmitButton(opts, false); + } + } + } + }, + confirm_primary: { + help_text: "Confirm", + onEdit: function(val, name, field, opts) { + + if (val === true) { + + clearFormErrors(opts); + enableSubmitButton(opts, true); + + } else if (val === false) { + + handleFormErrors({'confirm_primary': 'WARNING: Setting this address as primary will remove primary flag from other addresses'}, field, {}); + enableSubmitButton(opts, false); + } + }, + css: { + display: 'none' + } + }, + title: {}, + line1: { + icon: 'fa-map' + }, + line2: { + icon: 'fa-map', + }, + postal_code: { + icon: 'fa-map-pin', + }, + postal_city: { + icon: 'fa-city' + }, + province: { + icon: 'fa-map' + }, + country: { + icon: 'fa-map' + }, + shipping_notes: { + icon: 'fa-shuttle-van' + }, + internal_shipping_notes: { + icon: 'fa-clipboard' + }, + link: { + icon: 'fa-link' + } + }; + + if (options.company) { + fields.company.value = options.company; + } + + return fields; +} + +/* + * Launches a form to create a new Address + */ +function createAddress(options={}) { + let fields = options.fields || addressFields(options); + + constructForm('{% url "api-address-list" %}', { + method: 'POST', + fields: fields, + title: '{% trans "Create New Address" %}', + onSuccess: function(response) { + handleFormSuccess(response, options); + } + }); +} + +/* + * Launches a form to edit an existing Address + */ +function editAddress(pk, options={}) { + let fields = options.fields || addressFields(options); + + constructForm(`{% url "api-address-list" %}${pk}/`, { + fields: fields, + title: '{% trans "Edit Address" %}', + onSuccess: function(response) { + handleFormSuccess(response, options); + } + }); +} + +/* + * Launches a form to delete one (or more) addresses + */ +function deleteAddress(addresses, options={}) { + + if (addresses.length == 0) { + return; + } + + function renderAddress(address) { + return ` + + ${address.title} + ${address.line1} + ${address.line2} + `; + } + + let rows = ''; + let ids = []; + + addresses.forEach(function(address) { + rows += renderAddress(address); + ids.push(address.pk); + }); + + let html = ` +
+ {% trans "All selected addresses will be deleted" %} +
+ + + + + + + ${rows} +
{% trans "Name" %}{% trans "Line 1" %}{% trans "Line 2" %}
`; + + constructForm('{% url "api-address-list" %}', { + method: 'DELETE', + multi_delete: true, + title: '{% trans "Delete Addresses" %}', + preFormContent: html, + form_data: { + items: ids, + }, + onSuccess: function(response) { + handleFormSuccess(response, options); + } + }); +} + +function loadAddressTable(table, options={}) { + var params = options.params || {}; + + var filters = loadTableFilters('address', params); + + setupFilterList('address', $(table), '#filter-list-addresses'); + + $(table).inventreeTable({ + url: '{% url "api-address-list" %}', + queryParams: filters, + original: params, + idField: 'pk', + uniqueId: 'pk', + sidePagination: 'server', + sortable: true, + formatNoMatches: function() { + return '{% trans "No addresses found" %}'; + }, + showColumns: true, + name: 'addresses', + columns: [ + { + field: 'primary', + title: '{% trans "Primary" %}', + switchable: false, + formatter: function(value) { + let checked = ''; + if (value == true) { + checked = 'checked="checked"'; + } + return ``; + } + }, + { + field: 'title', + title: '{% trans "Title" %}', + sortable: true, + switchable: false, + }, + { + field: 'line1', + title: '{% trans "Line 1" %}', + sortable: false, + switchable: false, + }, + { + field: 'line2', + title: '{% trans "Line 2" %}', + sortable: false, + switchable: false, + }, + { + field: 'postal_code', + title: '{% trans "Postal code" %}', + sortable: false, + switchable: false, + }, + { + field: 'postal_city', + title: '{% trans "Postal city" %}', + sortable: false, + switchable: false, + }, + { + field: 'province', + title: '{% trans "State/province" %}', + sortable: false, + switchable: false, + }, + { + field: 'country', + title: '{% trans "Country" %}', + sortable: false, + switchable: false, + }, + { + field: 'shipping_notes', + title: '{% trans "Courier notes" %}', + sortable: false, + switchable: true, + }, + { + field: 'internal_shipping_notes', + title: '{% trans "Internal notes" %}', + sortable: false, + switchable: true, + }, + { + field: 'link', + title: '{% trans "External Link" %}', + sortable: false, + switchable: true, + }, + { + field: 'actions', + title: '', + sortable: false, + switchable: false, + visible: options.allow_edit || options.allow_delete, + formatter: function(value, row) { + var pk = row.pk; + + let html = ''; + + if (options.allow_edit) { + html += makeEditButton('btn-address-edit', pk, '{% trans "Edit Address" %}'); + } + + if (options.allow_delete) { + html += makeDeleteButton('btn-address-delete', pk, '{% trans "Delete Address" %}'); + } + + return wrapButtons(html); + } + } + ], + onPostBody: function() { + // Edit button callback + if (options.allow_edit) { + $(table).find('.btn-address-edit').click(function() { + var pk = $(this).attr('pk'); + editAddress(pk, { + onSuccess: function() { + $(table).bootstrapTable('refresh'); + } + }); + }); + } + + // Delete button callback + if (options.allow_delete) { + $(table).find('.btn-address-delete').click(function() { + var pk = $(this).attr('pk'); + + var row = $(table).bootstrapTable('getRowByUniqueId', pk); + + if (row && row.pk) { + + deleteAddress([row], { + onSuccess: function() { + $(table).bootstrapTable('refresh'); + } + }); + } + }); + } + } + }); +} /* Delete one or more ManufacturerPart objects from the database. * - User will be provided with a modal form, showing all the parts to be deleted. @@ -889,6 +1214,43 @@ function deleteManufacturerPartParameters(selections, options={}) { } +// Construct a set of actions for the manufacturer part table +function makeManufacturerPartActions(options={}) { + return [ + { + label: 'order', + title: '{% trans "Order parts" %}', + icon: 'fa-shopping-cart', + permission: 'purchase_order.add', + callback: function(data) { + let parts = []; + + data.forEach(function(item) { + let part = item.part_detail; + part.manufacturer_part = item.pk; + parts.push(part); + }); + + orderParts(parts); + }, + }, + { + label: 'delete', + title: '{% trans "Delete manufacturer parts" %}', + icon: 'fa-trash-alt icon-red', + permission: 'purchase_order.delete', + callback: function(data) { + deleteManufacturerParts(data, { + success: function() { + $('#manufacturer-part-table').bootstrapTable('refresh'); + } + }); + }, + } + ]; +} + + /* * Load manufacturer part table */ @@ -902,7 +1264,18 @@ function loadManufacturerPartTable(table, url, options) { var filterTarget = options.filterTarget || '#filter-list-manufacturer-part'; - setupFilterList('manufacturer-part', $(table), filterTarget); + setupFilterList('manufacturer-part', $(table), filterTarget, { + custom_actions: [ + { + label: 'manufacturer-part', + title: '{% trans "Manufacturer part actions" %}', + icon: 'fa-tools', + actions: makeManufacturerPartActions({ + manufacturer_id: options.params.manufacturer, + }) + } + ] + }); $(table).inventreeTable({ url: url, @@ -1129,6 +1502,43 @@ function loadManufacturerPartParameterTable(table, url, options) { } +// Construct a set of actions for the supplier part table +function makeSupplierPartActions(options={}) { + return [ + { + label: 'order', + title: '{% trans "Order parts" %}', + icon: 'fa-shopping-cart', + permission: 'purchase_order.add', + callback: function(data) { + let parts = [] + + data.forEach(function(entry) { + parts.push(entry.part_detail); + }); + + orderParts(parts, { + supplier: options.supplier_id, + }); + }, + }, + { + label: 'delete', + title: '{% trans "Delete supplier parts" %}', + icon: 'fa-trash-alt icon-red', + permission: 'purchase_order.delete', + callback: function(data) { + deleteSupplierParts(data, { + success: function() { + $('#supplier-part-table').bootstrapTable('refresh'); + } + }); + }, + } + ]; +} + + /* * Load supplier part table */ @@ -1140,7 +1550,18 @@ function loadSupplierPartTable(table, url, options) { // Load filters var filters = loadTableFilters('supplierpart', params); - setupFilterList('supplierpart', $(table)); + setupFilterList('supplierpart', $(table), '#filter-list-supplier-part', { + custom_actions: [ + { + label: 'supplier-part', + title: '{% trans "Supplier part actions" %}', + icon: 'fa-tools', + actions: makeSupplierPartActions({ + supplier_id: options.params.supplier, + }), + } + ] + }); $(table).inventreeTable({ url: url, diff --git a/InvenTree/templates/js/translated/filters.js b/InvenTree/templates/js/translated/filters.js index 767796a056..51fcc265b6 100644 --- a/InvenTree/templates/js/translated/filters.js +++ b/InvenTree/templates/js/translated/filters.js @@ -1,6 +1,7 @@ {% load i18n %} /* globals + checkPermission, downloadTableData, getAvailableTableFilters, getTableData, @@ -73,8 +74,7 @@ function loadTableFilters(tableKey, query={}) { }); // Override configurable filters with hard-coded query - Object.assign(filters, query); - + filters = Object.assign(filters, query); return filters; } @@ -266,6 +266,102 @@ function generateFilterInput(tableKey, filterKey) { } +/* + * Construct a single action button based on the provided definition + */ +function makeFilterActionButton(button, options={}) { + let prefix = options.prefix || 'action'; + + // Check for required permission (if specified) + if (button.permission) { + if (!checkPermission(button.permission)) { + return ''; + } + } + + return ` +
  • + ${button.title} +
  • `; +} + + +/* + * Construct a set of custom actions for a given table + */ +function makeCustomActionGroup(action_group, table) { + + let buttons = []; + let label = action_group.label || 'actions'; + let title = action_group.title || '{% trans "Actions" %}'; + let icon = action_group.icon || 'fa-tools'; + + // Construct the HTML for each button + action_group.actions.forEach(function(action) { + buttons.push(makeFilterActionButton(action, {prefix: label})); + }); + + if (buttons.length == 0) { + // Don't display anything if there are no buttons to show + return ''; + } + + let html = ` +
    + +
    `; + return html; +} + + +/* + * Construct a set of custom barcode actions for a given table + * + * To define barcode actions for a data table, use options.barcode_actions + */ +function makeBarcodeActions(barcode_actions, table) { + + let html = ` +
    + +
    `; + + return html; +} + + +/* + * Add callbacks for custom actions + */ +function addFilterActionCallbacks(element, label, table, actions) { + actions.forEach(function(action) { + let id = `action-${label}-${action.label}`; + element.find(`#${id}`).click(function() { + let data = getTableData(table); + action.callback(data); + }); + }); +} + + /* * Helper function to make a 'filter' style button */ @@ -315,6 +411,19 @@ function setupFilterList(tableKey, table, target, options={}) { let report_button = options.report && global_settings.REPORT_ENABLE; let labels_button = options.labels && global_settings.LABEL_ENABLE; + let barcode_actions = options.barcode_actions && global_settings.BARCODE_ENABLE; + + // Add in "custom" actions first (to the left of the table buttons) + if (options.custom_actions) { + options.custom_actions.forEach(function(action_group) { + buttons += makeCustomActionGroup(action_group, table); + }); + } + + // Add in button for custom barcode actions + if (barcode_actions) { + buttons += makeBarcodeActions(options.barcode_actions, table); + } if (report_button || labels_button) { let print_buttons = ` @@ -378,9 +487,9 @@ function setupFilterList(tableKey, table, target, options={}) { `); for (var key in filters) { - var value = getFilterOptionValue(tableKey, key, filters[key]); - var title = getFilterTitle(tableKey, key); - var description = getFilterDescription(tableKey, key); + let value = getFilterOptionValue(tableKey, key, filters[key]); + let title = getFilterTitle(tableKey, key); + let description = getFilterDescription(tableKey, key); var filter_tag = `
    @@ -394,6 +503,19 @@ function setupFilterList(tableKey, table, target, options={}) { element.append(filter_tag); } + // Callback for custom actions + if (options.custom_actions) { + options.custom_actions.forEach(function(action_group) { + let label = action_group.label || 'actions'; + addFilterActionCallbacks(element, label, table, action_group.actions); + }); + } + + // Callback for barcode actions + if (barcode_actions) { + addFilterActionCallbacks(element, 'barcode', table, options.barcode_actions); + } + // Callback for printing reports if (options.report && global_settings.REPORT_ENABLE) { element.find(`#print-report-${tableKey}`).click(function() { diff --git a/InvenTree/templates/js/translated/forms.js b/InvenTree/templates/js/translated/forms.js index 4efde8f1bd..950fec6a5d 100644 --- a/InvenTree/templates/js/translated/forms.js +++ b/InvenTree/templates/js/translated/forms.js @@ -2225,7 +2225,16 @@ function constructField(name, parameters, options={}) { hover_title = ` title='${parameters.help_text}'`; } - html += `
    `; + var css = ''; + + if (parameters.css) { + let str = Object.keys(parameters.css).map(function(key) { + return `${key}: ${parameters.css[key]};`; + }) + css = ` style="${str}"`; + } + + html += `
    `; // Add a label if (!options.hideLabels) { diff --git a/InvenTree/templates/js/translated/index.js b/InvenTree/templates/js/translated/index.js new file mode 100644 index 0000000000..3fe010457c --- /dev/null +++ b/InvenTree/templates/js/translated/index.js @@ -0,0 +1,140 @@ +{% load i18n %} + +/* globals + addSidebarHeader, + addSidebarItem, + checkPermission, + global_settings, + imageHoverIcon, + makeProgressBar, + renderLink, + shortenString, + user_settings, + withTitle, +*/ + +/* exported + addHeaderAction, + addHeaderTitle, +*/ + + +/* + * Add a 'header title' to the index sidebar + */ +function addHeaderTitle(title) { + addSidebarHeader({ + text: title, + }); +} + + +function addHeaderAction(label, title, icon, options) { + + // Construct a "badge" to add to the sidebar item + var badge = ` + + + + `; + + addSidebarItem({ + label: label, + text: title, + icon: icon, + content_after: badge + }); + + // Add a detail item to the detail item-panel + $("#detail-panels").append( + `
    +
    +

    ${title}

    +
    +
    +
    +
    +
    ` + ); + + let table_name = `#table-${label}`; + + // Connect a callback to the table + $(table_name).on('load-success.bs.table', function(data) { + + let options = $(table_name).bootstrapTable('getOptions'); + + let count = options.totalRows; + + if (count == undefined || count == null) { + let data = $(table_name).bootstrapTable('getData'); + count = data.length; + } + + let badge = $(`#sidebar-badge-${label}`); + + badge.html(count); + + if (count > 0) { + badge.removeClass('bg-dark'); + badge.addClass('bg-primary'); + } + }); +} + + +/* + * Load a table displaying parts which are outstanding for builds + */ +function loadRequiredForBuildsPartsTable(table, options={}) { + let name = 'parts-required-for-builds'; + + let params = { + stock_to_build: true, + }; + + $(table).inventreeTable({ + url: '{% url "api-part-list" %}', + queryParams: params, + name: name, + showColumns: false, + search: false, + sortable: false, + formatNoMatches: function() { + return '{% trans "No parts required for builds" %}'; + }, + columns: [ + { + field: 'name', + title: '{% trans "Part" %}', + formatter: function(value, row) { + let name = shortenString(row.full_name); + let display= imageHoverIcon(row.thumbnail) + renderLink(name, `/part/${row.pk}/`); + + return withTitle(display, row.full_name); + } + }, + { + field: 'description', + title: '{% trans "Description" %}', + }, + { + field: 'total_in_stock', + title: '{% trans "Available" %}', + formatter: function(value, row) { + return value; + } + }, + { + field: 'allocated_to_build_orders', + title: '{% trans "Allocated Stock" %}', + formatter: function(_value, row) { + return makeProgressBar( + row.allocated_to_build_orders, + row.required_for_build_orders, + ); + } + }, + ] + }); +} diff --git a/InvenTree/templates/js/translated/model_renderers.js b/InvenTree/templates/js/translated/model_renderers.js index e610b5531c..810adf32cb 100644 --- a/InvenTree/templates/js/translated/model_renderers.js +++ b/InvenTree/templates/js/translated/model_renderers.js @@ -14,6 +14,7 @@ renderBuild, renderCompany, renderContact, + renderAddress, renderGroup, renderManufacturerPart, renderOwner, @@ -52,6 +53,8 @@ function getModelRenderer(model) { return renderCompany; case 'contact': return renderContact; + case 'address': + return renderAddress; case 'stockitem': return renderStockItem; case 'stocklocation': @@ -126,15 +129,19 @@ function renderModel(data, options={}) { } } - let text = `${data.text}`; + let text = data.text; + + if (showLink && data.url) { + text = renderLink(text, data.url); + } + + text = `${text}`; if (data.textSecondary) { text += ` - ${data.textSecondary}`; } - if (showLink && data.url) { - text = renderLink(text, data.url); - } + html += text; @@ -173,6 +180,17 @@ function renderContact(data, parameters={}) { } +// Renderer for "Address" model +function renderAddress(data, parameters={}) { + return renderModel( + { + text: [data.title, data.country, data.postal_code, data.postal_city, data.province, data.line1, data.line2].filter(Boolean).join(', '), + }, + parameters + ); +} + + // Renderer for "StockItem" model function renderStockItem(data, parameters={}) { diff --git a/InvenTree/templates/js/translated/part.js b/InvenTree/templates/js/translated/part.js index 20834d272d..46655fa2af 100644 --- a/InvenTree/templates/js/translated/part.js +++ b/InvenTree/templates/js/translated/part.js @@ -23,7 +23,6 @@ inventreeLoad, inventreePut, inventreeSave, - linkButtonsToSelection, loadTableFilters, makeDeleteButton, makeEditButton, @@ -850,6 +849,10 @@ function generateStocktakeReport(options={}) { fields.location = options.location; } + fields.exclude_external = { + value: global_settings.STOCKTAKE_EXCLUDE_EXTERNAL, + }; + if (options.generate_report) { fields.generate_report = options.generate_report; } @@ -1405,6 +1408,7 @@ function createPartParameter(part_id, options={}) { function editPartParameter(param_id, options={}) { options.fields = partParameterFields(); options.title = '{% trans "Edit Parameter" %}'; + options.focus = 'data'; options.processBeforeUpload = function(data) { // Convert data to string @@ -1896,11 +1900,7 @@ function loadRelatedPartsTable(table, part_id, options={}) { options.params.part = part_id; - var filters = {}; - - for (var key in options.params) { - filters[key] = options.params[key]; - } + var filters = Object.assign({}, options.params); setupFilterList('related', $(table), options.filterTarget); @@ -2159,6 +2159,69 @@ function partGridTile(part) { } +/* + * Update the category for a set of parts + */ +function setPartCategory(data, options={}) { + + let parts = []; + + data.forEach(function(item) { + parts.push(item.pk); + }); + + var html = ` +
    + {% trans "Set the part category for the selected parts" %} +
    + `; + + constructForm('{% url "api-part-change-category" %}',{ + title: '{% trans "Set Part Category" %}', + method: 'POST', + preFormContent: html, + fields: { + category: {}, + }, + processBeforeUpload: function(data) { + data.parts = parts; + return data; + }, + onSuccess: function() { + $(options.table).bootstrapTable('refresh'); + } + }); +} + + +/* + * Construct a set of custom actions for the part table + */ +function makePartActions(table) { + + return [ + { + label: 'set-category', + title: '{% trans "Set category" %}', + icon: 'fa-sitemap', + permission: 'part.change', + callback: function(data) { + setPartCategory(data, {table: table}); + } + }, + { + label: 'order', + title: '{% trans "Order parts" %}', + icon: 'fa-shopping-cart', + permission: 'purchase_order.add', + callback: function(data) { + orderParts(data); + }, + } + ] +} + + /* Load part listing data into specified table. * * Args: @@ -2175,22 +2238,37 @@ function loadPartTable(table, url, options={}) { options.params = options.params || {}; + let table_name = options.name || 'parts'; + // Ensure category detail is included options.params['category_detail'] = true; - var params = options.params || {}; + let filters = {}; - var filters = loadTableFilters('parts', options.params); + if (!options.disableFilters) { + filters = loadTableFilters(table_name, options.params); - setupFilterList('parts', $(table), options.filterTarget, { - download: true, - labels: { - url: '{% url "api-part-label-list" %}', - key: 'part', - }, - singular_name: '{% trans "part" %}', - plural_name: '{% trans "parts" %}', - }); + setupFilterList('parts', $(table), options.filterTarget, { + download: true, + labels: { + url: '{% url "api-part-label-list" %}', + key: 'part', + }, + singular_name: '{% trans "part" %}', + plural_name: '{% trans "parts" %}', + custom_actions: [ + { + label: 'parts', + icon: 'fa-tools', + title: '{% trans "Part actions" %}', + actions: makePartActions(table), + } + ] + }); + } + + // Update fields with passed parameters + filters = Object.assign(filters, options.params); var columns = [ { @@ -2294,6 +2372,38 @@ function loadPartTable(table, url, options={}) { }); return text; + }, + footerFormatter: function(data) { + // Display "total" stock quantity of all rendered rows + // Requires that all parts have the same base units! + + let total = 0; + let units = new Set(); + + data.forEach(function(row) { + units.add(row.units || null); + if (row.total_in_stock != null) { + total += row.total_in_stock; + } + }); + + if (data.length == 0) { + return '-'; + } else if (units.size > 1) { + return '-'; + } else { + let output = `${total}`; + + if (units.size == 1) { + let unit = units.values().next().value; + + if (unit) { + output += ` [${unit}]`; + } + } + + return output; + } } }); @@ -2356,10 +2466,10 @@ function loadPartTable(table, url, options={}) { $(table).inventreeTable({ url: url, method: 'get', + name: table_name, queryParams: filters, groupBy: false, - name: options.name || 'part', - original: params, + original: options.params, sidePagination: 'server', pagination: 'true', formatNoMatches: function() { @@ -2369,6 +2479,7 @@ function loadPartTable(table, url, options={}) { showColumns: true, showCustomView: grid_view, showCustomViewButton: false, + showFooter: true, onPostBody: function() { grid_view = inventreeLoad('part-grid-view') == 1; if (grid_view) { @@ -2438,97 +2549,6 @@ function loadPartTable(table, url, options={}) { return html; } }); - - if (options.buttons) { - linkButtonsToSelection($(table), options.buttons); - } - - /* Button callbacks for part table buttons */ - - // Callback function for the "order parts" button - $('#multi-part-order').click(function() { - var selections = getTableData(table); - - var parts = []; - - selections.forEach(function(part) { - parts.push(part); - }); - - orderParts(parts, {}); - }); - - // Callback function for the "set category" button - $('#multi-part-category').click(function() { - var selections = getTableData(table); - var parts = []; - - selections.forEach(function(item) { - parts.push(item.pk); - }); - - var html = ` -
    - {% trans "Set the part category for the selected parts" %} -
    - `; - - constructFormBody({}, { - title: '{% trans "Set Part Category" %}', - preFormContent: html, - fields: { - category: { - label: '{% trans "Category" %}', - help_text: '{% trans "Select Part Category" %}', - required: true, - type: 'related field', - model: 'partcategory', - api_url: '{% url "api-part-category-list" %}', - } - }, - onSubmit: function(fields, opts) { - var category = getFormFieldValue('category', fields['category'], opts); - - if (category == null) { - handleFormErrors( - { - 'category': ['{% trans "Category is required" %}'] - }, - opts.fields, - opts - ); - return; - } - - // Set the category for each part in sequence - function setCategory() { - if (parts.length > 0) { - var part = parts.shift(); - - inventreePut( - `{% url "api-part-list" %}${part}/`, - { - category: category, - }, - { - method: 'PATCH', - complete: setCategory, - } - ); - } else { - // We are done! - $(opts.modal).modal('hide'); - - $(table).bootstrapTable('refresh'); - } - } - - // Start the ball rolling - showModalSpinner(opts.modal); - setCategory(); - }, - }); - }); } @@ -2796,10 +2816,7 @@ function loadPartTestTemplateTable(table, options) { setupFilterList('parttests', table, filterListElement); - // Override the default values, or add new ones - for (var key in params) { - filters[key] = params[key]; - } + filters = Object.assign(filters, params); table.inventreeTable({ method: 'get', diff --git a/InvenTree/templates/js/translated/purchase_order.js b/InvenTree/templates/js/translated/purchase_order.js index 78e0419289..911f2edea6 100644 --- a/InvenTree/templates/js/translated/purchase_order.js +++ b/InvenTree/templates/js/translated/purchase_order.js @@ -31,7 +31,6 @@ inventreeLoad, inventreePut, launchModalForm, - linkButtonsToSelection, loadTableFilters, makeCopyButton, makeDeleteButton, @@ -126,6 +125,18 @@ function purchaseOrderFields(options={}) { return filters; } }, + address: { + icon: 'fa-map', + adjustFilters: function(filters) { + let supplier = getFormFieldValue('supplier', {}, {modal: options.modal}); + + if (supplier) { + filters.company = supplier; + } + + return filters; + } + }, responsible: { icon: 'fa-user', }, @@ -594,7 +605,7 @@ function newSupplierPartFromOrderWizard(e) { /* * Create a new form to order parts based on the list of provided parts. */ -function orderParts(parts_list, options) { +function orderParts(parts_list, options={}) { var parts = []; @@ -774,7 +785,7 @@ function orderParts(parts_list, options) { supplier_part_filters.manufacturer_part = options.manufacturer_part; } - // Construct API filtres for the PurchaseOrder field + // Construct API filters for the PurchaseOrder field var order_filters = { status: {{ PurchaseOrderStatus.PENDING }}, supplier_detail: true, @@ -810,6 +821,10 @@ function orderParts(parts_list, options) { $(opts.modal).find(`#info-pack-size-${pk}`).remove(); + if (typeof value === 'object') { + value = value.pk; + } + if (value != null) { inventreeGet( `/api/company/part/${value}/`, @@ -1744,9 +1759,6 @@ function loadPurchaseOrderTable(table, options) { customView: function(data) { return `
    `; }, - onRefresh: function() { - loadPurchaseOrderTable(table, options); - }, onLoadSuccess: function() { if (display_mode == 'calendar') { @@ -1854,14 +1866,9 @@ function loadPurchaseOrderLineItemTable(table, options={}) { var filters = loadTableFilters('purchaseorderlineitem', options.params); - setupFilterList( - 'purchaseorderlineitem', - $(table), - options.filter_target || '#filter-list-purchase-order-lines', - { - download: true - } - ); + setupFilterList('purchaseorderlineitem', $(table), options.filter_target || '#filter-list-purchase-order-lines', { + download: true, + }); function setupCallbacks() { if (options.allow_edit) { @@ -2199,12 +2206,4 @@ function loadPurchaseOrderLineItemTable(table, options={}) { } ] }); - - linkButtonsToSelection( - table, - [ - '#multi-select-options', - ] - ); - } diff --git a/InvenTree/templates/js/translated/return_order.js b/InvenTree/templates/js/translated/return_order.js index 49e3b9d7ad..4542a7d6da 100644 --- a/InvenTree/templates/js/translated/return_order.js +++ b/InvenTree/templates/js/translated/return_order.js @@ -90,6 +90,18 @@ function returnOrderFields(options={}) { return filters; } }, + address: { + icon: 'fa-map', + adjustFilters: function(filters) { + let customer = getFormFieldValue('customer', {}, {modal: options.modal}); + + if (customer) { + filters.company = customer; + } + + return filters; + } + }, responsible: { icon: 'fa-user', } @@ -250,9 +262,6 @@ function loadReturnOrderTable(table, options={}) { formatNoMatches: function() { return '{% trans "No return orders found" %}'; }, - onRefresh: function() { - loadReturnOrderTable(table, options); - }, onLoadSuccess: function() { // TODO }, diff --git a/InvenTree/templates/js/translated/sales_order.js b/InvenTree/templates/js/translated/sales_order.js index 35e3d2d7e8..7211dae488 100644 --- a/InvenTree/templates/js/translated/sales_order.js +++ b/InvenTree/templates/js/translated/sales_order.js @@ -116,6 +116,18 @@ function salesOrderFields(options={}) { return filters; } }, + address: { + icon: 'fa-map', + adjustFilters: function(filters) { + let customer = getFormFieldValue('customer', {}, {modal: options.modal}); + + if (customer) { + filters.company = customer; + } + + return filters; + } + }, responsible: { icon: 'fa-user', } @@ -723,9 +735,6 @@ function loadSalesOrderTable(table, options) { customView: function(data) { return `
    `; }, - onRefresh: function() { - loadSalesOrderTable(table, options); - }, onLoadSuccess: function() { if (display_mode == 'calendar') { @@ -1727,12 +1736,12 @@ function loadSalesOrderLineItemTable(table, options={}) { options.params = options.params || {}; if (!options.order) { - console.error('function called without order ID'); + console.error('loadSalesOrderLineItemTable called without order ID'); return; } if (!options.status) { - console.error('function called without order status'); + console.error('loadSalesOrderLineItemTable called without order status'); return; } diff --git a/InvenTree/templates/js/translated/search.js b/InvenTree/templates/js/translated/search.js index 26d8caadc4..23882295cc 100644 --- a/InvenTree/templates/js/translated/search.js +++ b/InvenTree/templates/js/translated/search.js @@ -1,6 +1,7 @@ {% load i18n %} /* globals + checkPermission, getModelRenderer, inventreeGet, inventreePut, @@ -22,40 +23,6 @@ function closeSearchPanel() { } -// Keep track of the roles / permissions available to the current user -var search_user_roles = null; - - -/* - * Check if the user has the specified role and permission - */ -function checkPermission(role, permission='view') { - - if (!search_user_roles) { - return false; - } - - if (!(role in search_user_roles)) { - return false; - } - - var roles = search_user_roles[role]; - - if (!roles) { - return false; - } - - var found = false; - - search_user_roles[role].forEach(function(p) { - if (String(p).valueOf() == String(permission).valueOf()) { - found = true; - } - }); - - return found; -} - /* * Callback when the search panel is opened. @@ -71,15 +38,6 @@ function openSearchPanel() { clearSearchResults(); - // Request user roles if we do not have them - if (search_user_roles == null) { - inventreeGet('{% url "api-user-roles" %}', {}, { - success: function(response) { - search_user_roles = response.roles || {}; - } - }); - } - // Callback for text input changed search_input.on('keyup change', searchTextChanged); diff --git a/InvenTree/templates/js/translated/status_codes.js b/InvenTree/templates/js/translated/status_codes.js index 8702944730..63c2648f91 100644 --- a/InvenTree/templates/js/translated/status_codes.js +++ b/InvenTree/templates/js/translated/status_codes.js @@ -1,5 +1,5 @@ {% load i18n %} -{% load status_codes %} +{% load generic %} {% load inventree_extras %} /* globals diff --git a/InvenTree/templates/js/translated/stock.js b/InvenTree/templates/js/translated/stock.js index e2aa8d72a3..d32ad020bc 100644 --- a/InvenTree/templates/js/translated/stock.js +++ b/InvenTree/templates/js/translated/stock.js @@ -1,6 +1,6 @@ {% load i18n %} {% load inventree_extras %} -{% load status_codes %} +{% load generic %} /* globals addCachedAlert, @@ -30,7 +30,6 @@ inventreePut, inventreeSave, launchModalForm, - linkButtonsToSelection, loadTableFilters, makeDeleteButton, makeEditButton, @@ -1138,7 +1137,7 @@ function adjustStock(action, items, options={}) { if (itemCount == 0) { showAlertDialog( '{% trans "Select Stock Items" %}', - '{% trans "You must select at least one available stock item" %}', + '{% trans "Select at least one available stock item" %}', ); return; @@ -1149,7 +1148,26 @@ function adjustStock(action, items, options={}) { var extraFields = {}; if (specifyLocation) { + + // If a common location is specified, use that as the default + let commonLocation = null; + + for (const item of items) { + + if (item.location == commonLocation) { + continue; + } + + if (commonLocation == null) { + commonLocation = item.location; + } else { + commonLocation = null; + break; + } + } + extraFields.location = { + value: commonLocation, filters: { structural: false, }, @@ -1707,6 +1725,121 @@ function locationDetail(row, showLink=true) { } +/* + * Construct a set of custom actions for the stock table + */ +function makeStockActions(table) { + let actions = [ + { + label: 'add', + icon: 'fa-plus-circle icon-green', + title: '{% trans "Add stock" %}', + permission: 'stock.change', + callback: function(data) { + stockAdjustment('add', data, table); + } + }, + { + label: 'remove', + icon: 'fa-minus-circle icon-red', + title: '{% trans "Remove stock" %}', + permission: 'stock.change', + callback: function(data) { + stockAdjustment('take', data, table); + }, + }, + { + label: 'stocktake', + icon: 'fa-check-circle icon-blue', + title: '{% trans "Count stock" %}', + permission: 'stock.change', + callback: function(data) { + stockAdjustment('count', data, table); + }, + }, + { + label: 'move', + icon: 'fa-exchange-alt icon-blue', + title: '{% trans "Transfer stock" %}', + permission: 'stock.change', + callback: function(data) { + stockAdjustment('move', data, table); + } + }, + { + label: 'status', + icon: 'fa-info-circle icon-blue', + title: '{% trans "Change stock status" %}', + permission: 'stock.change', + callback: function(data) { + setStockStatus(data, {table: table}); + }, + }, + { + label: 'merge', + icon: 'fa-object-group', + title: '{% trans "Merge stock" %}', + permission: 'stock.change', + callback: function(data) { + mergeStockItems(data, { + success: function(response) { + $(table).bootstrapTable('refresh'); + + showMessage('{% trans "Merged stock items" %}', { + style: 'success', + }); + } + }); + }, + }, + { + label: 'order', + icon: 'fa-shopping-cart', + title: '{% trans "Order stock" %}', + permission: 'stock.change', + callback: function(data) { + let parts = []; + + data.forEach(function(item) { + var part = item.part_detail; + + if (part) { + parts.push(part); + } + }); + + orderParts(parts, {}); + }, + }, + { + label: 'assign', + icon: 'fa-user-tie', + title: '{% trans "Assign to customer" %}', + permission: 'stock.change', + callback: function(data) { + assignStockToCustomer(data, { + success: function() { + $(table).bootstrapTable('refresh'); + } + }); + }, + }, + { + label: 'delete', + icon: 'fa-trash-alt icon-red', + title: '{% trans "Delete stock" %}', + permission: 'stock.delete', + callback: function(data) { + stockAdjustment('delete', data, table); + }, + } + ]; + + return actions; + +} + + /* Load data into a stock table with adjustable options. * Fetches data (via AJAX) and loads into a bootstrap table. * Also links in default button callbacks. @@ -1720,37 +1853,60 @@ function locationDetail(row, showLink=true) { */ function loadStockTable(table, options) { + options.params = options.params || {}; + // List of user-params which override the default filters options.params['location_detail'] = true; options.params['part_detail'] = true; - var params = options.params || {}; + // Determine if installed items are displayed in the table + let show_installed_items = global_settings.STOCK_SHOW_INSTALLED_ITEMS; - const filterTarget = options.filterTarget || '#filter-list-stock'; + let filters = {}; - const filterKey = options.filterKey || options.name || 'stock'; + if (!options.disableFilters) { - let filters = loadTableFilters(filterKey, params); + const filterTarget = options.filterTarget || '#filter-list-stock'; + const filterKey = options.filterKey || options.name || 'stock'; - setupFilterList(filterKey, table, filterTarget, { - download: true, - report: { - url: '{% url "api-stockitem-testreport-list" %}', - key: 'item', - }, - labels: { - url: '{% url "api-stockitem-label-list" %}', - key: 'item', - }, - singular_name: '{% trans "stock item" %}', - plural_name: '{% trans "stock items" %}' - }); + filters = loadTableFilters(filterKey, options.params); - // Override the default values, or add new ones - for (var key in params) { - filters[key] = params[key]; + setupFilterList(filterKey, table, filterTarget, { + download: true, + report: { + url: '{% url "api-stockitem-testreport-list" %}', + key: 'item', + }, + labels: { + url: '{% url "api-stockitem-label-list" %}', + key: 'item', + }, + singular_name: '{% trans "stock item" %}', + plural_name: '{% trans "stock items" %}', + barcode_actions: [ + { + icon: 'fa-sitemap', + label: 'scantolocation', + title: '{% trans "Scan to location" %}', + permission: 'stock.change', + callback: function(items) { + scanItemsIntoLocation(items); + } + } + ], + custom_actions: [ + { + actions: makeStockActions(table), + icon: 'fa-boxes', + title: '{% trans "Stock Actions" %}', + label: 'stock', + } + ] + }); } + filters = Object.assign(filters, options.params); + var col = null; var columns = [ @@ -1769,18 +1925,35 @@ function loadStockTable(table, options) { ]; col = { - field: 'part_detail.full_name', + field: 'part', title: '{% trans "Part" %}', sortName: 'part__name', - visible: params['part_detail'], - switchable: params['part_detail'], + visible: options.params['part_detail'], + switchable: options.params['part_detail'], formatter: function(value, row) { - return partDetail(row.part_detail, { + let html = ''; + + if (show_installed_items && row.installed_items > 0) { + if (row.installed_items_received) { + // Data received, ignore + } else if (row.installed_items_requested) { + html += ``; + } else { + html += ` + + + `; + } + } + + html += partDetail(row.part_detail, { thumb: true, link: true, icons: true, }); + + return html; } }; @@ -1791,11 +1964,11 @@ function loadStockTable(table, options) { columns.push(col); col = { - field: 'part_detail.IPN', + field: 'IPN', title: '{% trans "IPN" %}', sortName: 'part__IPN', - visible: params['part_detail'], - switchable: params['part_detail'], + visible: options.params['part_detail'], + switchable: options.params['part_detail'], formatter: function(value, row) { var ipn = row.part_detail.IPN; if (ipn) { @@ -1815,8 +1988,8 @@ function loadStockTable(table, options) { columns.push({ field: 'part_detail.description', title: '{% trans "Description" %}', - visible: params['part_detail'], - switchable: params['part_detail'], + visible: options.params['part_detail'], + switchable: options.params['part_detail'], formatter: function(value, row) { var description = row.part_detail.description; return withTitle(shortenString(description), description); @@ -1895,13 +2068,36 @@ function loadStockTable(table, options) { // Display "total" stock quantity of all rendered rows let total = 0; + // Keep track of the whether all units are the same + // If different units are found, we cannot aggregate the quantities + let units = new Set(); + data.forEach(function(row) { + + units.add(row.part_detail.units || null); + if (row.quantity != null) { total += row.quantity; } }); - return total; + if (data.length == 0) { + return '-'; + } else if (units.size > 1) { + return '-'; + } else { + let output = `${total}`; + + if (units.size == 1) { + let unit = units.values().next().value; + + if (unit) { + output += ` [${unit}]`; + } + } + + return output; + } } }; @@ -2014,8 +2210,8 @@ function loadStockTable(table, options) { field: 'supplier_part', title: '{% trans "Supplier Part" %}', - visible: params['supplier_part_detail'] || false, - switchable: params['supplier_part_detail'] || false, + visible: options.params['supplier_part_detail'] || false, + switchable: options.params['supplier_part_detail'] || false, formatter: function(value, row) { if (!value) { return '-'; @@ -2164,6 +2360,37 @@ function loadStockTable(table, options) { title: '{% trans "Notes" %}', }); + // Function to request subset of items which are installed *within* a particular item + function requestInstalledItems(stock_item) { + inventreeGet( + '{% url "api-stock-list" %}', + { + belongs_to: stock_item, + part_detail: true, + supplier_detail: true, + }, + { + success: function(response) { + // Add the returned stock items into the table + let row = table.bootstrapTable('getRowByUniqueId', stock_item); + row.installed_items_received = true; + + table.bootstrapTable('updateByUniqueId', stock_item, row, true); + table.bootstrapTable('append', response); + + // Auto-expand the newly added data + $(`.treegrid-${stock_item}`).treegrid('expand'); + }, + error: function(xhr) { + console.error(`Error requesting installed items for ${stock_item}`); + showApiError(xhr); + } + } + ); + } + + let parent_id = 'top-level'; + table.inventreeTable({ method: 'get', formatNoMatches: function() { @@ -2173,10 +2400,39 @@ function loadStockTable(table, options) { queryParams: filters, sidePagination: 'server', name: 'stock', - original: params, + original: options.params, showColumns: true, showFooter: true, columns: columns, + treeEnable: show_installed_items, + rootParentId: parent_id, + parentIdField: 'belongs_to', + uniqueId: 'pk', + idField: 'pk', + treeShowField: 'part', + onPostBody: function() { + + if (show_installed_items) { + table.treegrid({ + treeColumn: 1, + }); + + table.treegrid('collapseAll'); + + // Callback for 'load sub-items' button + table.find('.load-sub-items').click(function(event) { + event.preventDefault(); + + let pk = $(this).attr('pk'); + let row = table.bootstrapTable('getRowByUniqueId', pk); + + requestInstalledItems(row.pk); + + row.installed_items_requested = true; + table.bootstrapTable('updateByUniqueId', pk, row, true); + }); + } + } }); var buttons = [ @@ -2187,104 +2443,18 @@ function loadStockTable(table, options) { buttons.push('#stock-barcode-options'); } - linkButtonsToSelection( - table, - buttons, - ); - - function stockAdjustment(action) { - var items = getTableData(table); - - adjustStock(action, items, { - success: function() { - $(table).bootstrapTable('refresh'); - } - }); - } - - // Automatically link button callbacks - if (global_settings.BARCODE_ENABLE) { - $('#multi-item-barcode-scan-into-location').click(function() { - var selections = getTableData(table); - - var items = []; - - selections.forEach(function(item) { - items.push(item); - }); - - scanItemsIntoLocation(items); - }); - } - - $('#multi-item-stocktake').click(function() { - stockAdjustment('count'); - }); - - $('#multi-item-remove').click(function() { - stockAdjustment('take'); - }); - - $('#multi-item-add').click(function() { - stockAdjustment('add'); - }); - - $('#multi-item-move').click(function() { - stockAdjustment('move'); - }); - - $('#multi-item-merge').click(function() { - var items = getTableData(table); - - mergeStockItems(items, { - success: function(response) { - $(table).bootstrapTable('refresh'); - - showMessage('{% trans "Merged stock items" %}', { - style: 'success', - }); - } - }); - }); - - $('#multi-item-assign').click(function() { - - var items = getTableData(table); - - assignStockToCustomer(items, { - success: function() { - $(table).bootstrapTable('refresh'); - } - }); - }); - - $('#multi-item-order').click(function() { - - var selections = getTableData(table); - - var parts = []; + // Callback for 'change status' button + $('#multi-item-status').click(function() { + let selections = getTableData(table); + let items = []; selections.forEach(function(item) { - var part = item.part_detail; - - if (part) { - parts.push(part); - } + items.push(item.pk); }); - orderParts(parts, {}); - }); - $('#multi-item-delete').click(function() { - var selections = getTableData(table); - var stock = []; - selections.forEach(function(item) { - stock.push(item.pk); - }); - - stockAdjustment('delete'); }); } @@ -2319,9 +2489,7 @@ function loadStockLocationTable(table, options) { plural_name: '{% trans "stock locations" %}', }); - for (var key in params) { - filters[key] = params[key]; - } + filters = Object.assign(filters, params); // Function to request sub-location items function requestSubItems(parent_pk) { @@ -2664,7 +2832,7 @@ function loadStockTrackingTable(table, options) { if (details.salesorder_detail) { html += renderLink( details.salesorder_detail.reference, - `/order/sales-order/${details.salesorder}` + `/order/sales-order/${details.salesorder}/` ); } else { html += `{% trans "Sales Order no longer exists" %}`; @@ -2789,10 +2957,6 @@ function loadStockTrackingTable(table, options) { url: options.url, }); - if (options.buttons) { - linkButtonsToSelection(table, options.buttons); - } - table.on('click', '.btn-entry-edit', function() { var button = $(this); @@ -3003,3 +3167,59 @@ function installStockItem(stock_item_id, part_id, options={}) { } ); } + +// Perform the specified stock adjustment action against the selected items +function stockAdjustment(action, items, table) { + adjustStock(action, items, { + success: function() { + $(table).bootstrapTable('refresh'); + } + }); +} + + +/* + * Set the status of the selected stock items + */ +function setStockStatus(items, options={}) { + + if (items.length == 0) { + showAlertDialog( + '{% trans "Select Stock Items" %}', + '{% trans "Select one or more stock items" %}' + ); + return; + } + + let id_values = []; + + items.forEach(function(item) { + id_values.push(item.pk) + }); + + let html = ` +
    0); - - // Add a callback - table.on('check.bs.table uncheck.bs.table check-some.bs.table uncheck-some.bs.table check-all.bs.table uncheck-all.bs.table', function() { - enableButtons(buttons, table.bootstrapTable('getSelections').length > 0); - }); -} - - /** * Returns true if the input looks like a valid number * @param {String} n @@ -271,17 +252,11 @@ function reloadTableFilters(table, filters, options={}) { options = table.bootstrapTable('getOptions'); // Construct a new list of filters to use for the query - var params = {}; - - for (var k in filters) { - params[k] = filters[k]; - } + let params = Object.assign({}, filters); // Original query params will override - if (options.original != null) { - for (var key in options.original) { - params[key] = options.original[key]; - } + if (options.original) { + params = Object.assign(params, options.original); } // Store the total set of query params @@ -337,9 +312,7 @@ function convertQueryParameters(params, filters) { } - for (var key in filters) { - params[key] = filters[key]; - } + params = Object.assign(params, filters); // Add "order" back in (if it was originally specified by InvenTree) // Annoyingly, "order" shadows some field names in InvenTree... @@ -474,11 +447,6 @@ $.fn.inventreeTable = function(options) { console.error(`Could not get list of visible columns for table '${tableName}'`); } } - - // Optionally, link buttons to the table selection - if (options.buttons) { - linkButtonsToSelection(table, options.buttons); - } }; diff --git a/InvenTree/templates/stats.html b/InvenTree/templates/stats.html index b4f38c7ebc..fdfac75880 100644 --- a/InvenTree/templates/stats.html +++ b/InvenTree/templates/stats.html @@ -63,7 +63,7 @@ {% trans "Background Worker" %} - + {% trans "Background worker not running" %} diff --git a/InvenTree/templates/stock_table.html b/InvenTree/templates/stock_table.html index fdbb284f8d..d8fa1aeac6 100644 --- a/InvenTree/templates/stock_table.html +++ b/InvenTree/templates/stock_table.html @@ -9,45 +9,7 @@ {% endif %}
    -
    -
    - {% if barcodes %} - - - {% endif %} - {% if not read_only %} - {% if roles.stock.change or roles.stock.delete %} - - {% endif %} - {% endif %} - {% include "filter_list.html" with prefix=prefix id="stock" %} -
    -
    + {% include "filter_list.html" with prefix=prefix id="stock" %}
    diff --git a/InvenTree/templates/version.html b/InvenTree/templates/version.html index 5c0fa0142b..2dfd7abcb4 100644 --- a/InvenTree/templates/version.html +++ b/InvenTree/templates/version.html @@ -3,7 +3,11 @@ InvenTree-Version: {% inventree_version %} Django Version: {% django_version %} {% inventree_commit_hash as hash %}{% if hash %}Commit Hash: {{ hash }}{% endif %} {% inventree_commit_date as commit_date %}{% if commit_date %}Commit Date: {% render_date commit_date %}{% endif %} +{% inventree_branch as branch %}{% if branch %}Commit Branch: {{ branch }}{% endif %} Database: {% inventree_db_engine %} Debug-Mode: {% inventree_in_debug_mode %} Deployed using Docker: {% inventree_docker_mode %} +Platform: {% inventree_platform %} +Installer: {% inventree_installer %} +{% inventree_target as target %}{% if target %}Target: {{ target }}{% endif %} Active plugins: {% plugins_info %} diff --git a/InvenTree/users/migrations/0007_alter_ruleset_name.py b/InvenTree/users/migrations/0007_alter_ruleset_name.py index b38511dc30..21604e147d 100644 --- a/InvenTree/users/migrations/0007_alter_ruleset_name.py +++ b/InvenTree/users/migrations/0007_alter_ruleset_name.py @@ -1,6 +1,7 @@ # Generated by Django 3.2.18 on 2023-03-14 10:07 from django.db import migrations, models +import users.models class Migration(migrations.Migration): @@ -13,6 +14,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='ruleset', name='name', - field=models.CharField(choices=[('admin', 'Admin'), ('part_category', 'Part Categories'), ('part', 'Parts'), ('stocktake', 'Stocktake'), ('stock_location', 'Stock Locations'), ('stock', 'Stock Items'), ('build', 'Build Orders'), ('purchase_order', 'Purchase Orders'), ('sales_order', 'Sales Orders'), ('return_order', 'Return Orders')], help_text='Permission set', max_length=50), + field=models.CharField(choices=users.models.RuleSet.RULESET_CHOICES, help_text='Permission set', max_length=50), ), ] diff --git a/InvenTree/users/models.py b/InvenTree/users/models.py index a16e261c35..64ce156984 100644 --- a/InvenTree/users/models.py +++ b/InvenTree/users/models.py @@ -81,6 +81,7 @@ class RuleSet(models.Model): 'common_newsfeedentry', 'taggit_tag', 'taggit_taggeditem', + 'flags_flagstate', ], 'part_category': [ 'part_partcategory', @@ -114,6 +115,7 @@ class RuleSet(models.Model): 'stock_location': [ 'stock_stocklocation', 'label_stocklocationlabel', + 'report_stocklocationreport' ], 'stock': [ 'stock_stockitem', @@ -130,15 +132,18 @@ class RuleSet(models.Model): 'part_bomitemsubstitute', 'build_build', 'build_builditem', + 'build_buildline', 'build_buildorderattachment', 'stock_stockitem', 'stock_stocklocation', 'report_buildreport', + 'label_buildlinelabel', ], 'purchase_order': [ 'company_company', 'company_companyattachment', 'company_contact', + 'company_address', 'company_manufacturerpart', 'company_manufacturerpartparameter', 'company_supplierpart', @@ -153,6 +158,7 @@ class RuleSet(models.Model): 'company_company', 'company_companyattachment', 'company_contact', + 'company_address', 'order_salesorder', 'order_salesorderallocation', 'order_salesorderattachment', @@ -165,6 +171,7 @@ class RuleSet(models.Model): 'company_company', 'company_companyattachment', 'company_contact', + 'company_address', 'order_returnorder', 'order_returnorderlineitem', 'order_returnorderextraline', diff --git a/Procfile b/Procfile index dd2f26d495..7761c4d5bc 100644 --- a/Procfile +++ b/Procfile @@ -1,3 +1,3 @@ web: env/bin/gunicorn --chdir $APP_HOME/InvenTree -c InvenTree/gunicorn.conf.py InvenTree.wsgi -b 0.0.0.0:$PORT worker: env/bin/python InvenTree/manage.py qcluster -cli: . env/bin/activate && exec env/bin/python -m invoke +cli: echo "" && . env/bin/activate && exec env/bin/python -m invoke diff --git a/README.md b/README.md index e3753c5605..db496e8c5d 100644 --- a/README.md +++ b/README.md @@ -34,27 +34,14 @@ ## :star2: About the Project -InvenTree is an open-source Inventory Management System which provides powerful low-level stock control and part tracking. The core of the InvenTree system is a Python/Django database backend which provides an admin interface (web-based) and a REST API for interaction with external interfaces and applications. +InvenTree is an open-source Inventory Management System which provides powerful low-level stock control and part tracking. The core of the InvenTree system is a Python/Django database backend which provides an admin interface (web-based) and a REST API for interaction with external interfaces and applications. A powerful plugin system provides support for custom applications and extensions. -InvenTree is designed to be lightweight and easy to use for SME or hobbyist applications, where many existing stock management solutions are bloated and cumbersome to use. Updating stock is a single-action process and does not require a complex system of work orders or stock transactions. - -Powerful business logic works in the background to ensure that stock tracking history is maintained, and users have ready access to stock level information. - - - -### :dart: Features - -- Organize Parts and BOMs -- Manage Suppliers -- Instant Stock Knowledge -- Extend and Customize to fit your usage +Check out [our website](https://inventree.org) for more details. ### :compass: Roadmap -* [x] Plugins -* [ ] Improved Importers -* [ ] Custom Workflow Processes +Want to see what we are working on? Check out the [roadmap tag](https://github.com/inventree/InvenTree/issues?q=is%3Aopen+is%3Aissue+label%3Aroadmap) and [horizon milestone](https://github.com/inventree/InvenTree/milestone/42). ### :hammer_and_wrench: Integration @@ -110,23 +97,7 @@ InvenTree is designed to be **extensible**, and provides multiple options for ** -## :toolbox: Getting Started - -Refer to the [getting started guide](https://docs.inventree.org/en/latest/start/install/) for installation and setup instructions. - - -## :iphone: Mobile App - -InvenTree is supported by a [companion mobile app](https://docs.inventree.org/en/latest/app/app/) which allows users access to stock control information and functionality. - - - - -## :train: Deploy +## :toolbox: Deployment / Getting Started There are several options to deploy InvenTree. @@ -143,25 +114,33 @@ Single line install - read [the docs](https://docs.inventree.org/en/latest/start wget -qO install.sh https://get.inventree.org && bash install.sh ``` +Refer to the [getting started guide](https://docs.inventree.org/en/latest/start/install/) for a full set of installation and setup instructions. + + +## :iphone: Mobile App + +InvenTree is supported by a [companion mobile app](https://docs.inventree.org/en/latest/app/app/) which allows users access to stock control information and functionality. + + + ## :wave: Contributing -Contributions are welcomed and encouraged. Please help to make this project even better! -Refer to the [contribution page](CONTRIBUTING.md). +Contributions are welcomed and encouraged. Please help to make this project even better! Refer to the [contribution page](CONTRIBUTING.md). ## :scroll: Translation Native language translation of the InvenTree web application is [community contributed via crowdin](https://crowdin.com/project/inventree). **Contributions are welcomed and encouraged**. -To contribute to the translation effort, navigate to the [InvenTree crowdin project](https://crowdin.com/project/inventree), create a free account, and start making translations suggestions for your language of choice! - ## :money_with_wings: Sponsor -If you use InvenTree and find it to be useful, please consider making a donation toward its continued development. - -[Donate via PayPal](https://paypal.me/inventree?locale.x=en_AU) +If you use InvenTree and find it to be useful, please consider [sponsoring the project](https://github.com/sponsors/inventree). ## :gem: Acknowledgements diff --git a/contrib/install.sh b/contrib/install.sh index 241e2fe16d..4d90aa736d 100755 --- a/contrib/install.sh +++ b/contrib/install.sh @@ -74,7 +74,13 @@ root_command() { fi ;; "Debian GNU/Linux" | "debian gnu/linux" | Raspbian) - if [[ $VER != "11" ]]; then + if [[ $VER == "12" ]]; then + SUPPORTED=true + elif [[ $VER == "11" ]]; then + SUPPORTED=true + elif [[ $VER == "10" ]]; then + SUPPORTED=true + else SUPPORTED=false fi DIST_OS=debian diff --git a/contrib/installer/src/root_command.sh b/contrib/installer/src/root_command.sh index 8efd9e7b08..54c0c52ec3 100644 --- a/contrib/installer/src/root_command.sh +++ b/contrib/installer/src/root_command.sh @@ -64,7 +64,13 @@ case "$OS" in fi ;; "Debian GNU/Linux" | "debian gnu/linux" | Raspbian) - if [[ $VER != "11" ]]; then + if [[ $VER == "12" ]]; then + SUPPORTED=true + elif [[ $VER == "11" ]]; then + SUPPORTED=true + elif [[ $VER == "10" ]]; then + SUPPORTED=true + else SUPPORTED=false fi DIST_OS=debian diff --git a/contrib/packager.io/before.sh b/contrib/packager.io/before.sh new file mode 100755 index 0000000000..b0bb808cef --- /dev/null +++ b/contrib/packager.io/before.sh @@ -0,0 +1,43 @@ +#!/bin/bash +# +# packager.io before script +# + +set -eu + +VERSION="$APP_PKG_VERSION-$APP_PKG_ITERATION" +echo "Setting VERSION information to $VERSION" +echo "$VERSION" > VERSION + +# The sha is the second element in APP_PKG_ITERATION +SHA=$(echo $APP_PKG_ITERATION | cut -d'.' -f2) + +# Download info +echo "Getting info from github for commit $SHA" +curl -L \ + -H "Accept: application/vnd.github+json" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + https://api.github.com/repos/InvenTree/InvenTree/commits/$SHA > commit.json +curl -L \ + -H "Accept: application/vnd.github+json" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + https://api.github.com/repos/InvenTree/InvenTree/commits/$SHA/branches-where-head > branches.json + +# Extract info +echo "Extracting info from github" +DATE=$(jq -r '.commit.committer.date' commit.json) +BRANCH=$(jq -r '.[].name' branches.json) +NODE_ID=$(jq -r '.node_id' commit.json) +SIGNATURE=$(jq -r '.commit.verification.signature' commit.json) + +echo "Write VERSION information" +echo "INVENTREE_COMMIT_HASH='$SHA'" >> VERSION +echo "INVENTREE_COMMIT_DATE='$DATE'" >> VERSION +echo "INVENTREE_PKG_INSTALLER='PKG'" >> VERSION +echo "INVENTREE_PKG_BRANCH='$BRANCH'" >> VERSION +echo "INVENTREE_PKG_TARGET='$TARGET'" >> VERSION +echo "NODE_ID='$NODE_ID'" >> VERSION +echo "SIGNATURE='$SIGNATURE'" >> VERSION + +echo "Written VERSION information" +cat VERSION diff --git a/docker/init.sh b/docker/init.sh index caf0266c51..0837d7f949 100644 --- a/docker/init.sh +++ b/docker/init.sh @@ -1,9 +1,11 @@ -#!/bin/bash +#!/bin/sh # exit when any command fails set -e # Required to suppress some git errors further down the line -git config --global --add safe.directory /home/*** +if command -v git &> /dev/null; then + git config --global --add safe.directory /home/*** +fi # Create required directory structure (if it does not already exist) if [[ ! -d "$INVENTREE_STATIC_ROOT" ]]; then diff --git a/docker/production/.env b/docker/production/.env index c465f03a28..acbe0ae735 100644 --- a/docker/production/.env +++ b/docker/production/.env @@ -42,7 +42,7 @@ INVENTREE_DB_PORT=5432 #INVENTREE_CACHE_PORT=6379 # Options for gunicorn server -INVENTREE_GUNICORN_TIMEOUT=30 +INVENTREE_GUNICORN_TIMEOUT=90 # Enable custom plugins? INVENTREE_PLUGINS_ENABLED=False diff --git a/docker/requirements.txt b/docker/requirements.txt index 97adfeea6d..b0651f255b 100644 --- a/docker/requirements.txt +++ b/docker/requirements.txt @@ -8,7 +8,7 @@ wheel>=0.37.0 # Database links psycopg2>=2.9.1 -mysqlclient>=2.0.3 +mysqlclient>=2.0.3,<=2.1.1 pgcli>=3.1.0 mariadb>=1.0.7,<1.1.0 diff --git a/docs/_includes/release_table.html b/docs/_includes/release_table.html index e96c9cbb42..33dea37fa5 100644 --- a/docs/_includes/release_table.html +++ b/docs/_includes/release_table.html @@ -1,10 +1,18 @@ - - - - +
    +
    +
    Release {{ prefix }}.x
    + + + + + + + + + + {% for release in config.releases %} -{% if release.prefix == prefix %} -{% endif %} {% endfor %} + +
    Release Date GitHub Docker
    {% if release.local_path %} @@ -25,5 +33,8 @@ {% endif %}
    +
    +
    diff --git a/docs/_includes/release_table_head.html b/docs/_includes/release_table_head.html deleted file mode 100644 index 984d3527e8..0000000000 --- a/docs/_includes/release_table_head.html +++ /dev/null @@ -1,13 +0,0 @@ - -
    -
    - - - - - - - - - - diff --git a/docs/_includes/release_table_tail.html b/docs/_includes/release_table_tail.html deleted file mode 100644 index 71a6230544..0000000000 --- a/docs/_includes/release_table_tail.html +++ /dev/null @@ -1,4 +0,0 @@ - -
    Release Date GitHub Docker
    -
    -
    diff --git a/docs/docs/app/settings.md b/docs/docs/app/settings.md index cb12ba53aa..c76d678778 100644 --- a/docs/docs/app/settings.md +++ b/docs/docs/app/settings.md @@ -8,11 +8,15 @@ The *Settings* view provides access to user configurable settings, in addition t The main settings view is shown below, and provides the following options: -- **Server** - Configure and select server profile -- **App Settings** - Configure app settings -- **Home Screen** - Configure home screen settings -- **Part** - Configure part settings -- **About** - Display app version information +| Option | Description | +| --- | --- | +| [Server](./connect.md) | Select server profile and configure settings | +| [App Settings](#app-settings) | Configure app settings | +| [Barcode Settings](#barcode-settings) | Configure barcode scanning settings | +| [Home Screen](#home-screen) | Configure home screen options | +| [Part](#part-settings) | Configure part management options | +| About | Display app version information | + {% with id="settings_view", url="app/settings.png", maxheight="240px", description="Settings view" %} {% include 'img.html' %} @@ -26,32 +30,40 @@ The *App Settings* view provides configuration options for the InvenTree app: {% include 'img.html' %} {% endwith %} -### Parts +### App Settings -Configure options for "parts" display: +| Option | Description | +| --- | --- | +| Dark Mode | Enable "dark mode" display for the app. | +| Screen Orientation | Select [screen orientation mode](#screen-orientation) | +| Use Strict HTTPS | Enforce strict checking of HTTPs certificates. Enabling this option may prevent you from connecting to the server if there are certificate issues. | +| Language | Select app language. By default, will use the system language of the device the app is installed on. | +| Upload Error Reports | Enable uploading of anonymous error / crash reports. These reports are used to improve the quality of the app. | -- **Include Subcategories** - When viewing a list of parts in a category, include parts from subcategories +#### Screen Orientation -### Stock - -Configure options for "stock" display: - -- **Include Sublocations** - When viewing a list of stock items in a location, include items from sublocations -- **Stock History** - Display stock item history in the stock detail view +By default, the screen orientation follows your system preference. However if desired, the screen orientation can be locked in either portrait or landscape mode. ### Sounds Configure audible app notifications: -- **Server Error** - Play an audible tone when a server error occurs -- **Barcode Tones** - Play audible tones when scanning barcodes +| Option | Description | +| --- | --- | +| Server Error | Play an audible tone when a server error occurs | +| Barcode Tones | Play audible tones when scanning barcodes | -### App Settings +## Barcode Settings -- **Dark Mode** - Enable "dark mode" display for the app. -- **Use Strict HTTPS** - Enforce strict checking of HTTPs certificates. Enabling this option may prevent you from connecting to the server if there are certificate issues. -- **Language** - Select app language. By default, will use the system language of the device the app is installed on. -- **Upload Error Reports** - Enable uploading of anonymous error / crash reports. These reports are used to improve the quality of the app. +The *Barcode Settings* view allows you to configure options relating to barcode scanning: + +{% with id="barcode_settings", url="app/barcode_settings.png", maxheight="240px", description="Barcode Settings" %} +{% include 'img.html' %} +{% endwith %} + +| Option | Description | +| --- | --- | +| Barcode Scan Delay | Delay between successive scans | ## Home Screen @@ -60,3 +72,20 @@ The *Home Screen* view allows you to configure display options for the app 'home {% with id="home_settings", url="app/home_settings.png", maxheight="240px", description="Home Screen Settings" %} {% include 'img.html' %} {% endwith %} + +| Option | Description | +| --- | --- | +| Subscribed Parts | Show a list of subscribed parts on the home page | +| Show Purchase Orders | Display a link to purchase orders on the home page | +| Show Suppliers | Display a link to suppliers on the home page | + +## Part Settings + +The *Part Settings* view allows you to configure various options governing what part features are available: + +| Option | Description | +| --- | --- | +| Parameters | Enable display of part parameters in the part detail view | +| BOM | Enable bill of materials display in the part detail view | +| Stock History | Enable display of stock history in the stock detail view | +| Test Results | Enable display of test results in the stock detail view | diff --git a/docs/docs/assets/images/app/app_settings.png b/docs/docs/assets/images/app/app_settings.png index 733ef87de6..e96fba01f1 100644 Binary files a/docs/docs/assets/images/app/app_settings.png and b/docs/docs/assets/images/app/app_settings.png differ diff --git a/docs/docs/assets/images/app/barcode_settings.png b/docs/docs/assets/images/app/barcode_settings.png new file mode 100644 index 0000000000..8d38e41a80 Binary files /dev/null and b/docs/docs/assets/images/app/barcode_settings.png differ diff --git a/docs/docs/assets/images/app/settings.png b/docs/docs/assets/images/app/settings.png index 8e2b2af2d6..64cd22a6fc 100644 Binary files a/docs/docs/assets/images/app/settings.png and b/docs/docs/assets/images/app/settings.png differ diff --git a/docs/docs/assets/images/part/part_parameters_enforce.png b/docs/docs/assets/images/part/part_parameters_enforce.png new file mode 100644 index 0000000000..2ce41ad2f3 Binary files /dev/null and b/docs/docs/assets/images/part/part_parameters_enforce.png differ diff --git a/docs/docs/assets/images/report/label_build_example.png b/docs/docs/assets/images/report/label_build_example.png new file mode 100644 index 0000000000..e0e817f089 Binary files /dev/null and b/docs/docs/assets/images/report/label_build_example.png differ diff --git a/docs/docs/assets/images/report/label_build_print.png b/docs/docs/assets/images/report/label_build_print.png new file mode 100644 index 0000000000..ec8985e02d Binary files /dev/null and b/docs/docs/assets/images/report/label_build_print.png differ diff --git a/docs/docs/assets/images/report/label_with_parameters.png b/docs/docs/assets/images/report/label_with_parameters.png new file mode 100644 index 0000000000..b127849f1f Binary files /dev/null and b/docs/docs/assets/images/report/label_with_parameters.png differ diff --git a/docs/docs/build/allocate.md b/docs/docs/build/allocate.md index 5eba88d672..06512b4c1f 100644 --- a/docs/docs/build/allocate.md +++ b/docs/docs/build/allocate.md @@ -82,9 +82,9 @@ Stock can be manually allocated to the build as required, using the *Allocate st Stock allocations can be manually adjusted or deleted using the action buttons available in each row of the allocation table. -### Unallocate Stock +### Deallocate Stock -The *Unallocate Stock* button can be used to remove all allocations of untracked stock items against the build order. +The *Deallocate Stock* button can be used to remove all allocations of untracked stock items against the build order. ## Automatic Stock Allocation diff --git a/docs/docs/build/bom.md b/docs/docs/build/bom.md index f773f349ae..281e801d41 100644 --- a/docs/docs/build/bom.md +++ b/docs/docs/build/bom.md @@ -23,12 +23,6 @@ A BOM for a particular assembly is comprised of a number (zero or more) of BOM " | Optional | A boolean field which indicates if this BOM Line Item is "optional" | | Note | Optional note field for additional information -!!! missing "Overage" - While the overage field exists, it is currently non-functional and has no effect on BOM operation - -!!! missing "Optional" - The Optional field is currently for indication only - it does not serve a functional purpose (yet) - ### Consumable BOM Line Items If a BOM line item is marked as *consumable*, this means that while the part and quantity information is tracked in the BOM, this line item does not get allocated to a [Build Order](./build.md). This may be useful for certain items that the user does not wish to track through the build process, as they may be low value, in abundant stock, or otherwise complicated to track. diff --git a/docs/docs/build/build.md b/docs/docs/build/build.md index f7659e6f57..74fc6e2404 100644 --- a/docs/docs/build/build.md +++ b/docs/docs/build/build.md @@ -26,7 +26,7 @@ To navigate to the Build Order display, select *Build* from the main navigation {% include "img.html" %} {% endwith %} -#### Tree Vieww +#### Tree View *Tree View* also provides a tabulated view of Build Orders. Orders are displayed in a hierarchical manner, showing any parent / child relationships between different build orders. diff --git a/docs/docs/develop/contributing.md b/docs/docs/develop/contributing.md new file mode 100644 index 0000000000..7aad5d3d27 --- /dev/null +++ b/docs/docs/develop/contributing.md @@ -0,0 +1,3 @@ +{! + include-markdown "../../../CONTRIBUTING.md" +!} diff --git a/docs/docs/start/devcontainer.md b/docs/docs/develop/devcontainer.md similarity index 100% rename from docs/docs/start/devcontainer.md rename to docs/docs/develop/devcontainer.md diff --git a/docs/docs/develop/starting.md b/docs/docs/develop/starting.md new file mode 100644 index 0000000000..a47427ba19 --- /dev/null +++ b/docs/docs/develop/starting.md @@ -0,0 +1,27 @@ +--- +title: Getting started +--- + +InvenTree consists of a Django-based backend server, and a HTML / vanilla JS based frontend that uses Bootstrap. The main languages used are Python and Javascript. +As part of the larger project other languages/techniques are used, such as docker (dev/deployment), bash (installer) and markdown (documentation). + +### Getting started +#### Getting to know the basics + +The Django framework is a powerful tool for creating web applications. It is well documented and has a large community. The [Django documentation](https://docs.djangoproject.com/en/stable/) is a good place to start. + +In particular the [tutorial](https://docs.djangoproject.com/en/stable/intro/tutorial01/) is a good way to get to know the basics of Django. +InvenTree follows the best practies for Django so most of the contents should be applicable to InvenTree as well. The REST API is based on the [Django REST framework](https://www.django-rest-framework.org/). + +#### Setting up a development environment + +The recommended way to set up a development environment is to use VSCode devcontainers. The required files are provided with the repo, the docs are on a [dedicated page](./devcontainer.md). + +It is also possible to use [docker development](../start/docker_dev.md) or [bare metal development](../start/bare_dev.md). With these you need to install the required dependencies manually with a dedicated task. +```bash +invoke setup-dev +``` + +#### Following standards + +Before contributing to the project, please read the [contributing guidelines](contributing.md). Pull requests that do not follow the guidelines, do not pass QC checks or lower the test coverage will not be accepted. diff --git a/docs/docs/extend/plugins/settings.md b/docs/docs/extend/plugins/settings.md index 0dc43af878..178d5b1f92 100644 --- a/docs/docs/extend/plugins/settings.md +++ b/docs/docs/extend/plugins/settings.md @@ -35,6 +35,7 @@ class PluginWithSettings(SettingsMixin, InvenTreePlugin): 'name': 'API Key', 'description': 'Security key for accessing remote API', 'default': '', + 'required': True, }, 'API_URL': { 'name': _('API URL'), @@ -71,10 +72,11 @@ class PluginWithSettings(SettingsMixin, InvenTreePlugin): !!! tip "Hidden Settings" Plugin settings can be hidden from the settings page by marking them as 'hidden' -This mixin defines the helper functions `plugin.get_setting` and `plugin.set_setting` to access all plugin specific settings: +This mixin defines the helper functions `plugin.get_setting`, `plugin.set_setting` and `plugin.check_settings` to access all plugin specific settings. The `plugin.check_settings` function can be used to check if all settings marked with `'required': True` are defined and not equal to `''`. Note that these methods cannot be used in the `__init__` function of your plugin. ```python api_url = self.get_setting('API_URL', cache = False) self.set_setting('API_URL', 'some value') +is_valid, missing_settings = self.check_settings() ``` `get_setting` has an additional parameter which lets control if the value is taken directly from the database or from the cache. If it is left away `False` is the default that means the value is taken directly from the database. diff --git a/docs/docs/faq.md b/docs/docs/faq.md index faa600791c..da2b8c4f69 100644 --- a/docs/docs/faq.md +++ b/docs/docs/faq.md @@ -98,7 +98,7 @@ invoke worker ``` !!! info "Supervisor" - A better option is to manage the background worker process using a process manager such as supervisor. Refer to the [production server guide](./start/production.md). + A better option is to manage the background worker process using a process manager such as supervisor. Refer to the [production server guide](./start/bare_prod.md). ## Docker Issues diff --git a/docs/docs/order/company.md b/docs/docs/order/company.md index 4670c23119..c99994b867 100644 --- a/docs/docs/order/company.md +++ b/docs/docs/order/company.md @@ -43,6 +43,44 @@ The list of contacts associated with a particular company is available in the Addresses navigation tab. + +#### Primary Address + +Each company can have exactly one (1) primary address. +This address is the default shown on the company profile, and the one that is automatically suggested when creating an order. +Marking a new address as primary will remove the mark from the old primary address. + ## Customers A *customer* is an external client to whom parts or services are sold. diff --git a/docs/docs/part/parameter.md b/docs/docs/part/parameter.md index 2bb87c8273..a2047b2767 100644 --- a/docs/docs/part/parameter.md +++ b/docs/docs/part/parameter.md @@ -92,6 +92,12 @@ If a part parameter is created with a value which is incompatible with the units {% include 'img.html' %} {% endwith %} +This behaviour can be disabled if required, so that any parameter value is accepted: + +{% with id="enforce_units", url="part/part_parameters_enforce.png", description="Enforce part parameters" %} +{% include 'img.html' %} +{% endwith %} + ### Parameter Sorting Parameter sorting takes unit conversion into account, meaning that values provided in different (but compatible) units are sorted correctly: diff --git a/docs/docs/releases/release_notes.md b/docs/docs/releases/release_notes.md index 9d1156c672..ae205a7b95 100644 --- a/docs/docs/releases/release_notes.md +++ b/docs/docs/releases/release_notes.md @@ -22,24 +22,8 @@ The head of the *master* code branch represents the "latest and greatest" workin ## Stable Releases -!!! warning "Release Notes" - Starting from version 0.12.0, release notes are now available only on the [InvenTree GitHub Releases Page](https://github.com/inventree/InvenTree/releases). Release notes for versions prior to 0.12.0 are also tagged below. -{% include "release_table_head.html" %} - -{% with prefix="0.11" %}{% include "release_table.html" %}{% endwith %} -{% with prefix="0.10" %}{% include "release_table.html" %}{% endwith %} -{% with prefix="0.9" %}{% include "release_table.html" %}{% endwith %} -{% with prefix="0.8" %}{% include "release_table.html" %}{% endwith %} -{% with prefix="0.7" %}{% include "release_table.html" %}{% endwith %} -{% with prefix="0.6" %}{% include "release_table.html" %}{% endwith %} -{% with prefix="0.5" %}{% include "release_table.html" %}{% endwith %} -{% with prefix="0.4" %}{% include "release_table.html" %}{% endwith %} -{% with prefix="0.3" %}{% include "release_table.html" %}{% endwith %} -{% with prefix="0.2" %}{% include "release_table.html" %}{% endwith %} -{% with prefix="0.1" %}{% include "release_table.html" %}{% endwith %} - -{% include "release_table_tail.html" %} +{% include "release_table.html" %} ## Upcoming Features diff --git a/docs/docs/report/build.md b/docs/docs/report/build.md index 4461cadc9e..f1b138f5eb 100644 --- a/docs/docs/report/build.md +++ b/docs/docs/report/build.md @@ -18,8 +18,11 @@ In addition to the default report context variables, the following context varia | --- | --- | | build | The build object the report is being generated against | | part | The [Part](./context_variables.md#part) object that the build references | +| line_items | A shortcut for [build.line_items](#build) | +| bom_items | A shortcut for [build.bom_items](#build) | +| build_outputs | A shortcut for [build.build_outputs](#build) | | reference | The build order reference string | -| quantity | Build order quantity | +| quantity | Build order quantity (number of assemblies being built) | #### build @@ -29,7 +32,9 @@ The following variables are accessed by build.variable | --- | --- | | active | Boolean that tells if the build is active | | batch | Batch code transferred to build parts (optional) | -| bom_items | A query set with all BOM items for the build | +| line_items | A query set with all the build line items associated with the build | +| bom_items | A query set with all BOM items for the part being assembled | +| build_outputs | A queryset containing all build output ([Stock Item](../stock/stock.md)) objects associated with this build | | can_complete | Boolean that tells if the build can be completed. Means: All material allocated and all parts have been build. | | are_untracked_parts_allocated | Boolean that tells if all bom_items have allocated stock_items. | | creation_date | Date where the build has been created | @@ -42,7 +47,8 @@ The following variables are accessed by build.variable | notes | Text notes | | parent | Reference to a parent build object if this is a sub build | | part | The [Part](./context_variables.md#part) to be built (from component BOM items) | -| quantity | Build order quantity | +| quantity | Build order quantity (total number of assembly outputs) | +| completed | The number out outputs which have been completed | | reference | Build order reference (required, must be unique) | | required_parts | A query set with all parts that are required for the build | | responsible | Owner responsible for completing the build. This can be a user or a group. Depending on that further context variables differ | @@ -59,19 +65,38 @@ The following variables are accessed by build.variable As usual items in a query sets can be selected by adding a .n to the set e.g. build.required_parts.0 will result in the first part of the list. Each query set has again its own context variables. +#### line_items + +The `line_items` variable is a list of all build line items associated with the selected build. The following attributes are available for each individual line_item instance: + +| Attribute | Description | +| --- | --- | +| .build | A reference back to the parent build order | +| .bom_item | A reference to the BOMItem which defines this line item | +| .quantity | The required quantity which is to be allocated against this line item | +| .part | A shortcut for .bom_item.sub_part | +| .allocations | A list of BuildItem objects which allocate stock items against this line item | +| .allocated_quantity | The total stock quantity which has been allocated against this line | +| .unallocated_quantity | The remaining quantity to allocate | +| .is_fully_allocated | Boolean value, returns True if the line item has sufficient stock allocated against it | +| .is_overallocated | Boolean value, returns True if the line item has more allocated stock than is required | + #### bom_items -| Variable | Description | +| Attribute | Description | | --- | --- | | .reference | The reference designators of the components | -| .quantity | The number of components | +| .quantity | The number of components required to build | +| .overage | The extra amount required to assembly | +| .consumable | Boolean field, True if this is a "consumable" part which is not tracked through builds | | .sub_part | The part at this position | | .substitutes.all | A query set with all allowed substitutes for that part | +| .note | Extra text field which can contain additional information | #### allocated_stock.all -| Variable | Description | +| Attribute | Description | | --- | --- | | .bom_item | The bom item where this part belongs to | | .stock_item | The allocated [StockItem](./context_variables.md#stockitem) | diff --git a/docs/docs/report/helpers.md b/docs/docs/report/helpers.md index e2253f2737..6ed679a44b 100644 --- a/docs/docs/report/helpers.md +++ b/docs/docs/report/helpers.md @@ -224,3 +224,31 @@ You can add asset images to the reports and labels by using the `{% raw %}{% ass {% endraw %} ``` + +## Part Parameters + +If you need to load a part parameter for a particular Part, within the context of your template, you can use the `part_parameter` template tag. + +The following example assumes that you have a report or label which contains a valid [Part](../part/part.md) instance: + +``` +{% raw %} +{% load report %} + +{% part_parameter part "length" as length %} + +Part: {{ part.name }}
    +Length: {{ length.data }} [{{ length.units }}] + +{% endraw %} +``` + +A [Part Parameter](../part/parameter.md) has the following available attributes: + +| Attribute | Description | +| --- | --- | +| Name | The *name* of the parameter (e.g. "Length") | +| Description | The *description* of the parameter | +| Data | The *value* of the parameter (e.g. "123.4") | +| Units | The *units* of the parameter (e.g. "km") | +| Template | A reference to a [PartParameterTemplate](../part/parameter.md#parameter-templates) | diff --git a/docs/docs/report/labels.md b/docs/docs/report/labels.md index c58f082968..5518210559 100644 --- a/docs/docs/report/labels.md +++ b/docs/docs/report/labels.md @@ -11,6 +11,17 @@ Custom labels can be generated using simple HTML templates, with support for QR- Simple (generic) label templates are supplied 'out of the box' with InvenTree - however support is provided for generation of extremely specific custom labels, to meet any particular requirement. +## Label Types + +The following types of labels are available + +| Label Type | Description | +| --- | --- | +| [Part Labels](./labels/part_labels.md) | Print labels for individual parts | +| [Stock Labels](./labels/stock_labels.md) | Print labels for individual stock items | +| [Location Labels](./labels/location_labels.md) | Print labels for individual stock locations +| [Build Labels](./labels/build_labels.md) | Print labels for individual build order line items | + ## Label Templates Label templates are written using a mixture of [HTML](https://www.w3schools.com/html/) and [CSS](https://www.w3schools.com/css). [Weasyprint](https://weasyprint.org/) templates support a *subset* of HTML and CSS features. In addition to supporting HTML and CSS formatting, the label templates support the Django templating engine, allowing conditional formatting of the label data. @@ -189,133 +200,3 @@ To extend this template in a custom uploaded label, simply extend as follows: {% endraw %} ``` - -## Stock Item Labels - -Stock Item label templates are used to generate labels for individual Stock Items. - -### Creating Stock Item Label Templates - -Stock Item label templates are added (and edited) via the admin interface. - -### Printing Stock Item Labels - -Stock Item labels can be printed using the following approaches: - -To print a single stock item from the Stock Item detail view, select the *Print Label* option as shown below: - -{% with id='item_label_single', url='report/label_stock_print_single.png', description='Print single stock item label' %} -{% include 'img.html' %} -{% endwith %} - -To print multiple stock items from the Stock table view, select the *Print Labels* option as shown below: - -{% with id='item_label_multiple', url='report/label_stock_print_multiple.png', description='Print multiple stock item labels' %} -{% include 'img.html' %} -{% endwith %} - -### Context Data - -The following variables are made available to the StockItem label template: - -| Variable | Description | -| -------- | ----------- | -| item | The [StockItem](./context_variables.md#stockitem) object itself | -| part | The [Part](./context_variables.md#part) object which is referenced by the [StockItem](./context_variables.md#stockitem) object | -| name | The `name` field of the associated Part object | -| ipn | The `IPN` field of the associated Part object | -| revision | The `revision` field of the associated Part object | -| quantity | The `quantity` field of the StockItem object | -| serial | The `serial` field of the StockItem object | -| uid | The `uid` field of the StockItem object | -| tests | Dict object of TestResult data associated with the StockItem | -| parameters | Dict object containing the parameters associated with the base Part | - -### URL-style QR code - -Stock Item labels support [QR code](./barcodes.md#qr-code) containing the stock item URL, which can be -scanned and opened directly -on a portable device using the camera or a QR code scanner. To generate a URL-style QR code for stock item in the [label HTML template](./labels.md#label-templates), add the -following HTML tag: - -``` html -{% raw %} - -{% endraw %} -``` - -Make sure to customize the `custom_qr_class` CSS class to define the position of the QR code -on the label. - -## Stock Location Labels - -Stock Location label templates are used to generate labels for individual Stock Locations. - -### Creating Stock Location Label Templates - -Stock Location label templates are added (and edited) via the admin interface. - -### Printing Stock Location Labels - -To print a single label from the Stock Location detail view, select the *Print Label* option. - -### Context Data - -The following variables are made available to the StockLocation label template: - -| Variable | Description | -| -------- | ----------- | -| location | The [StockLocation](./context_variables.md#stocklocation) object itself | - -## Part Labels - -Part label templates are used to generate labels for individual Part instances. - -### Creating Part Label Templates - -Part label templates are added (and edited) via the admin interface. - -### Printing Part Labels - -Part label can be printed using the following approaches: - -To print a single part label from the Part detail view, select the *Print Label* option. - -To print multiple part labels, select multiple parts in the part table and select the *Print Labels* option. - -### Context Data - -The following context variables are made available to the Part label template: - -| Variable | Description | -| -------- | ----------- | -| part | The [Part](./context_variables.md#part) object | -| category | The [Part Category](./context_variables.md#part-category) which contains the Part | -| name | The name of the part | -| description | The description text for the part | -| IPN | Internal part number (IPN) for the part | -| revision | Part revision code | -| qr_data | String data which can be rendered to a QR code | -| parameters | Map (Python dictionary) object containing the parameters associated with the part instance | - -#### Parameters - -The part parameters can be accessed by parameter name lookup in the template, as follows: - -```html -{% raw %} - -Part: {{ part.name }} -Length: {{ parameters.length }} - -{% endraw %} -``` - -Note that for parameters which include a `space` character in their name, lookup using the "dot" notation won't work! In this case, try using the [key lookup](./helpers.md#key-access) method: - -```html -{% raw %} - -Voltage Rating: {% getkey parameters "Voltage Rating" %} -{% endraw %} -``` diff --git a/docs/docs/report/labels/build_labels.md b/docs/docs/report/labels/build_labels.md new file mode 100644 index 0000000000..0a3924a106 --- /dev/null +++ b/docs/docs/report/labels/build_labels.md @@ -0,0 +1,118 @@ +--- +title: Build Labels +--- + +## Build Line Labels + +Build label templates are used to generate labels for individual build order line items. + +### Creating Build Line Label Templates + +Build label templates are added (and edited) via the [admin interface](../../settings/admin.md). + +### Printing Build Line Labels + +Build line labels are printed from the Build Order page, under the *Allocate Stock* tab. Multiple line items can be selected for printing: + +{% with id='print_build_labels', url='report/label_build_print.png', description='Print build line labels' %} +{% include 'img.html' %} +{% endwith %} + +### Context Data + +The following context variables are made available to the Build Line label template: + +| Variable | Description | +| --- | --- | +| build_line | The build_line instance | +| build | The build order to which the build_line is linked | +| bom_item | The bom_item to which the build_line is linked | +| part | The required part for this build_line instance. References bom_item.sub_part | +| quantity | The total quantity required for the build line | +| allocated_quantity | The total quantity which has been allocated against the build line | +| allocations | A queryset containing the allocations made against the build_line | + +## Example + +A simple example template is shown below: + +```html +{% raw %} +{% extends "label/label_base.html" %} +{% load barcode report %} +{% load inventree_extras %} + +{% block style %} + +{{ block.super }} + +.label { + margin: 1mm; +} + +.qr { + height: 28mm; + width: 28mm; + position: relative; + top: 0mm; + right: 0mm; + float: right; +} + +.label-table { + width: 100%; + border-collapse: collapse; + border: 1pt solid black; +} + +.label-table tr { + width: 100%; + border-bottom: 1pt solid black; + padding: 2.5mm; +} + +.label-table td { + padding: 3mm; +} + +{% endblock style %} + +{% block content %} + +
    + + + + + + + + + +
    + Build Order: {{ build.reference }}
    + Build Qty: {% decimal build.quantity %}
    +
    + build qr +
    + Part: {{ part.name }}
    + {% if part.IPN %} + IPN: {{ part.IPN }}
    + {% endif %} + Qty / Unit: {% decimal bom_item.quantity %} {% if part.units %}[{{ part.units }}]{% endif %}
    + Qty Total: {% decimal quantity %} {% if part.units %}[{{ part.units }}]{% endif %} +
    + part qr +
    +
    + +{% endblock content %} + +{% endraw %} +``` + +Which results in a label like: + +{% with id='build_label_example', url='report/label_build_example.png', description='Example build line labels' %} +{% include 'img.html' %} +{% endwith %} diff --git a/docs/docs/report/labels/location_labels.md b/docs/docs/report/labels/location_labels.md new file mode 100644 index 0000000000..e7af905d75 --- /dev/null +++ b/docs/docs/report/labels/location_labels.md @@ -0,0 +1,24 @@ +--- +title: Location Labels +--- + + +## Stock Location Labels + +Stock Location label templates are used to generate labels for individual Stock Locations. + +### Creating Stock Location Label Templates + +Stock Location label templates are added (and edited) via the admin interface. + +### Printing Stock Location Labels + +To print a single label from the Stock Location detail view, select the *Print Label* option. + +### Context Data + +The following variables are made available to the StockLocation label template: + +| Variable | Description | +| -------- | ----------- | +| location | The [StockLocation](../context_variables.md#stocklocation) object itself | diff --git a/docs/docs/report/labels/part_labels.md b/docs/docs/report/labels/part_labels.md new file mode 100644 index 0000000000..7e9e5606b8 --- /dev/null +++ b/docs/docs/report/labels/part_labels.md @@ -0,0 +1,91 @@ +--- +title: Part Labels +--- + + +## Part Labels + +Part label templates are used to generate labels for individual Part instances. + +### Creating Part Label Templates + +Part label templates are added (and edited) via the admin interface. + +### Printing Part Labels + +Part label can be printed using the following approaches: + +To print a single part label from the Part detail view, select the *Print Label* option. + +To print multiple part labels, select multiple parts in the part table and select the *Print Labels* option. + +### Context Data + +The following context variables are made available to the Part label template: + +| Variable | Description | +| -------- | ----------- | +| part | The [Part](../context_variables.md#part) object | +| category | The [Part Category](../context_variables.md#part-category) which contains the Part | +| name | The name of the part | +| description | The description text for the part | +| IPN | Internal part number (IPN) for the part | +| revision | Part revision code | +| qr_data | String data which can be rendered to a QR code | +| parameters | Map (Python dictionary) object containing the parameters associated with the part instance | + +#### Parameter Values + +The part parameter *values* can be accessed by parameter name lookup in the template, as follows: + +```html +{% raw %} + +Part: {{ part.name }} +Length: {{ parameters.length }} + +{% endraw %} +``` + +!!! warning "Spaces" + Note that for parameters which include a `space` character in their name, lookup using the "dot" notation won't work! In this case, try using the [key lookup](../helpers.md#key-access) method: + +```html +{% raw %} + +Voltage Rating: {% getkey parameters "Voltage Rating" %} +{% endraw %} +``` + +#### Parameter Data + +If you require access to the parameter data itself, and not just the "value" of a particular parameter, you can use the `part_parameter` [helper function](../helpers.md#part-parameters). + +For example, the following label template can be used to generate a label which contains parameter data in addition to parameter units: + +```html +{% raw %} +{% extends "label/label_base.html" %} + +{% load report %} + +{% block content %} + +{% part_parameter part "Width" as width %} +{% part_parameter part "Length" as length %} + +
    + Part: {{ part.full_name }}
    + Width: {{ width.data }} [{{ width.units }}]
    + Length: {{ length.data }} [{{ length.units }}] +
    + +{% endblock content %} +{% endraw %} +``` + +The following label is produced: + +{% with id="report-parameters", url="report/label_with_parameters.png", description="Label with parameters" %} +{% include 'img.html' %} +{% endwith %} diff --git a/docs/docs/report/labels/stock_labels.md b/docs/docs/report/labels/stock_labels.md new file mode 100644 index 0000000000..eb72147284 --- /dev/null +++ b/docs/docs/report/labels/stock_labels.md @@ -0,0 +1,61 @@ +--- +title: Stock Labels +--- + + +## Stock Item Labels + +Stock Item label templates are used to generate labels for individual Stock Items. + +### Creating Stock Item Label Templates + +Stock Item label templates are added (and edited) via the admin interface. + +### Printing Stock Item Labels + +Stock Item labels can be printed using the following approaches: + +To print a single stock item from the Stock Item detail view, select the *Print Label* option as shown below: + +{% with id='item_label_single', url='report/label_stock_print_single.png', description='Print single stock item label' %} +{% include 'img.html' %} +{% endwith %} + +To print multiple stock items from the Stock table view, select the *Print Labels* option as shown below: + +{% with id='item_label_multiple', url='report/label_stock_print_multiple.png', description='Print multiple stock item labels' %} +{% include 'img.html' %} +{% endwith %} + +### Context Data + +The following variables are made available to the StockItem label template: + +| Variable | Description | +| -------- | ----------- | +| item | The [StockItem](../context_variables.md#stockitem) object itself | +| part | The [Part](../context_variables.md#part) object which is referenced by the [StockItem](../context_variables.md#stockitem) object | +| name | The `name` field of the associated Part object | +| ipn | The `IPN` field of the associated Part object | +| revision | The `revision` field of the associated Part object | +| quantity | The `quantity` field of the StockItem object | +| serial | The `serial` field of the StockItem object | +| uid | The `uid` field of the StockItem object | +| tests | Dict object of TestResult data associated with the StockItem | +| parameters | Dict object containing the parameters associated with the base Part | + +### URL-style QR code + +Stock Item labels support [QR code](../barcodes.md#qr-code) containing the stock item URL, which can be +scanned and opened directly +on a portable device using the camera or a QR code scanner. To generate a URL-style QR code for stock item in the [label HTML template](../labels.md#label-templates), add the +following HTML tag: + +``` html +{% raw %} + +{% endraw %} +``` + +Make sure to customize the `custom_qr_class` CSS class to define the position of the QR code +on the label. diff --git a/docs/docs/start/advanced.md b/docs/docs/start/advanced.md new file mode 100644 index 0000000000..5d240f51e4 --- /dev/null +++ b/docs/docs/start/advanced.md @@ -0,0 +1,39 @@ +--- +title: Advanced Topics +--- + +## Version Information + +Starting with version 0.12 (and later), InvenTree includes more version information. + +To view this information, navigate to the "About" page in the top menu bar and select "copy version information" on the bottom corner. + +### Contained Information + +The version information contains the following information extracted form the instance: + +| Name | Always | Sample | Source | +| --- | --- | --- | --- | +| InvenTree-Version | Yes | 0.12.0 dev | instance | +| Django Version | Yes | 3.2.19 | instance | +| Commit Hash | No | aebff26 | environment: `INVENTREE_COMMIT_HASH`, git | +| Commit Date | No | 2023-06-10 | environment: `INVENTREE_COMMIT_DATE`, git | +| Commit Branch | No | master | environment: `INVENTREE_PKG_BRANCH`, git | +| Database | Yes | postgresql | environment: `INVENTREE_DB_*`, config: `database` - see [config](./config.md#database-options) | +| Debug-Mode | Yes | False | environment: `INVENTREE_DEBUG`, config: `config` - see [config](./config.md#basic-options) | +| Deployed using Docker | Yes | True | environment: `INVENTREE_DOCKER` | +| Platform | Yes | Linux-5.15.0-67-generic-x86_64 | instance | +| Installer | Yes | PKG | environment: `INVENTREE_PKG_INSTALLER`, instance | +| Target | No | ubuntu:20.04 | environment: `INVENTREE_PKG_TARGET` | +| Active plugins | Yes | [{'name': 'InvenTreeBarcode', 'slug': 'inventreebarcode', 'version': '2.0.0'}] | instance | + + +### Installer codes + +The installer code is used to identify the way InvenTree was installed. If you vendor InvenTree, you can and should set the installer code to your own value to make sure debugging goes smoothly. + +| Code | Description | Official | +| --- | --- | --- | +| PKG | Installed using a package manager | Yes | +| GIT | Installed using git | Yes | +| DOC | Installed using docker | Yes | diff --git a/docs/docs/start/development.md b/docs/docs/start/bare_dev.md similarity index 88% rename from docs/docs/start/development.md rename to docs/docs/start/bare_dev.md index 3eed337f6d..fdfb02b4cc 100644 --- a/docs/docs/start/development.md +++ b/docs/docs/start/bare_dev.md @@ -1,8 +1,8 @@ --- -title: Development Server +title: Bare Metal Development Server --- -## Development Server +## Bare Metal Development Server !!! warning "Installation" Before continuing, ensure that the [installation steps](./install.md) have been completed. @@ -10,7 +10,7 @@ title: Development Server InvenTree includes a simple server application, suitable for use in a development environment. !!! warning "Deployment" - Refer to the [production server instructions](./production.md) to implement a much more robust server setup. + Refer to the [production server instructions](./bare_prod.md) to implement a much more robust server setup. ### Running on a Local Machine diff --git a/docs/docs/start/production.md b/docs/docs/start/bare_prod.md similarity index 98% rename from docs/docs/start/production.md rename to docs/docs/start/bare_prod.md index 192bac461b..de70572898 100644 --- a/docs/docs/start/production.md +++ b/docs/docs/start/bare_prod.md @@ -1,8 +1,8 @@ --- -title: Production Server +title: Bare Metal Production Server --- -## Production Server +## Bare Metal Production Server !!! warning "Installation" Before continuing, ensure that the [installation steps](./install.md) have been completed. diff --git a/docs/docs/start/config.md b/docs/docs/start/config.md index 52b0fec408..9a25451c08 100644 --- a/docs/docs/start/config.md +++ b/docs/docs/start/config.md @@ -53,7 +53,7 @@ The following basic options are available: | --- | --- | --- | --- | | INVENTREE_DEBUG | debug | Enable [debug mode](./intro.md#debug-mode) | True | | INVENTREE_LOG_LEVEL | log_level | Set level of logging to terminal | WARNING | -| INVENTREE_TIMZONE | timezome | Server timezone | UTC | +| INVENTREE_TIMEZONE | timezone | Server timezone | UTC | | ADMIN_URL | admin_url | URL for accessing [admin interface](../settings/admin.md) | admin | | INVENTREE_LANGUAGE | language | Default language | en-us | | INVENTREE_BASE_URL | base_url | Server base URL | *Not specified* | @@ -191,9 +191,8 @@ InvenTree requires some external directories for storing files: | Environment Variable | Configuration File | Description | Default | | --- | --- | --- | --- | -| INVENTREE_STATIC_ROOT | static_root | List of allowed hosts | *Not specified* | -| INVENTREE_MEDIA_ROOT | media_root | Allow all remote URLS for CORS checks | *Not specified* | -| INVENTREE_BACKUP_DIR | backup_dir | List of whitelisted CORS URLs | *Not specified* | +| INVENTREE_STATIC_ROOT | static_root | [Static files](./serving_files.md#static-files) directory | *Not specified* | +| INVENTREE_MEDIA_ROOT | media_root | [Media files](./serving_files.md#media-files) directory | *Not specified* | !!! tip "Serving Files" Read the [Serving Files](./serving_files.md) section for more information on hosting *static* and *media* files diff --git a/docs/docs/start/docker_dev.md b/docs/docs/start/docker_dev.md index e74d3561e4..ef2710788f 100644 --- a/docs/docs/start/docker_dev.md +++ b/docs/docs/start/docker_dev.md @@ -35,7 +35,7 @@ To get "up and running" with a development environment, complete with a set of [ ```bash git clone https://github.com/inventree/InvenTree.git && cd InvenTree docker compose run inventree-dev-server invoke install -docker compose run inventree-dev-server invoke setup-test +docker compose run inventree-dev-server invoke setup-test --dev docker compose up -d ``` @@ -83,30 +83,33 @@ This command also performs the following steps: !!! info "Grab a coffee" This initial build process may take a few minutes! -### Create Admin Account - -If you are creating the initial database, you need to create an admin (superuser) account for the database. Run the command below, and follow the prompts: - -``` -docker compose run inventree-dev-server invoke superuser -``` - ### Import Demo Data To fill the database with a demo dataset, run the following command: -``` -docker compose run inventree-dev-server invoke setup-test +```bash +docker compose run inventree-dev-server invoke setup-test --dev ``` ### Start Docker Containers -Now that the database has been created, migrations applied, and you have created an admin account, we are ready to launch the InvenTree containers: +Now that the database has been created, and migrations applied, we are ready to launch the InvenTree containers: -``` +```bash docker compose up -d ``` +### Create Admin Account + +If you are creating the initial database, you need to create an admin (superuser) account for the database. Run the command below, and follow the prompts: + +!!! info "Containers must be running" + For the `invoke superuser` command to execute properly, ensure you have run the `docker compose up -d` command. + +```bash +docker compose run inventree-dev-server invoke superuser +``` + This command launches the remaining containers: - `inventree-dev-server` - InvenTree web server @@ -115,6 +118,76 @@ This command launches the remaining containers: !!! success "Check Connection" Check that the server is running at [http://localhost:8000](http://localhost:8000). The server may take a few minutes to be ready. +## Running commands in the container + +Using `docker compose run [...]` commands creates a new container to run this specific command. +This will eventually clutter your docker with many dead containers that take up space on the system. + +You can access the running containers directly with the following: +```bash +docker exec -it inventree-dev-server /bin/bash +``` + +You then run the following to access the virtualenv: +```bash +source data/env/bin/activate +``` + +This sets up a bash terminal where you can run `invoke` commands directly. + +!!! warning "Tests" + Running `invoke test` in your currently active inventree-dev-server container may result in tests taking longer than usual. + +### Cleaning up old containers + +If you have Docker Desktop installed, you will be able to remove containers directly in the GUI. +Your active containers are grouped under "inventree" in Docker Desktop. +The main dev-server, dev-db, and dev-worker containers are all listed without the "inventree" prefix. +One time run containers, like those executed via `docker compose run [...]` are suffixed with `run-1a2b3c4d5e6f` where the hex string varies. + +To remove such containers, either click the garbage bin on the end of the line, or mark the containers, and click the delete button that shows up. +This is the recommended procedure for container cleanup. + +#### Advanced cleanup +!!! warning "Advanced users only" + This section requires good knowledge of Docker and how it operates. + Never perform these commands if you do not understand what they do + +If you're running a container with the general boilerplate commands used with invoke (invoke test, invoke update, etc) and no custom parameters or execution, you can add the `--rm` flag to `docker compose run`, and the container will delete itself when it goes down. +Do note that any data not stored in a volume, i.e. only in the container, will be lost when the container stops. + +To clean out old containers using the command line, follow this guide: + +Run the following command: +```bash +docker ps -a --filter status=exited +``` + +This gives you a list of all stopped containers. +Find the containers you wish to delete, copy the container IDs and add them to this command: + +```bash +docker rm [ID1] [ID2] [IDn] +``` +When executed, this removes all containers whose IDs were pasted. + +!!! warning "Execute at own risk" + The command below does not forgive errors. + Execute this only if you know what you're doing + +Running this command will remove **all** stopped one-time run InvenTree containers matching parameters: +```bash +docker container prune --filter label="com.docker.compose.oneoff=True" --filter label="com.docker.compose.service=inventree-dev-server" +``` + +The following output will appear: +``` +WARNING! This will remove all stopped containers. +Are you sure you want to continue? [y/N] y +Deleted Containers: +[IDs of any container that was deleted, one per line] +``` + ## Restarting Services Once initial setup is complete, stopping and restarting the services is much simpler: diff --git a/docs/docs/start/docker_prod.md b/docs/docs/start/docker_prod.md index bcfbd3aa2a..59e920ad69 100644 --- a/docs/docs/start/docker_prod.md +++ b/docs/docs/start/docker_prod.md @@ -88,7 +88,7 @@ This container uses the official [redis image](https://hub.docker.com/_/redis). !!! info "Redis on Docker" Docker adds an additional network layer - that might lead to lower performance than bare metal. - To optimise and configure your redis deployment follow the [official docker guide](https://redis.io/docs/stack/get-started/install/docker/#configuration). + To optimise and configure your redis deployment follow the [official docker guide](https://redis.io/docs/getting-started/install-stack/docker/#configuration). !!! warning "Disabled by default" The *redis* container is not enabled in the default configuration. This is provided as an example for users wishing to use redis. diff --git a/docs/docs/start/install.md b/docs/docs/start/install.md index e4d659cddd..1d379560a6 100644 --- a/docs/docs/start/install.md +++ b/docs/docs/start/install.md @@ -259,13 +259,13 @@ The InvenTree database is now setup and ready to run. A simple development serve The InvenTree development server is useful for testing and configuration - and it may be wholly sufficient for a small-scale installation. -Refer to the [development server instructions](./development.md) for further information. +Refer to the [development server instructions](./bare_dev.md) for further information. ### Production Server In a production environment, a more robust server setup is required. -Refer to the [production server instructions](./production.md) for further information. +Refer to the [production server instructions](./bare_prod.md) for further information. ## Updating InvenTree diff --git a/docs/docs/start/intro.md b/docs/docs/start/intro.md index 51c30ea610..6286322fa6 100644 --- a/docs/docs/start/intro.md +++ b/docs/docs/start/intro.md @@ -38,7 +38,7 @@ The bulk of the InvenTree code base supports the custom web server application. The webserver code also provides a first-party API for performing database query actions. -Once a database is setup, you need a way of accessing the data. InvenTree provides a "server" application out of the box, but this may not scale particularly well with multiple users. Instead, InvenTree can be served using a webserver such as [Gunicorn](https://gunicorn.org/). For more information see the [deployment documentation](./production.md). +Once a database is setup, you need a way of accessing the data. InvenTree provides a "server" application out of the box, but this may not scale particularly well with multiple users. Instead, InvenTree can be served using a webserver such as [Gunicorn](https://gunicorn.org/). For more information see the [deployment documentation](./bare_prod.md). ### Background Tasks @@ -143,7 +143,7 @@ If you do not wish to use the docker container, you will need to manually instal Refer to the following guides for further instructions: -- [**Bare metal development server setup guide**](./development.md) +- [**Bare metal development server setup guide**](./bare_dev.md) - [**Bare metal production server setup guide**](./install.md) ## Debug Mode diff --git a/docs/docs/start/serving_files.md b/docs/docs/start/serving_files.md index c73ff3ead9..0d9b5a493a 100644 --- a/docs/docs/start/serving_files.md +++ b/docs/docs/start/serving_files.md @@ -6,7 +6,7 @@ title: Serving Static and Media Files In production, the InvenTree web server software *does not* provide hosting of static files, or user-uploaded (media) files. -When running in [production mode](./production.md) (i.e. the `INVENTREE_DEBUG` flag is disabled), a separate web server is required for serving *static* and *media* files. In `DEBUG` mode, the django webserver facilitates delivery of *static* and *media* files, but this is explicitly not suitable for a production environment. +When running in [production mode](./bare_prod.md) (i.e. the `INVENTREE_DEBUG` flag is disabled), a separate web server is required for serving *static* and *media* files. In `DEBUG` mode, the django webserver facilitates delivery of *static* and *media* files, but this is explicitly not suitable for a production environment. !!! into "Read More" You can find further information in the [django documentation](https://docs.djangoproject.com/en/dev/howto/static-files/deployment/). diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 6d4bed838f..38aef90214 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -75,6 +75,10 @@ nav: - Credits: credits.md - Privacy: privacy.md - Terminology: terminology.md + - Development: + - Getting started: develop/starting.md + - Contributing: develop/contributing.md + - Devcontainer: develop/devcontainer.md - Install: - Introduction: start/intro.md - Configuration: start/config.md @@ -85,13 +89,12 @@ nav: - Bare Metal: - Introduction: start/install.md - Installer: start/installer.md - - Production: start/production.md - - Development: start/development.md - - Development: - - Devcontainer: start/devcontainer.md + - Production: start/bare_prod.md + - Development: start/bare_dev.md - Serving Files: start/serving_files.md - Data Backup: start/backup.md - Migrating Data: start/migrate.md + - Advanced Topics: start/advanced.md - Parts: - Parts: part/part.md - Creating Parts: part/create.md @@ -135,7 +138,12 @@ nav: - Sales Order: report/sales_order.md - Return Order: report/return_order.md - BOM: report/bom.md - - Labels: report/labels.md + - Labels: + - Custom Labels: report/labels.md + - Part Labels: report/labels/part_labels.md + - Stock Labels: report/labels/stock_labels.md + - Location Labels: report/labels/location_labels.md + - Build Labels: report/labels/build_labels.md - Helper Functions: report/helpers.md - Barcodes: report/barcodes.md - Context Variables: report/context_variables.md @@ -207,6 +215,9 @@ nav: # Plugins plugins: + - include-markdown: + opening_tag: "{!" + closing_tag: "!}" - search - git-revision-date-localized - mkdocs-simple-hooks: diff --git a/docs/requirements.txt b/docs/requirements.txt index b403dd2196..569638391e 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -2,3 +2,4 @@ mkdocs-macros-plugin>=0.7,<1.0 mkdocs-material>=9.0,<10.0 mkdocs-git-revision-date-localized-plugin>=1.1,<2.0 mkdocs-simple-hooks>=0.1,<1.0 +mkdocs-include-markdown-plugin diff --git a/requirements-dev.txt b/requirements-dev.txt index bcba741ff3..6e1df4e4b6 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -30,7 +30,7 @@ coveralls==2.1.2 # via -r requirements-dev.in distlib==0.3.6 # via virtualenv -django==3.2.19 +django==3.2.20 # via # -c requirements.txt # django-debug-toolbar @@ -43,7 +43,7 @@ django-test-migrations==1.3.0 # via -r requirements-dev.in docopt==0.6.2 # via coveralls -filelock==3.12.0 +filelock==3.12.2 # via virtualenv flake8==6.0.0 # via @@ -68,11 +68,11 @@ packaging==23.1 # via build pep8-naming==0.13.3 # via -r requirements-dev.in -pip-tools==6.13.0 +pip-tools==6.14.0 # via -r requirements-dev.in -platformdirs==3.5.1 +platformdirs==3.8.0 # via virtualenv -pre-commit==3.3.2 +pre-commit==3.3.3 # via -r requirements-dev.in pycodestyle==2.10.0 # via flake8 @@ -104,17 +104,18 @@ sqlparse==0.4.4 tomli==2.0.1 # via # build + # pip-tools # pyproject-hooks -typing-extensions==4.6.3 +typing-extensions==4.7.1 # via # -c requirements.txt # asgiref # django-test-migrations -urllib3==2.0.2 +urllib3==2.0.3 # via # -c requirements.txt # requests -virtualenv==20.23.0 +virtualenv==20.23.1 # via pre-commit wheel==0.40.0 # via pip-tools diff --git a/requirements.in b/requirements.in index cd01969dc5..3f6350b105 100644 --- a/requirements.in +++ b/requirements.in @@ -10,6 +10,7 @@ django-crispy-forms<2.0 # Form helpers # FIXED 2023-02-18 due to django-dbbackup # Backup / restore of database and media files django-error-report # Error report viewer for the admin interface django-filter # Extended filtering options +django-flags # Feature flags django-formtools # Form wizard tools django-ical # iCal export for calendar views django-import-export==2.5.0 # Data import / export for admin interface @@ -18,8 +19,9 @@ django-markdownify # Markdown rendering django-money<3.0.0 # Django app for currency management # FIXED 2022-06-26 to make sure py-moneyed is not conflicting django-mptt==0.11.0 # Modified Preorder Tree Traversal django-redis>=5.0.0 # Redis integration -django-q # Background task scheduling +django-q2 # Background task scheduling django-q-sentry # sentry.io integration for django-q +django-sesame # Magic link authentication django-sql-utils # Advanced query annotation / aggregation django-sslserver # Secure HTTP development server django-stdimage<6.0.0 # Advanced ImageField management # FIXED 2022-06-29 6.0.0 breaks serialization for django-q @@ -27,15 +29,18 @@ django-taggit # Tagging support django-user-sessions # user sessions in DB django-weasyprint # django weasyprint integration djangorestframework # DRF framework +djangorestframework-simplejwt[crypto] # JWT authentication django-xforwardedfor-middleware # IP forwarding metadata +dj-rest-auth # Authentication API endpoints dulwich # pure Python git integration drf-spectacular # DRF API documentation feedparser # RSS newsfeed parser gunicorn # Gunicorn web server pdf2image # PDF to image conversion -pillow # Image manipulation +pillow==9.5.0 # Image manipulation # FIXED 2023-07-04 as we require PIL.Image.ANTIALIAS pint==0.21 # Unit conversion # FIXED 2023-05-30 breaks tests https://github.com/matmair/InvenTree/actions/runs/5095665936/jobs/9160852560 python-barcode[images] # Barcode generator +python-dotenv # Environment variable management qrcode[pil] # QR code generator rapidfuzz==0.7.6 # Fuzzy string matching regex # Advanced regular expressions diff --git a/requirements.txt b/requirements.txt index 487dcfeadf..2b6d481ba7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,8 +4,6 @@ # # pip-compile --output-file=requirements.txt requirements.in # -arrow==1.2.3 - # via django-q asgiref==3.7.2 # via django attrs==23.1.0 @@ -14,8 +12,6 @@ babel==2.12.1 # via py-moneyed bleach[css]==6.0.0 # via django-markdownify -blessed==1.20.0 - # via django-q brotli==1.0.9 # via fonttools certifi==2023.5.7 @@ -35,6 +31,7 @@ coreschema==0.0.4 cryptography==41.0.1 # via # -r requirements.in + # djangorestframework-simplejwt # pyjwt cssselect2==0.7.0 # via weasyprint @@ -44,15 +41,19 @@ defusedxml==0.7.1 # python3-openid diff-match-patch==20230430 # via django-import-export -django==3.2.19 +dj-rest-auth==4.0.1 + # via -r requirements.in +django==3.2.20 # via # -r requirements.in + # dj-rest-auth # django-allauth # django-allauth-2fa # django-cors-headers # django-dbbackup # django-error-report # django-filter + # django-flags # django-formtools # django-ical # django-import-export @@ -62,9 +63,10 @@ django==3.2.19 # django-mptt # django-otp # django-picklefield - # django-q + # django-q2 # django-recurrence # django-redis + # django-sesame # django-sql-utils # django-sslserver # django-stdimage @@ -73,16 +75,17 @@ django==3.2.19 # django-weasyprint # django-xforwardedfor-middleware # djangorestframework + # djangorestframework-simplejwt # drf-spectacular django-allauth==0.54.0 # via # -r requirements.in # django-allauth-2fa -django-allauth-2fa==0.10.0 +django-allauth-2fa==0.11.0 # via -r requirements.in -django-cleanup==7.0.0 +django-cleanup==8.0.0 # via -r requirements.in -django-cors-headers==4.0.0 +django-cors-headers==4.1.0 # via -r requirements.in django-crispy-forms==1.14.0 # via -r requirements.in @@ -92,13 +95,15 @@ django-error-report==0.2.0 # via -r requirements.in django-filter==23.2 # via -r requirements.in +django-flags==5.0.13 + # via -r requirements.in django-formtools==2.4.1 # via -r requirements.in -django-ical==1.9.1 +django-ical==1.9.2 # via -r requirements.in django-import-export==2.5.0 # via -r requirements.in -django-js-asset==2.0.0 +django-js-asset==2.1.0 # via django-mptt django-maintenance-mode==0.18.0 # via -r requirements.in @@ -108,17 +113,19 @@ django-money==2.1.1 # via -r requirements.in django-mptt==0.11.0 # via -r requirements.in -django-otp==1.2.1 +django-otp==1.2.2 # via django-allauth-2fa django-picklefield==3.1 - # via django-q -django-q==1.3.9 - # via -r requirements.in + # via django-q2 django-q-sentry==0.1.6 # via -r requirements.in +django-q2==1.5.4 + # via -r requirements.in django-recurrence==1.11.1 # via django-ical -django-redis==5.2.0 +django-redis==5.3.0 + # via -r requirements.in +django-sesame==3.1 # via -r requirements.in django-sql-utils==0.6.1 # via -r requirements.in @@ -137,8 +144,12 @@ django-xforwardedfor-middleware==2.0 djangorestframework==3.14.0 # via # -r requirements.in + # dj-rest-auth + # djangorestframework-simplejwt # drf-spectacular -drf-spectacular==0.26.2 +djangorestframework-simplejwt[crypto]==5.2.2 + # via -r requirements.in +drf-spectacular==0.26.3 # via -r requirements.in dulwich==0.21.5 # via -r requirements.in @@ -146,7 +157,7 @@ et-xmlfile==1.1.0 # via openpyxl feedparser==6.0.10 # via -r requirements.in -fonttools[woff]==4.39.4 +fonttools[woff]==4.40.0 # via weasyprint gunicorn==20.1.0 # via -r requirements.in @@ -156,7 +167,7 @@ icalendar==5.0.7 # via django-ical idna==3.4 # via requests -importlib-metadata==6.6.0 +importlib-metadata==6.8.0 # via markdown inflection==0.5.1 # via drf-spectacular @@ -196,10 +207,12 @@ py-moneyed==1.2 # django-money pycparser==2.21 # via cffi -pydyf==0.6.0 +pydyf==0.7.0 # via weasyprint pyjwt[crypto]==2.7.0 - # via django-allauth + # via + # django-allauth + # djangorestframework-simplejwt pyphen==0.14.0 # via weasyprint pypng==0.20220715.0 @@ -210,9 +223,10 @@ python-barcode[images]==0.14.0 # via -r requirements.in python-dateutil==2.8.2 # via - # arrow # django-recurrence # icalendar +python-dotenv==1.0.0 + # via -r requirements.in python-fsutil==0.10.0 # via django-maintenance-mode python3-openid==3.2.0 @@ -234,10 +248,8 @@ qrcode[pil]==7.4.2 rapidfuzz==0.7.6 # via -r requirements.in redis==3.5.3 - # via - # django-q - # django-redis -regex==2023.5.5 + # via django-redis +regex==2023.6.3 # via -r requirements.in requests==2.31.0 # via @@ -246,7 +258,7 @@ requests==2.31.0 # requests-oauthlib requests-oauthlib==1.3.1 # via django-allauth -sentry-sdk==1.25.0 +sentry-sdk==1.27.0 # via # -r requirements.in # django-q-sentry @@ -255,14 +267,13 @@ sgmllib3k==1.0.0 six==1.16.0 # via # bleach - # blessed # html5lib # python-dateutil sqlparse==0.4.4 # via # django # django-sql-utils -tablib[html,ods,xls,xlsx,yaml]==3.4.0 +tablib[html,ods,xls,xlsx,yaml]==3.5.0 # via # -r requirements.in # django-import-export @@ -271,7 +282,7 @@ tinycss2==1.1.1 # bleach # cssselect2 # weasyprint -typing-extensions==4.6.3 +typing-extensions==4.7.1 # via # asgiref # qrcode @@ -279,13 +290,11 @@ uritemplate==4.1.1 # via # coreapi # drf-spectacular -urllib3==2.0.2 +urllib3==2.0.3 # via # dulwich # requests # sentry-sdk -wcwidth==0.2.6 - # via blessed weasyprint==54.3 # via # -r requirements.in @@ -300,7 +309,7 @@ xlrd==2.0.1 # via tablib xlwt==1.3.0 # via tablib -zipp==3.15.0 +zipp==3.16.0 # via importlib-metadata zopfli==0.2.2 # via fonttools diff --git a/tasks.py b/tasks.py index c2b9186fa1..204391428e 100644 --- a/tasks.py +++ b/tasks.py @@ -565,9 +565,12 @@ def test_translations(c): help={ 'disable_pty': 'Disable PTY', 'runtest': 'Specify which tests to run, in format ...', + 'migrations': 'Run migration unit tests', + 'report': 'Display a report of slow tests', + 'coverage': 'Run code coverage analysis (requires coverage package)', } ) -def test(c, disable_pty=False, runtest=''): +def test(c, disable_pty=False, runtest='', migrations=False, report=False, coverage=False): """Run unit-tests for InvenTree codebase. To run only certain test, use the argument --runtest. @@ -583,8 +586,32 @@ def test(c, disable_pty=False, runtest=''): pty = not disable_pty - # Run coverage tests - manage(c, f'test --slowreport {runtest}', pty=pty) + _apps = ' '.join(apps()) + + cmd = 'test' + + if runtest: + # Specific tests to run + cmd += f' {runtest}' + else: + # Run all tests + cmd += f' {_apps}' + + if report: + cmd += ' --slowreport' + + if migrations: + cmd += ' --tag migration_test' + else: + cmd += ' --exclude-tag migration_test' + + if coverage: + # Run tests within coverage environment, and generate report + c.run(f'coverage run {managePyPath()} {cmd}') + c.run('coverage html -i') + else: + # Run simple test runner, without coverage + manage(c, cmd, pty=pty) @task(help={'dev': 'Set up development environment at the end'}) @@ -629,25 +656,6 @@ def setup_test(c, ignore_update=False, dev=False, path="inventree-demo-dataset") setup_dev(c) -@task -def coverage(c): - """Run code-coverage of the InvenTree codebase, using the 'coverage' code-analysis tools. - - Generates a code coverage report (available in the htmlcov directory) - """ - # Run sanity check on the django install - manage(c, 'check') - - # Run coverage tests - c.run('coverage run {manage} test {apps}'.format( - manage=managePyPath(), - apps=' '.join(apps()) - )) - - # Generate coverage report - c.run('coverage html -i') - - @task(help={ 'filename': "Output filename (default = 'schema.yml')", 'overwrite': "Overwrite existing files without asking first (default = off/False)",